blob: f6f9eb3e996e15881fb39f4d438ecbd484efc091 [file] [log] [blame]
Justin Yune3bf50c2018-02-19 17:55:46 +09001###################### Start of libnfc-brcm.conf #######################
2
3###############################################################################
4# Application options
5NFC_DEBUG_ENABLED=0
6
7###############################################################################
8# performance measurement
9# Change this setting to control how often USERIAL log the performance (throughput)
10# data on read/write/poll
11# defailt is to log performance dara for every 100 read or write
12#REPORT_PERFORMANCE_MEASURE=100
13
14###############################################################################
15# File used for NFA storage
16NFA_STORAGE="/data/nfc"
17
18###############################################################################
19# Snooze Mode Settings
20#
21# By default snooze mode is enabled. Set SNOOZE_MODE_CFG byte[0] to 0
22# to disable.
23#
24# If SNOOZE_MODE_CFG is not provided, the default settings are used:
25# They are as follows:
26# 8 Sleep Mode (0=Disabled 1=UART 8=SPI/I2C)
27# 0 Idle Threshold Host
28# 0 Idle Threshold HC
29# 0 NFC Wake active mode (0=ActiveLow 1=ActiveHigh)
30# 1 Host Wake active mode (0=ActiveLow 1=ActiveHigh)
31#
32#SNOOZE_MODE_CFG={08:00:00:00:01}
33
34###############################################################################
35# Insert a delay in milliseconds after NFC_WAKE and before write to NFCC
36#NFC_WAKE_DELAY=20
37
38###############################################################################
39# Various Delay settings (in ms) used in USERIAL
40# POWER_ON_DELAY
41# Delay after turning on chip, before writing to transport (default 300)
42# PRE_POWER_OFF_DELAY
43# Delay after deasserting NFC-Wake before turn off chip (default 0)
44# POST_POWER_OFF_DELAY
45# Delay after turning off chip, before USERIAL_close returns (default 0)
46#
47#POWER_ON_DELAY=300
48#PRE_POWER_OFF_DELAY=0
49#POST_POWER_OFF_DELAY=0
50
51###############################################################################
52# Maximum time (ms) to wait for RESET NTF after setting REG_PU to high
53# The default is 1000.
54#NFCC_ENABLE_TIMEOUT=0
55
56###############################################################################
57# LPTD mode configuration
58# byte[0] is the length of the remaining bytes in this value
59# if set to 0, LPTD params will NOT be sent to NFCC (i.e. disabled).
60# byte[1] is the param id it should be set to B9.
61# byte[2] is the length of the LPTD parameters
62# byte[3] indicates if LPTD is enabled
63# if set to 0, LPTD will be disabled (parameters will still be sent).
64# byte[4-n] are the LPTD parameters.
65# By default, LPTD is enabled and default settings are used.
66# See nfc_hal_dm_cfg.c for defaults
67#LPTD_CFG={23:B9:21:01:02:FF:FF:04:A0:0F:40:00:80:02:02:10:00:00:00:31:0C:30:00:00:00:00:00:00:00:00:00:00:00:00:00:00}
68
69###############################################################################
70# Startup Configuration (100 bytes maximum)
71#
72# For the 0xCA parameter, byte[9] (marked by 'AA') is for UICC0, and byte[10] (marked by BB) is
73# for UICC1. The values are defined as:
74# 0 : UICCx only supports ISO_DEP in low power mode.
75# 2 : UICCx only supports Mifare in low power mode.
76# 3 : UICCx supports both ISO_DEP and Mifare in low power mode.
77#
78# AA BB
79#NFA_DM_START_UP_CFG={1F:CB:01:01:A5:01:01:CA:14:00:00:00:00:06:E8:03:00:00:00:00:00:00:00:00:00:00:00:00:00:80:01:01}
80
81###############################################################################
82# Startup Vendor Specific Configuration (100 bytes maximum);
83# byte[0] TLV total len = 0x5
84# byte[1] NCI_MTS_CMD|NCI_GID_PROP = 0x2f
85# byte[2] NCI_MSG_FRAME_LOG = 0x9
86# byte[3] 2
87# byte[4] 0=turn off RF frame logging; 1=turn on
88# byte[5] 0=turn off SWP frame logging; 1=turn on
89# NFA_DM_START_UP_VSC_CFG={05:2F:09:02:01:01}
90
91###############################################################################
92# Antenna Configuration - This data is used when setting 0xC8 config item
93# at startup (before discovery is started). If not used, no value is sent.
94#
95# The settings for this value are documented here:
96# http://wcgbu.broadcom.com/wpan/PM/Project%20Document%20Library/bcm20791B0/
97# Design/Doc/PHY%20register%20settings/BCM20791-B2-1027-02_PHY_Recommended_Reg_Settings.xlsx
98# This document is maintained by Paul Forshaw.
99#
100# The values marked as ?? should be tweaked per antenna or customer/app:
101# {20:C8:1E:06:??:00:??:??:??:00:??:24:00:1C:00:75:00:77:00:76:00:1C:00:03:00:0A:00:??:01:00:00:40:04}
102# array[0] = 0x20 is length of the payload from array[1] to the end
103# array[1] = 0xC8 is PREINIT_DSP_CFG
104#PREINIT_DSP_CFG={20:C8:1E:06:1F:00:0F:03:3C:00:04:24:00:1C:00:75:00:77:00:76:00:1C:00:03:00:0A:00:48:01:00:00:40:04}
105
106###############################################################################
107# Configure crystal frequency when internal LPO can't detect the frequency.
108#XTAL_FREQUENCY=0
109###############################################################################
110# Configure the default Destination Gate used by HCI (the default is 4, which
111# is the ETSI loopback gate.
112NFA_HCI_DEFAULT_DEST_GATE=0xF0
113
114###############################################################################
115# Configure the single default SE to use. The default is to use the first
116# SE that is detected by the stack. This value might be used when the phone
117# supports multiple SE (e.g. 0xF3 and 0xF4) but you want to force it to use
118# one of them (e.g. 0xF4).
119#ACTIVE_SE=0xF3
120
121###############################################################################
122# Configure the default NfcA/IsoDep techology and protocol route. Can be
123# either a secure element (e.g. 0xF4) or the host (0x00)
124#DEFAULT_ISODEP_ROUTE=0x00
125
126###############################################################################
127# Configure the NFC Extras to open and use a static pipe. If the value is
128# not set or set to 0, then the default is use a dynamic pipe based on a
129# destination gate (see NFA_HCI_DEFAULT_DEST_GATE). Note there is a value
130# for each UICC (where F3="UICC0" and F4="UICC1")
131#NFA_HCI_STATIC_PIPE_ID_F3=0x70
132#NFA_HCI_STATIC_PIPE_ID_01=0x19
133NFA_HCI_STATIC_PIPE_ID_C0=0x19
134###############################################################################
135# When disconnecting from Oberthur secure element, perform a warm-reset of
136# the secure element to deselect the applet.
137# The default hex value of the command is 0x3. If this variable is undefined,
138# then this feature is not used.
139#OBERTHUR_WARM_RESET_COMMAND=0x03
140
141###############################################################################
142# Force UICC to only listen to the following technology(s).
143# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
144# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B | NFA_TECHNOLOGY_MASK_F
145UICC_LISTEN_TECH_MASK=0x07
146
147###############################################################################
148# Force HOST listen feature enable or disable.
149# 0: Disable
150# 1: Enable
151HOST_LISTEN_ENABLE=0x01
152
153###############################################################################
154# Enabling/Disabling Forward functionality
155# Disable 0x00
156# Enable 0x01
157NXP_FWD_FUNCTIONALITY_ENABLE=0x01
158
159###############################################################################
160# Allow UICC to be powered off if there is no traffic.
161# Timeout is in ms. If set to 0, then UICC will not be powered off.
162#UICC_IDLE_TIMEOUT=30000
163UICC_IDLE_TIMEOUT=0
164
165###############################################################################
166# AID for Empty Select command
167# If specified, this AID will be substituted when an Empty SELECT command is
168# detected. The first byte is the length of the AID. Maximum length is 16.
169AID_FOR_EMPTY_SELECT={08:A0:00:00:01:51:00:00:00}
170
171###############################################################################
172# This setting allows you to disable registering the T4t Virtual SE that causes
173# the NFCC to send PPSE requests to the DH.
174# The default setting is enabled (i.e. T4t Virtual SE is registered).
175#REGISTER_VIRTUAL_SE=1
176
177###############################################################################
178# When screen is turned off, specify the desired power state of the controller.
179# 0: power-off-sleep state; DEFAULT
180# 1: full-power state
181# 2: screen-off card-emulation (CE4/CE3/CE1 modes are used)
182SCREEN_OFF_POWER_STATE=1
183
184###############################################################################
185# Firmware patch file
186# If the value is not set then patch download is disabled.
187#FW_PATCH="/vendor/firmware/bcm2079x_firmware.ncd"
188
189###############################################################################
190# Firmware pre-patch file (sent before the above patch file)
191# If the value is not set then pre-patch is not used.
192#FW_PRE_PATCH="/vendor/firmware/bcm2079x_pre_firmware.ncd"
193
194###############################################################################
195# Firmware patch format
196# 1 = HCD
197# 2 = NCD (default)
198#NFA_CONFIG_FORMAT=2
199
200###############################################################################
201# SPD Debug mode
202# If set to 1, any failure of downloading a patch will trigger a hard-stop
203#SPD_DEBUG=0
204
205###############################################################################
206# SPD Max Retry Count
207# The number of attempts to download a patch before giving up (defualt is 3).
208# Note, this resets after a power-cycle.
209#SPD_MAX_RETRY_COUNT=3
210
211###############################################################################
212# transport driver
213#
214# TRANSPORT_DRIVER=<driver>
215#
216# where <driver> can be, for example:
217# "/dev/ttyS" (UART)
218# "/dev/bcmi2cnfc" (I2C)
219# "hwtun" (HW Tunnel)
220# "/dev/bcmspinfc" (SPI)
221# "/dev/btusb0" (BT USB)
222#TRANSPORT_DRIVER="/dev/bcm2079x-i2c"
223
224###############################################################################
225# power control driver
226# Specify a kernel driver that support ioctl commands to control NFC_EN and
227# NFC_WAKE gpio signals.
228#
229# POWER_CONTRL_DRIVER=<driver>
230# where <driver> can be, for example:
231# "/dev/nfcpower"
232# "/dev/bcmi2cnfc" (I2C)
233# "/dev/bcmspinfc" (SPI)
234# i2c and spi driver may be used to control NFC_EN and NFC_WAKE signal
235#POWER_CONTROL_DRIVER="/dev/bcm2079x-i2c"
236
237###############################################################################
238# I2C transport driver options
239# Mako does not support 10-bit I2C addresses
240# Revert to 7-bit address
241#BCMI2CNFC_ADDRESS=0x77
242
243###############################################################################
244# I2C transport driver try to read multiple packets in read() if data is available
245# remove the comment below to enable this feature
246#READ_MULTIPLE_PACKETS=1
247
248###############################################################################
249# SPI transport driver options
250#SPI_NEGOTIATION={0A:F0:00:01:00:00:00:FF:FF:00:00}
251
252###############################################################################
253# UART transport driver options
254#
255# PORT=1,2,3,...
256# BAUD=115200, 19200, 9600, 4800,
257# DATABITS=8, 7, 6, 5
258# PARITY="even" | "odd" | "none"
259# STOPBITS="0" | "1" | "1.5" | "2"
260
261#UART_PORT=2
262#UART_BAUD=115200
263#UART_DATABITS=8
264#UART_PARITY="none"
265#UART_STOPBITS="1"
266
267###############################################################################
268# Insert a delay in microseconds per byte after a write to NFCC.
269# after writing a block of data to the NFCC, delay this an amopunt of time before
270# writing next block of data. the delay is calculated as below
271# NFC_WRITE_DELAY * (number of byte written) / 1000 milliseconds
272# e.g. after 259 bytes is written, delay (259 * 20 / 1000) 5 ms before next write
273#NFC_WRITE_DELAY=20
274
275###############################################################################
276# Maximum Number of Credits to be allowed by the NFCC
277# This value overrides what the NFCC specifices allowing the host to have
278# the control to work-around transport limitations. If this value does
279# not exist or is set to 0, the NFCC will provide the number of credits.
280MAX_RF_DATA_CREDITS=1
281
282###############################################################################
283# Default poll duration (in ms)
284# The defualt is 500ms if not set (see nfc_target.h)
285#NFA_DM_DISC_DURATION_POLL=333
286
287###############################################################################
288# Choose the presence-check algorithm for type-4 tag. If not defined, the default value is 1.
289# 0 NFA_RW_PRES_CHK_DEFAULT; Let stack selects an algorithm
290# 1 NFA_RW_PRES_CHK_I_BLOCK; ISO-DEP protocol's empty I-block
291# 2 NFA_RW_PRES_CHK_RESET; Deactivate to Sleep, then re-activate
292# 3 NFA_RW_PRES_CHK_RB_CH0; Type-4 tag protocol's ReadBinary command on channel 0
293# 4 NFA_RW_PRES_CHK_RB_CH3; Type-4 tag protocol's ReadBinary command on channel 3
294# 5 NFA_RW_PRES_CHK_ISO_DEP_NAK; Type - 4 tag protocol iso-dep nak presence check
295# command is sent waiting for rsp and ntf.
296PRESENCE_CHECK_ALGORITHM=0
297
298###############################################################################
299# Force tag polling for the following technology(s).
300# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
301# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B |
302# NFA_TECHNOLOGY_MASK_F | NFA_TECHNOLOGY_MASK_ISO15693 |
303# NFA_TECHNOLOGY_MASK_B_PRIME | NFA_TECHNOLOGY_MASK_KOVIO |
304# NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE.
305#
306# Notable bits:
307# NFA_TECHNOLOGY_MASK_A 0x01 /* NFC Technology A */
308# NFA_TECHNOLOGY_MASK_B 0x02 /* NFC Technology B */
309# NFA_TECHNOLOGY_MASK_F 0x04 /* NFC Technology F */
310# NFA_TECHNOLOGY_MASK_ISO15693 0x08 /* Proprietary Technology */
311# NFA_TECHNOLOGY_MASK_KOVIO 0x20 /* Proprietary Technology */
312# NFA_TECHNOLOGY_MASK_A_ACTIVE 0x40 /* NFC Technology A active mode */
313# NFA_TECHNOLOGY_MASK_F_ACTIVE 0x80 /* NFC Technology F active mode */
314#POLLING_TECH_MASK=0xEF
315
316###############################################################################
317# Force P2P to only listen for the following technology(s).
318# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
319# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_F |
320# NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE
321#
322# Notable bits:
323# NFA_TECHNOLOGY_MASK_A 0x01 /* NFC Technology A */
324# NFA_TECHNOLOGY_MASK_F 0x04 /* NFC Technology F */
325# NFA_TECHNOLOGY_MASK_A_ACTIVE 0x40 /* NFC Technology A active mode */
326# NFA_TECHNOLOGY_MASK_F_ACTIVE 0x80 /* NFC Technology F active mode */
327#P2P_LISTEN_TECH_MASK=0xC5
328
329PRESERVE_STORAGE=0x01
330
331###############################################################################
332# Override the stack default for NFA_EE_MAX_EE_SUPPORTED set in nfc_target.h.
333# The value is set to 3 by default as it assumes we will discover 0xF2,
334# 0xF3, and 0xF4. If a platform will exclude and SE, this value can be reduced
335# so that the stack will not wait any longer than necessary.
336
337# Maximum EE supported number
338# NXP PN547C2 0x02
339# NXP PN65T 0x03
340# NXP PN548C2 0x02
341# NXP PN66T 0x03
342NFA_MAX_EE_SUPPORTED=0x02
343
344###############################################################################
345# NCI Hal Module name
346NCI_HAL_MODULE="nfc_nci"
347
348##############################################################################
349# Deactivate notification wait time out in seconds used in ETSI Reader mode
350# 0 - Infinite wait
351#NFA_DM_DISC_NTF_TIMEOUT=0
352
353###############################################################################
354# AID_MATCHING constants
355# AID_MATCHING_EXACT_ONLY 0x00
356# AID_MATCHING_EXACT_OR_PREFIX 0x01
357# AID_MATCHING_PREFIX_ONLY 0x02
358AID_MATCHING_MODE=0x01
359
360###############################################################################
361# Default Secure Element route id
362DEFAULT_OFFHOST_ROUTE=0x02
363
364###############################################################################
365# Vendor Specific Proprietary Protocol & Discovery Configuration
366# Set to 0xFF if unsupported
367# byte[0] NCI_PROTOCOL_18092_ACTIVE
368# byte[1] NCI_PROTOCOL_B_PRIME
369# byte[2] NCI_PROTOCOL_DUAL
370# byte[3] NCI_PROTOCOL_15693
371# byte[4] NCI_PROTOCOL_KOVIO
372# byte[5] NCI_PROTOCOL_MIFARE
373# byte[6] NCI_DISCOVERY_TYPE_POLL_KOVIO
374# byte[7] NCI_DISCOVERY_TYPE_POLL_B_PRIME
375# byte[8] NCI_DISCOVERY_TYPE_LISTEN_B_PRIME
376NFA_PROPRIETARY_CFG={05:FF:FF:06:81:80:70:FF:FF}
377
378###############################################################################
379# Bail out mode
380# If set to 1, NFCC is using bail out mode for either Type A or Type B poll.
381NFA_POLL_BAIL_OUT_MODE=0x01