mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
8ae01f7967
The st21nfcb chipset has 3 SWP (Single Wire Protocol) lines and supports up to 3 secure elements (UICC/eSE and µSD in the future). Some st21nfcb firmware does not support the nci command nci_nfcee_mode_set(NCI_NFCEE_DISABLE). For this reason, we assume 2 secures elements are always present (UICC and eSE). They will be added to the SE list once successfully activated and they will be available only after running through enable_se handler or when the poll in listen mode is started. During initialization, the white_list will be always set assuming both UICC & eSE are present. On eSE activation, the ATR bytes are fetched to build the command exchange timeout. The se_io hook will allow to transfer data over SWP. 2 kind of events may appear data is sent over: - ST21NFCB_EVT_TRANSMIT_DATA when receiving an apdu answer - ST21NFCB_EVT_WTX_REQUEST when the secure element needs more time than expected to process a command. If this timeout expires, we send a software reset, and then a hardware one if it still fails. Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
/*
|
|
* NCI based Driver for STMicroelectronics NFC Chip
|
|
*
|
|
* Copyright (C) 2014 STMicroelectronics SAS. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __LOCAL_ST21NFCB_H_
|
|
#define __LOCAL_ST21NFCB_H_
|
|
|
|
#include "st21nfcb_se.h"
|
|
#include "ndlc.h"
|
|
|
|
/* Define private flags: */
|
|
#define ST21NFCB_NCI_RUNNING 1
|
|
|
|
struct st21nfcb_nci_info {
|
|
struct llt_ndlc *ndlc;
|
|
unsigned long flags;
|
|
struct st21nfcb_se_info se_info;
|
|
};
|
|
|
|
void st21nfcb_nci_remove(struct nci_dev *ndev);
|
|
int st21nfcb_nci_probe(struct llt_ndlc *ndlc, int phy_headroom,
|
|
int phy_tailroom);
|
|
|
|
#endif /* __LOCAL_ST21NFCB_H_ */
|