aboutsummaryrefslogtreecommitdiff
path: root/pn54x/common/phNfcCompId.h
blob: 9930e0c202769f36f9960944c6061d6faddd3fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * Copyright (C) 2010-2014 NXP Semiconductors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 * NFC Component ID Values - Used for Function Return Codes
 */

#ifndef PHNFCCOMPID_H
#define PHNFCCOMPID_H

/*
 *  Component IDs
 *
 *  IDs for all NFC components. Combined with the Status Code they build the
 * value (status)
 *  returned by each function.
 *
 *  ID Number Spaces:
 *  - 01..1F: HAL
 *  - 20..3F: NFC-MW (Local Device)
 *  - 40..5F: NFC-MW (Remote Device)
 *  .
 *
 *         The value CID_NFC_NONE does not exist for Component IDs. Do not use
 * this value except
 *         for NFCSTATUS_SUCCESS. The enumeration function uses CID_NFC_NONE
 *         to mark unassigned "References".
 */
/* Unassigned or doesn't apply (see #NFCSTATUS_SUCCESS) */
#define CID_NFC_NONE 0x00
#define CID_NFC_TML 0x01 /* Transport Mapping Layer */
#define CID_NFC_LLC 0x07 /* Logical Link Control Layer */
/* NFC Controller(NFCC) Interface Layer */
#define CID_NFC_NCI 0x08
/* Firmware Download Management Layer */
#define CID_NFC_DNLD 0x09
#define CID_NFC_HAL 0x10 /* Hardware Abstraction Layer */
/* Operating System Abstraction Layer*/
#define CID_NFC_OSAL CID_NFC_NONE
#define CID_FRI_NFC_OVR_HAL 0x20       /* NFC-Device, HAL-based */
#define CID_FRI_NFC_NDEF_RECORD 0x22   /* NDEF Record Tools Library. */
#define CID_FRI_NFC_NDEF_MAP 0x23      /* NDEF Mapping. */
#define CID_FRI_NFC_NDEF_REGISTRY 0x24 /* NDEF_REGISTRY. */
/* Automatic Device Discovery. */
#define CID_FRI_NFC_AUTO_DEV_DIS 0x25
#define CID_FRI_NFC_NDEF_SMTCRDFMT 0x26 /* Smart Card Formatting */
#define CID_NFC_LIB 0x30                /* NFC Library Layer*/
/* The maximum CID value that is defined. */
#define CID_MAX_VALUE 0xF0
/* Logical Link Control Protocol */
#define CID_FRI_NFC_LLCP 0x40
#define CID_FRI_NFC_LLCP_TRANSPORT 0x50
#define CID_FRI_NFC_LLCP_MAC 0x60

#endif /* PHNFCCOMPID_H */