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=0x0
     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 ###############################################################################
     98 # Configure the NFC Extras to open and use a static pipe.  If the value is
     99 # not set or set to 0, then the default is use a dynamic pipe based on a
    100 # destination gate (see NFA_HCI_DEFAULT_DEST_GATE).  Note there is a value
    101 # for each UICC (where F3="UICC0" and F4="UICC1")
    102 #NFA_HCI_STATIC_PIPE_ID_F3=0x70
    103 #NFA_HCI_STATIC_PIPE_ID_F4=0x71
    104 
    105 ###############################################################################
    106 # Force UICC to only listen to the following technology(s).
    107 # The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
    108 # Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B.
    109 #UICC_LISTEN_TECH_MASK=0x01
    110 
    111 ###############################################################################
    112 # Force tag polling for the following technology(s).
    113 # The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
    114 # Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B |
    115 #            NFA_TECHNOLOGY_MASK_F | NFA_TECHNOLOGY_MASK_ISO15693 |
    116 #            NFA_TECHNOLOGY_MASK_B_PRIME | NFA_TECHNOLOGY_MASK_A_ACTIVE |
    117 #            NFA_TECHNOLOGY_MASK_F_ACTIVE.
    118 #
    119 # Notable bits:
    120 #   NFA_TECHNOLOGY_MASK_A         0x01
    121 #   NFA_TECHNOLOGY_MASK_B         0x02
    122 #   NFA_TECHNOLOGY_MASK_F         0x04
    123 #   NFA_TECHNOLOGY_MASK_ISO15693  0x08
    124 #   NFA_TECHNOLOGY_MASK_B_PRIME   0x10
    125 #   NFA_TECHNOLOGY_MASK_KOVIO	    0x20
    126 #   NFA_TECHNOLOGY_MASK_A_ACTIVE    0x40
    127 #   NFA_TECHNOLOGY_MASK_F_ACTIVE    0x80
    128 POLLING_TECH_MASK=0xEF
    129 
    130 ###############################################################################
    131 # Force P2P to only listen for the following technology(s).
    132 # The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.
    133 # Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_F |
    134 #            NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE
    135 #P2P_LISTEN_TECH_MASK=0xC5
    136 
    137 ###############################################################################
    138 # Maximum Number of Credits to be allowed by the NFCC
    139 #   This value overrides what the NFCC specifices allowing the host to have
    140 #   the control to work-around transport limitations.  If this value does
    141 #   not exist or is set to 0, the NFCC will provide the number of credits.
    142 #MAX_RF_DATA_CREDITS=1
    143 
    144 ###############################################################################
    145 # When screen is turned off, specify the desired power state of the controller.
    146 # 0: power-off-sleep state; DEFAULT
    147 # 1: full-power state
    148 # 2: screen-off card-emulation (CE4/CE3/CE1 modes are used)
    149 SCREEN_OFF_POWER_STATE=1
    150 
    151 ###############################################################################
    152 # SPD Debug mode
    153 #  If set to 1, any failure of downloading a patch will trigger a hard-stop
    154 #SPD_DEBUG=0
    155 
    156 ###############################################################################
    157 # SPD Max Retry Count
    158 #  The number of attempts to download a patch before giving up (defualt is 3).
    159 #  Note, this resets after a power-cycle.
    160 #SPD_MAX_RETRY_COUNT=3
    161 
    162 ###############################################################################
    163 # transport driver
    164 #
    165 # TRANSPORT_DRIVER=<driver>
    166 #
    167 #  where <driver> can be, for example:
    168 #    "/dev/ttyS"        (UART)
    169 #    "/dev/bcmi2cnfc"   (I2C)
    170 #    "hwtun"            (HW Tunnel)
    171 #    "/dev/bcmspinfc"   (SPI)
    172 #    "/dev/btusb0"      (BT USB)
    173 TRANSPORT_DRIVER="/dev/bcm2079x-i2c"
    174 
    175 ###############################################################################
    176 # power control driver
    177 # Specify a kernel driver that support ioctl commands to control NFC_EN and
    178 # NFC_WAKE gpio signals.
    179 #
    180 # POWER_CONTRL_DRIVER=<driver>
    181 #  where <driver> can be, for example:
    182 #    "/dev/nfcpower"
    183 #    "/dev/bcmi2cnfc"   (I2C)
    184 #    "/dev/bcmspinfc"   (SPI)
    185 #    i2c and spi driver may be used to control NFC_EN and NFC_WAKE signal
    186 POWER_CONTROL_DRIVER="/dev/bcm2079x-i2c"
    187 
    188 ###############################################################################
    189 # I2C transport driver options
    190 # BCMI2CNFC_ADDRESS=0
    191 
    192 ###############################################################################
    193 # I2C transport driver try to read multiple packets in read() if data is available
    194 # remove the comment below to enable this feature
    195 #READ_MULTIPLE_PACKETS=1
    196 
    197 ###############################################################################
    198 # SPI transport driver options
    199 #SPI_NEGOTIATION={0A:F0:00:01:00:00:00:FF:FF:00:00}
    200 
    201 ###############################################################################
    202 # UART transport driver options
    203 #
    204 # PORT=1,2,3,...
    205 # BAUD=115200, 19200, 9600, 4800,
    206 # DATABITS=8, 7, 6, 5
    207 # PARITY="even" | "odd" | "none"
    208 # STOPBITS="0" | "1" | "1.5" | "2"
    209 
    210 #UART_PORT=2
    211 #UART_BAUD=115200
    212 #UART_DATABITS=8
    213 #UART_PARITY="none"
    214 #UART_STOPBITS="1"
    215 
    216 ###############################################################################
    217 # Insert a delay in microseconds per byte after a write to NFCC.
    218 # after writing a block of data to the NFCC, delay this an amopunt of time before
    219 # writing next block of data.  the delay is calculated as below
    220 #   NFC_WRITE_DELAY * (number of byte written) / 1000 milliseconds
    221 # e.g. after 259 bytes is written, delay (259 * 20 / 1000) 5 ms before next write
    222 NFC_WRITE_DELAY=20
    223 
    224 ###############################################################################
    225 # Configuration for the RF discovery frequency for each technology. The values mean
    226 # frequency for NFC Technology A
    227 #                   Technology B
    228 #                   Technology F
    229 #                   Proprietary Technology/15693
    230 #                   Proprietary Technology/B-Prime
    231 #                   Proprietary Technology/Kovio
    232 #                   Technology A active mode
    233 #                   Technology F active mode
    234 #POLL_FREQUENCY={01:01:01:01:01:01:01:01}
    235 
    236 ###############################################################################
    237 # Define the following variables to override the NFC stack's crystal
    238 # frequency selection algorithm.
    239 #XTAL_HARDWARE_ID=0x20791000: Controller's hardware ID.
    240 #XTAL_FREQUENCY=26000: Controller's crystal frequency.
    241 #XTAL_FREQ_INDEX=5: Controller's crystal frequency index.
    242 
    243 ###############################################################################
    244 # Choose the presence-check algorithm for type-4 tag.  If not defined,
    245 # the default value is 1.
    246 # 0  NFA_RW_PRES_CHK_DEFAULT; Let stack selects an algorithm
    247 # 1  NFA_RW_PRES_CHK_I_BLOCK; ISO-DEP protocol's empty I-block
    248 # 2  NFA_RW_PRES_CHK_RESET; Deactivate to Sleep, then re-activate
    249 # 3  NFA_RW_PRES_CHK_RB_CH0; Type-4 tag protocol's ReadBinary command on channel 0
    250 # 4  NFA_RW_PRES_CHK_RB_CH3; Type-4 tag protocol's ReadBinary command on channel 3
    251 PRESENCE_CHECK_ALGORITHM=1
    252 
    253 ###############################################################################
    254 # Select controller support for AID matching
    255 # the default value is 0.
    256 # 0  Exact matching only
    257 # 1  Exact+Prefix matching
    258 # 2  Prefix matching only
    259 AID_MATCHING_MODE=2
    260