blob: b1794ee65edc3b0ce91c9ef5909aa5acdd502446 [file] [log] [blame]
nxf24591c1cbeab2018-02-21 17:32:26 +05301/******************************************************************************
2 *
3 * Copyright (C) 2012-2014 Broadcom Corporation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
19/******************************************************************************
20 *
21 * This file contains the Broadcom-specific defintions that are shared
22 * between HAL, nfc stack, adaptation layer and applications.
23 *
24 ******************************************************************************/
25
26#ifndef NFC_BRCM_DEFS_H
27#define NFC_BRCM_DEFS_H
28
29/**********************************************
30 * NCI Message Proprietary Group - F
31 **********************************************/
32#define NCI_MSG_GET_BUILD_INFO 0x04
33#define NCI_MSG_HCI_NETWK 0x05
34#define NCI_MSG_POWER_LEVEL 0x08
35#define NCI_MSG_UICC_READER_ACTION 0x0A
36/* reset HCI network/close all pipes (S,D) register */
37#define NCI_MSG_GET_NV_DEVICE 0x24
38#define NCI_MSG_LPTD 0x25
39#define NCI_MSG_EEPROM_RW 0x29
40#define NCI_MSG_GET_PATCH_VERSION 0x2D
41#define NCI_MSG_SECURE_PATCH_DOWNLOAD 0x2E
42
43/* Secure Patch Download definitions (patch type definitions) */
44#define NCI_SPD_TYPE_HEADER 0x00
45
46/**********************************************
47 * NCI Interface Types
48 **********************************************/
49#define NCI_INTERFACE_VS_MIFARE 0x80
50#define NCI_INTERFACE_VS_T2T_CE 0x82 /* for Card Emulation side */
51
Ravishinde3ddd5922018-06-07 15:43:18 +053052#if (NXP_EXTNS==FALSE)
nxf24591c1cbeab2018-02-21 17:32:26 +053053/**********************************************
54 * NCI Proprietary Parameter IDs
55 **********************************************/
56#define NCI_PARAM_ID_HOST_LISTEN_MASK 0xA2
57#define NCI_PARAM_ID_TAGSNIFF_CFG 0xB9
58#define NCI_PARAM_ID_ACT_ORDER 0xC5
Ravishinde3ddd5922018-06-07 15:43:18 +053059#endif
nxf24591c1cbeab2018-02-21 17:32:26 +053060#define NFC_SNOOZE_MODE_UART 0x01 /* Snooze mode for UART */
61
62#define NFC_SNOOZE_ACTIVE_LOW 0x00 /* high to low voltage is asserting */
63
64/**********************************************
65 * HCI definitions
66 **********************************************/
67#define NFC_HAL_HCI_SESSION_ID_LEN 8
68#define NFC_HAL_HCI_SYNC_ID_LEN 2
69
70/* Card emulation RF Gate A definitions */
71#define NFC_HAL_HCI_CE_RF_A_UID_REG_LEN 10
72#define NFC_HAL_HCI_CE_RF_A_ATQA_RSP_CODE_LEN 2
73#define NFC_HAL_HCI_CE_RF_A_MAX_HIST_DATA_LEN 15
74#define NFC_HAL_HCI_CE_RF_A_MAX_DATA_RATE_LEN 3
75
76/* Card emulation RF Gate B definitions */
77#define NFC_HAL_HCI_CE_RF_B_PUPI_LEN 4
78#define NFC_HAL_HCI_CE_RF_B_ATQB_LEN 4
79#define NFC_HAL_HCI_CE_RF_B_HIGHER_LAYER_RSP_LEN 61
80#define NFC_HAL_HCI_CE_RF_B_MAX_DATA_RATE_LEN 3
81
82/* Card emulation RF Gate BP definitions */
83#define NFC_HAL_HCI_CE_RF_BP_MAX_PAT_IN_LEN 8
84#define NFC_HAL_HCI_CE_RF_BP_DATA_OUT_LEN 40
85
86/* Reader RF Gate A definitions */
87#define NFC_HAL_HCI_RD_RF_B_HIGHER_LAYER_DATA_LEN 61
88
89/* DH HCI Network command definitions */
90#define NFC_HAL_HCI_DH_MAX_DYN_PIPES 20
91
92#endif /* NFC_BRCM_DEFS_H */