]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
NFC: nci: Introduce new core opcodes
authorRobert Dolca <robert.dolca@intel.com>
Thu, 22 Oct 2015 09:11:35 +0000 (12:11 +0300)
committerSamuel Ortiz <sameo@linux.intel.com>
Sun, 25 Oct 2015 18:11:49 +0000 (19:11 +0100)
Add NCI_OP_CORE_GET_CONFIG_CMD, NCI_OP_CORE_GET_CONFIG_RSP
and NCI_OP_CORE_RESET_NTF.

Signed-off-by: Robert Dolca <robert.dolca@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
include/net/nfc/nci.h

index 75d2e188005969a1931e25ffe95a7f07335571cf..b495825f8f49e111893a32478e146a6a878cfa12 100644 (file)
@@ -315,6 +315,8 @@ struct nci_nfcee_mode_set_cmd {
        __u8    nfcee_mode;
 } __packed;
 
+#define NCI_OP_CORE_GET_CONFIG_CMD     nci_opcode_pack(NCI_GID_CORE, 0x03)
+
 /* ----------------------- */
 /* ---- NCI Responses ---- */
 /* ----------------------- */
@@ -375,6 +377,9 @@ struct nci_nfcee_discover_rsp {
 } __packed;
 
 #define NCI_OP_NFCEE_MODE_SET_RSP nci_opcode_pack(NCI_GID_NFCEE_MGMT, 0x01)
+
+#define NCI_OP_CORE_GET_CONFIG_RSP     nci_opcode_pack(NCI_GID_CORE, 0x03)
+
 /* --------------------------- */
 /* ---- NCI Notifications ---- */
 /* --------------------------- */
@@ -528,4 +533,6 @@ struct nci_nfcee_discover_ntf {
        struct nci_nfcee_information_tlv        information_tlv;
 } __packed;
 
+#define NCI_OP_CORE_RESET_NTF          nci_opcode_pack(NCI_GID_CORE, 0x00)
+
 #endif /* __NCI_H */