Home | History | Annotate | Download | only in nfc
      1 ###############################################################################
      2 # Application options
      3 APPL_TRACE_LEVEL=0x01
      4 PROTOCOL_TRACE_LEVEL=0x00000000
      5 
      6 ###############################################################################
      7 # performance measurement
      8 # Change this setting to control how often USERIAL log the performance (throughput)
      9 # data on read/write/poll
     10 # defailt is to log performance dara for every 100 read or write
     11 #REPORT_PERFORMANCE_MEASURE=100
     12 
     13 ###############################################################################
     14 # File used for NFA storage
     15 NFA_STORAGE="/data/nfc"
     16 PRESERVE_STORAGE=1
     17 
     18 ###############################################################################
     19 # Insert a delay in milliseconds after NFC_WAKE and before write to NFCC
     20 NFC_WAKE_DELAY=20
     21 
     22 ###############################################################################
     23 # Various Delay settings (in ms) used in USERIAL
     24 #  POWER_ON_DELAY
     25 #    Delay after turning on chip, before writing to transport (default 300)
     26 #  PRE_POWER_OFF_DELAY
     27 #    Delay after deasserting NFC-Wake before turn off chip (default 0)
     28 #  POST_POWER_OFF_DELAY
     29 #    Delay after turning off chip, before USERIAL_close returns (default 0)
     30 #
     31 POWER_ON_DELAY=50
     32 PRE_POWER_OFF_DELAY=10
     33 #POST_POWER_OFF_DELAY=0
     34 
     35 ################################################
     36 #Disable BOC before sending XTAL_INDEX_CMD.
     37 DO_GLOBAL_RESET=1
     38 
     39 ###############################################################################
     40 # Maximum time (ms) to wait for RESET NTF after setting REG_PU to high
     41 # The default is 1000.
     42 NFCC_ENABLE_TIMEOUT=0
     43 
     44 ###############################################################################
     45 # Device Manager Config
     46 #
     47 #  If NFA_DM_CFG is not provided, stack default settings are
     48 #  used (see nfa_dm_cfg.c).  They are as follows:
     49 #       0 (FALSE)     Automatic NDEF detection when background polling
     50 #       0 (FALSE)     Automatic NDEF read when background polling
     51 #
     52 #NFA_DM_CFG={00:00}
     53 
     54 ###############################################################################
     55 # Default poll duration (in ms)
     56 #  The defualt is 500ms if not set (see nfc_target.h)
     57 #NFA_DM_DISC_DURATION_POLL=500
     58 
     59 ###############################################################################
     60 # Startup Vendor Specific Configuration (100 bytes maximum);
     61 #  byte[0] TLV total len = 0x5
     62 #  byte[1] NCI_MTS_CMD|NCI_GID_PROP = 0x2f
     63 #  byte[2] NCI_MSG_FRAME_LOG = 0x9
     64 #  byte[3] 2
     65 #  byte[4] 0=turn off RF frame logging; 1=turn on
     66 #  byte[5] 0=turn off SWP frame logging; 1=turn on
     67 #  NFA_DM_START_UP_VSC_CFG={05:2F:09:02:01:01}
     68 
     69 ###############################################################################
     70 # Configure the default Destination Gate used by HCI (the default is 4, which
     71 # is the ETSI loopback gate.
     72 #NFA_HCI_DEFAULT_DEST_GATE=0x04
     73 
     74 ###############################################################################
     75 # Override the stack default for NFA_EE_MAX_EE_SUPPORTED set in nfc_target.h.
     76 # The value is set to 3 by default as it assumes we will discover 0xF2,
     77 # 0xF3, and 0xF4. If a platform will exclude an SE, this value can be reduced
     78 # so that the stack will not wait any longer than necessary.  It can be set to
     79 # 0 to disable EE and HCI sub-systems (i.e. if there are no SE on the system).
     80 # Note, if set to 0, the ACTIVE_SE setting should also be set to 0.
     81 #NFA_MAX_EE_SUPPORTED=0
     82 
     83 ###############################################################################
     84 # Configure the single default SE to use.  The default is to use the first
     85 # SE that is detected by the stack.  This value might be used when the phone
     86 # supports multiple SE (e.g. 0xF3 and 0xF4) but you want to force it to use
     87 # one of them (e.g. 0xF4).  This can be set to 0 if there are no SE on the
     88 # system in order to skip SE initialization.
     89 ACTIVE_SE=0xF3
     90 
     91 ###############################################################################
     92 # Configure the default NfcA/IsoDep techology and protocol route. Can be
     93 # either a secure element (e.g. 0xF4) or the host (0x00)
     94 DEFAULT_ISODEP_ROUTE=0x00
     95 
     96 ###############################################################################
     97 # Configure the default "off-host" AID route.  The default is 0xF4
     98 DEFAULT_OFFHOST_ROUTE=0xF3
     99 
    100 ###############################################################################
    101 # Configure the NFC Extras to open and use a static pipe.  If the value is
    102 # not set or set to 0, then the default is use a dynamic pipe based on a
    103 # destination gate (see NFA_HCI_DEFAULT_DEST_GATE).  Note there is a value
    104 # for each UICC (where F3="UICC0" and F4="UICC1")
    105 #NFA_HCI_STATIC_PIPE_ID_F3=0x70
    106 #NFA_HCI_STATIC_PIPE_ID_F4=0x71
    107 
    108 ###############################################################################
    109 # When disconnecting from Oberthur secure element, perform a warm-reset of
    110 # the secure element to deselect the applet.
    111 # The default hex value of the command is 0x3.  If this variable is undefined,
    112 # then this feature is not used.
    113 OBERTHUR_WARM_RESET_COMMAND=0x03
    114 
    115 ###############################################################################
    116 # Force UICC to only listen to the following technology(s).
    117 # The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
    118 # Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B.
    119 #UICC_LISTEN_TECH_MASK=0x01
    120 
    121 ###############################################################################
    122 # AID for Empty Select command
    123 # If specified, this AID will be substituted when an Empty SELECT command is
    124 # detected.  The first byte is the length of the AID.  Maximum length is 16.
    125 AID_FOR_EMPTY_SELECT={08:A0:00:00:01:51:00:00:00}
    126 
    127 ###############################################################################
    128 # Force tag polling for the following technology(s).
    129 # The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
    130 # Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B |
    131 #            NFA_TECHNOLOGY_MASK_F | NFA_TECHNOLOGY_MASK_ISO15693 |
    132 #            NFA_TECHNOLOGY_MASK_B_PRIME | NFA_TECHNOLOGY_MASK_A_ACTIVE |
    133 #            NFA_TECHNOLOGY_MASK_F_ACTIVE.
    134 #
    135 # Notable bits:
    136 #   NFA_TECHNOLOGY_MASK_A         0x01
    137 #   NFA_TECHNOLOGY_MASK_B         0x02
    138 #   NFA_TECHNOLOGY_MASK_F         0x04
    139 #   NFA_TECHNOLOGY_MASK_ISO15693  0x08
    140 #   NFA_TECHNOLOGY_MASK_B_PRIME   0x10
    141 #   NFA_TECHNOLOGY_MASK_KOVIO	    0x20
    142 #   NFA_TECHNOLOGY_MASK_A_ACTIVE    0x40
    143 #   NFA_TECHNOLOGY_MASK_F_ACTIVE    0x80
    144 POLLING_TECH_MASK=0xEF
    145 
    146 ###############################################################################
    147 # Force P2P to only listen for the following technology(s).
    148 # The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
    149 # Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_F |
    150 #            NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE
    151 #P2P_LISTEN_TECH_MASK=0xC5
    152 
    153 ###############################################################################
    154 # Maximum Number of Credits to be allowed by the NFCC
    155 #   This value overrides what the NFCC specifices allowing the host to have
    156 #   the control to work-around transport limitations.  If this value does
    157 #   not exist or is set to 0, the NFCC will provide the number of credits.
    158 #MAX_RF_DATA_CREDITS=1
    159 
    160 ###############################################################################
    161 # When screen is turned off, specify the desired power state of the controller.
    162 # 0: power-off-sleep state; DEFAULT
    163 # 1: full-power state
    164 # 2: screen-off card-emulation (CE4/CE3/CE1 modes are used)
    165 SCREEN_OFF_POWER_STATE=1
    166 
    167 ###############################################################################
    168 # SPD Debug mode
    169 #  If set to 1, any failure of downloading a patch will trigger a hard-stop
    170 #SPD_DEBUG=0
    171 
    172 ###############################################################################
    173 # SPD Max Retry Count
    174 #  The number of attempts to download a patch before giving up (defualt is 3).
    175 #  Note, this resets after a power-cycle.
    176 #SPD_MAX_RETRY_COUNT=3
    177 
    178 ###############################################################################
    179 # transport driver
    180 #
    181 # TRANSPORT_DRIVER=<driver>
    182 #
    183 #  where <driver> can be, for example:
    184 #    "/dev/ttyS"        (UART)
    185 #    "/dev/bcmi2cnfc"   (I2C)
    186 #    "hwtun"            (HW Tunnel)
    187 #    "/dev/bcmspinfc"   (SPI)
    188 #    "/dev/btusb0"      (BT USB)
    189 TRANSPORT_DRIVER="/dev/bcm2079x-i2c"
    190 
    191 ###############################################################################
    192 # power control driver
    193 # Specify a kernel driver that support ioctl commands to control NFC_EN and
    194 # NFC_WAKE gpio signals.
    195 #
    196 # POWER_CONTRL_DRIVER=<driver>
    197 #  where <driver> can be, for example:
    198 #    "/dev/nfcpower"
    199 #    "/dev/bcmi2cnfc"   (I2C)
    200 #    "/dev/bcmspinfc"   (SPI)
    201 #    i2c and spi driver may be used to control NFC_EN and NFC_WAKE signal
    202 POWER_CONTROL_DRIVER="/dev/bcm2079x-i2c"
    203 
    204 ###############################################################################
    205 # I2C transport driver options
    206 # BCMI2CNFC_ADDRESS=0
    207 
    208 ###############################################################################
    209 # I2C transport driver try to read multiple packets in read() if data is available
    210 # remove the comment below to enable this feature
    211 #READ_MULTIPLE_PACKETS=1
    212 
    213 ###############################################################################
    214 # SPI transport driver options
    215 #SPI_NEGOTIATION={0A:F0:00:01:00:00:00:FF:FF:00:00}
    216 
    217 ###############################################################################
    218 # UART transport driver options
    219 #
    220 # PORT=1,2,3,...
    221 # BAUD=115200, 19200, 9600, 4800,
    222 # DATABITS=8, 7, 6, 5
    223 # PARITY="even" | "odd" | "none"
    224 # STOPBITS="0" | "1" | "1.5" | "2"
    225 
    226 #UART_PORT=2
    227 #UART_BAUD=115200
    228 #UART_DATABITS=8
    229 #UART_PARITY="none"
    230 #UART_STOPBITS="1"
    231 
    232 ###############################################################################
    233 # Insert a delay in microseconds per byte after a write to NFCC.
    234 # after writing a block of data to the NFCC, delay this an amopunt of time before
    235 # writing next block of data.  the delay is calculated as below
    236 #   NFC_WRITE_DELAY * (number of byte written) / 1000 milliseconds
    237 # e.g. after 259 bytes is written, delay (259 * 20 / 1000) 5 ms before next write
    238 NFC_WRITE_DELAY=20
    239 
    240 ###############################################################################
    241 # Configuration for the RF discovery frequency for each technology. The values mean
    242 # frequency for NFC Technology A
    243 #                   Technology B
    244 #                   Technology F
    245 #                   Proprietary Technology/15693
    246 #                   Proprietary Technology/B-Prime
    247 #                   Proprietary Technology/Kovio
    248 #                   Technology A active mode
    249 #                   Technology F active mode
    250 #POLL_FREQUENCY={01:01:01:01:01:01:01:01}
    251 
    252 ###############################################################################
    253 # Define the following variables to override the NFC stack's crystal
    254 # frequency selection algorithm.
    255 #XTAL_HARDWARE_ID=0x20791000: Controller's hardware ID.
    256 #XTAL_FREQUENCY=26000: Controller's crystal frequency.
    257 #XTAL_FREQ_INDEX=5: Controller's crystal frequency index.
    258 
    259 ###############################################################################
    260 # Choose the presence-check algorithm for type-4 tag.  If not defined,
    261 # the default value is 1.
    262 # 0  NFA_RW_PRES_CHK_DEFAULT; Let stack selects an algorithm
    263 # 1  NFA_RW_PRES_CHK_I_BLOCK; ISO-DEP protocol's empty I-block
    264 # 2  NFA_RW_PRES_CHK_RESET; Deactivate to Sleep, then re-activate
    265 # 3  NFA_RW_PRES_CHK_RB_CH0; Type-4 tag protocol's ReadBinary command on channel 0
    266 # 4  NFA_RW_PRES_CHK_RB_CH3; Type-4 tag protocol's ReadBinary command on channel 3
    267 PRESENCE_CHECK_ALGORITHM=1
    268 
    269 ###############################################################################
    270 # Select controller support for AID matching
    271 # the default value is 0.
    272 # 0  Exact matching only
    273 # 1  Exact+Prefix matching
    274 # 2  Prefix matching only
    275 AID_MATCHING_MODE=2
    276