###############################################################################1# NFC Configuration for NON-HAL component S3FWRN52# Samsung Electronics, System LSI Division3# Update Date : 2014/11/114# eSE : NFC Standalone5# Region : Other Region6# F/W Version dependency : NONE7# This file contains below8# 1) Default routing information : eSE + UICC (Active SE = 0x02)9# 2) Partial AID setting : Disable10# 3) UICC listen tech mask : 0x03 (Type A / B)11# 4) Listen tech mask for P2P : 0xC4 (Disable 106kbps passive P2P)12# 5) Poll tech mask : 0xEF (Enable All tech - B prime is not supported)13# 6) eSE warm reset : Enabled14# 7) Other Information1516################################################################################17# 1) Default routing information18# SPRINT : DEFAULT_ISODEP_ROUTE=0x02 (eSE only) / ACTIVE_SE=0x0219# Other region : DEFAULT_ISODEP_ROUTE=0x03 (UICC) / ACTIVE_SE=0x0320DEFAULT_ISODEP_ROUTE=0x0321ACTIVE_SE=0x022223###############################################################################24# 2) Partial AID setting : Only used for ATT / TMO / VZW25# This configuration may be changed by MNO specific requirement.26# Description27# 1st byte : NCI Length28# 2nd byte : Number of set29# 3rd~ bytes : Partial matching order30# Matching value : Full matching = 0x00, Subset Matching = 0x01, Superset Matching : 0x02, Pattern Matching : 0x0331# ex) 2f 39 03 02 01 02 --> order : full matching - subset matching - superset matching PARTIAL_AID={03:02:01:02}32# PARTIAL_AID={02:01:02}3334###############################################################################35# Guide for tech mask36# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.37# Notable bits:38# NFA_TECHNOLOGY_MASK_A 0x0139# NFA_TECHNOLOGY_MASK_B 0x0240# NFA_TECHNOLOGY_MASK_F 0x0441# NFA_TECHNOLOGY_MASK_ISO15693 0x0842# NFA_TECHNOLOGY_MASK_B_PRIME 0x1043# NFA_TECHNOLOGY_MASK_KOVIO 0x2044# NFA_TECHNOLOGY_MASK_A_ACTIVE 0x4045# NFA_TECHNOLOGY_MASK_F_ACTIVE 0x8046# Example :47# Polling mask for A / B / F / V(15693) / Kovio / Active A / Active F48# NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B |49# NFA_TECHNOLOGY_MASK_F | NFA_TECHNOLOGY_MASK_ISO15693 |50# NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE.51# 0x01 | 0x02 | 0x04 | 0x08 | 0x20 | 0x4052# => POLLING_TECH_MASK=0xEF5354###############################################################################55# 3) UICC listen tech mask56# Force UICC to only listen to the following technology(s).57# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B.58# If this option is blocked by # comment, default value will be applied59# Guide for each region60# SPRINT : UICC_LISTEN_TECH_MASK=0x01 (Type A only)61# HK : UICC_LISTEN_TECH_MASK=0x07 (Enable Type F card)62# Other region : UICC_LISTEN_TECH_MASK=0x03 (Default value)63UICC_LISTEN_TECH_MASK=0x036465###############################################################################66# 4) Listen tech mask for P2P67# Force tag polling for the following technology(s).68# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B |69# NFA_TECHNOLOGY_MASK_F | NFA_TECHNOLOGY_MASK_ISO15693 |70# NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE.71# Current Setting : Enable all poll tech72POLLING_TECH_MASK=0xEF7374###############################################################################75# 5) Poll tech mask76# Force P2P to only listen for the following technology(s).77# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h.78# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_F |79# NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE80# For HK, P2P_LISTEN_TECH_MASK may be 0xC0 for enhance type F card success ratio81P2P_LISTEN_TECH_MASK=0xC48283###############################################################################84# Maximum Number of Credits to be allowed by the NFCC85# This value overrides what the NFCC specifices allowing the host to have86# the control to work-around transport limitations. If this value does87# not exist or is set to 0, the NFCC will provide the number of credits.88MAX_RF_DATA_CREDITS=18990###############################################################################91# When disconnecting from Oberthur secure element, perform a warm-reset of92# the secure element to deselect the applet.93# The default hex value of the command is 0x3. If this variable is undefined,94# then this feature is not used.95# 6) OBERTHUR_WARM_RESET_COMMAND must be enabled for all eSE model96OBERTHUR_WARM_RESET_COMMAND=0x039798###############################################################################99# 7) Other Information100# It will be checked in next version.101###############################################################################102103###############################################################################104# Application options105APPL_TRACE_LEVEL=0xFF106PROTOCOL_TRACE_LEVEL=0xFFFFFFFF107108PRESERVE_STORAGE=1109110# File used for NFA storage111NFA_STORAGE="/data/nfc"112113###############################################################################114# power control driver115# Specify a kernel driver that support ioctl commands to control NFC_EN and116# NFC_WAKE gpio signals.117#118# POWER_CONTRL_DRIVER=<driver>119# i2c and spi driver may be used to control NFC_EN and NFC_WAKE signal120POWER_CONTROL_DRIVER="/dev/sec-nfc"121122###############################################################################123# transport driver124#125# TRANSPORT_DRIVER=<driver>126#127# where <driver> can be, for example:128# "/dev/ttyS" (UART)129# "/dev/bcmi2cnfc" (I2C)130# "hwtun" (HW Tunnel)131# "/dev/bcmspinfc" (SPI)132# "/dev/btusb0" (BT USB)133TRANSPORT_DRIVER="/dev/sec-nfc"134135###############################################################################136# Default poll duration (in ms)137# The defualt is 500ms if not set (see nfc_target.h) same as M project138NFA_DM_DISC_DURATION_POLL=500139140141142143