0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef __NET_NFC_H
0012 #define __NET_NFC_H
0013
0014 #include <linux/nfc.h>
0015 #include <linux/device.h>
0016 #include <linux/skbuff.h>
0017
0018 #define nfc_dbg(dev, fmt, ...) dev_dbg((dev), "NFC: " fmt, ##__VA_ARGS__)
0019 #define nfc_info(dev, fmt, ...) dev_info((dev), "NFC: " fmt, ##__VA_ARGS__)
0020 #define nfc_err(dev, fmt, ...) dev_err((dev), "NFC: " fmt, ##__VA_ARGS__)
0021
0022 struct nfc_phy_ops {
0023 int (*write)(void *dev_id, struct sk_buff *skb);
0024 int (*enable)(void *dev_id);
0025 void (*disable)(void *dev_id);
0026 };
0027
0028 struct nfc_dev;
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041 typedef void (*data_exchange_cb_t)(void *context, struct sk_buff *skb,
0042 int err);
0043
0044 typedef void (*se_io_cb_t)(void *context, u8 *apdu, size_t apdu_len, int err);
0045
0046 struct nfc_target;
0047
0048 struct nfc_ops {
0049 int (*dev_up)(struct nfc_dev *dev);
0050 int (*dev_down)(struct nfc_dev *dev);
0051 int (*start_poll)(struct nfc_dev *dev,
0052 u32 im_protocols, u32 tm_protocols);
0053 void (*stop_poll)(struct nfc_dev *dev);
0054 int (*dep_link_up)(struct nfc_dev *dev, struct nfc_target *target,
0055 u8 comm_mode, u8 *gb, size_t gb_len);
0056 int (*dep_link_down)(struct nfc_dev *dev);
0057 int (*activate_target)(struct nfc_dev *dev, struct nfc_target *target,
0058 u32 protocol);
0059 void (*deactivate_target)(struct nfc_dev *dev,
0060 struct nfc_target *target, u8 mode);
0061 int (*im_transceive)(struct nfc_dev *dev, struct nfc_target *target,
0062 struct sk_buff *skb, data_exchange_cb_t cb,
0063 void *cb_context);
0064 int (*tm_send)(struct nfc_dev *dev, struct sk_buff *skb);
0065 int (*check_presence)(struct nfc_dev *dev, struct nfc_target *target);
0066 int (*fw_download)(struct nfc_dev *dev, const char *firmware_name);
0067
0068
0069 int (*discover_se)(struct nfc_dev *dev);
0070 int (*enable_se)(struct nfc_dev *dev, u32 se_idx);
0071 int (*disable_se)(struct nfc_dev *dev, u32 se_idx);
0072 int (*se_io) (struct nfc_dev *dev, u32 se_idx,
0073 u8 *apdu, size_t apdu_length,
0074 se_io_cb_t cb, void *cb_context);
0075 };
0076
0077 #define NFC_TARGET_IDX_ANY -1
0078 #define NFC_MAX_GT_LEN 48
0079 #define NFC_ATR_RES_GT_OFFSET 15
0080 #define NFC_ATR_REQ_GT_OFFSET 14
0081
0082
0083
0084
0085
0086
0087
0088
0089
0090 struct nfc_target {
0091 u32 idx;
0092 u32 supported_protocols;
0093 u16 sens_res;
0094 u8 sel_res;
0095 u8 nfcid1_len;
0096 u8 nfcid1[NFC_NFCID1_MAXSIZE];
0097 u8 nfcid2_len;
0098 u8 nfcid2[NFC_NFCID2_MAXSIZE];
0099 u8 sensb_res_len;
0100 u8 sensb_res[NFC_SENSB_RES_MAXSIZE];
0101 u8 sensf_res_len;
0102 u8 sensf_res[NFC_SENSF_RES_MAXSIZE];
0103 u8 hci_reader_gate;
0104 u8 logical_idx;
0105 u8 is_iso15693;
0106 u8 iso15693_dsfid;
0107 u8 iso15693_uid[NFC_ISO15693_UID_MAXSIZE];
0108 };
0109
0110
0111
0112
0113
0114
0115
0116
0117
0118
0119
0120 struct nfc_se {
0121 struct list_head list;
0122 u32 idx;
0123 u16 type;
0124 u16 state;
0125 };
0126
0127
0128
0129
0130
0131
0132
0133
0134
0135
0136
0137
0138
0139 #define NFC_MIN_AID_LENGTH 5
0140 #define NFC_MAX_AID_LENGTH 16
0141 #define NFC_MAX_PARAMS_LENGTH 255
0142
0143 #define NFC_EVT_TRANSACTION_AID_TAG 0x81
0144 #define NFC_EVT_TRANSACTION_PARAMS_TAG 0x82
0145 struct nfc_evt_transaction {
0146 u32 aid_len;
0147 u8 aid[NFC_MAX_AID_LENGTH];
0148 u8 params_len;
0149 u8 params[];
0150 } __packed;
0151
0152 struct nfc_genl_data {
0153 u32 poll_req_portid;
0154 struct mutex genl_data_mutex;
0155 };
0156
0157 struct nfc_vendor_cmd {
0158 __u32 vendor_id;
0159 __u32 subcmd;
0160 int (*doit)(struct nfc_dev *dev, void *data, size_t data_len);
0161 };
0162
0163 struct nfc_dev {
0164 int idx;
0165 u32 target_next_idx;
0166 struct nfc_target *targets;
0167 int n_targets;
0168 int targets_generation;
0169 struct device dev;
0170 bool dev_up;
0171 bool fw_download_in_progress;
0172 u8 rf_mode;
0173 bool polling;
0174 struct nfc_target *active_target;
0175 bool dep_link_up;
0176 struct nfc_genl_data genl_data;
0177 u32 supported_protocols;
0178
0179 struct list_head secure_elements;
0180
0181 int tx_headroom;
0182 int tx_tailroom;
0183
0184 struct timer_list check_pres_timer;
0185 struct work_struct check_pres_work;
0186
0187 bool shutting_down;
0188
0189 struct rfkill *rfkill;
0190
0191 const struct nfc_vendor_cmd *vendor_cmds;
0192 int n_vendor_cmds;
0193
0194 const struct nfc_ops *ops;
0195 struct genl_info *cur_cmd_info;
0196 };
0197 #define to_nfc_dev(_dev) container_of(_dev, struct nfc_dev, dev)
0198
0199 extern struct class nfc_class;
0200
0201 struct nfc_dev *nfc_allocate_device(const struct nfc_ops *ops,
0202 u32 supported_protocols,
0203 int tx_headroom,
0204 int tx_tailroom);
0205
0206
0207
0208
0209
0210
0211 static inline void nfc_free_device(struct nfc_dev *dev)
0212 {
0213 put_device(&dev->dev);
0214 }
0215
0216 int nfc_register_device(struct nfc_dev *dev);
0217
0218 void nfc_unregister_device(struct nfc_dev *dev);
0219
0220
0221
0222
0223
0224
0225
0226 static inline void nfc_set_parent_dev(struct nfc_dev *nfc_dev,
0227 struct device *dev)
0228 {
0229 nfc_dev->dev.parent = dev;
0230 }
0231
0232
0233
0234
0235
0236
0237
0238 static inline void nfc_set_drvdata(struct nfc_dev *dev, void *data)
0239 {
0240 dev_set_drvdata(&dev->dev, data);
0241 }
0242
0243
0244
0245
0246
0247
0248 static inline void *nfc_get_drvdata(const struct nfc_dev *dev)
0249 {
0250 return dev_get_drvdata(&dev->dev);
0251 }
0252
0253
0254
0255
0256
0257
0258 static inline const char *nfc_device_name(const struct nfc_dev *dev)
0259 {
0260 return dev_name(&dev->dev);
0261 }
0262
0263 struct sk_buff *nfc_alloc_send_skb(struct nfc_dev *dev, struct sock *sk,
0264 unsigned int flags, unsigned int size,
0265 unsigned int *err);
0266 struct sk_buff *nfc_alloc_recv_skb(unsigned int size, gfp_t gfp);
0267
0268 int nfc_set_remote_general_bytes(struct nfc_dev *dev,
0269 const u8 *gt, u8 gt_len);
0270 u8 *nfc_get_local_general_bytes(struct nfc_dev *dev, size_t *gb_len);
0271
0272 int nfc_fw_download_done(struct nfc_dev *dev, const char *firmware_name,
0273 u32 result);
0274
0275 int nfc_targets_found(struct nfc_dev *dev,
0276 struct nfc_target *targets, int ntargets);
0277 int nfc_target_lost(struct nfc_dev *dev, u32 target_idx);
0278
0279 int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx,
0280 u8 comm_mode, u8 rf_mode);
0281
0282 int nfc_tm_activated(struct nfc_dev *dev, u32 protocol, u8 comm_mode,
0283 const u8 *gb, size_t gb_len);
0284 int nfc_tm_deactivated(struct nfc_dev *dev);
0285 int nfc_tm_data_received(struct nfc_dev *dev, struct sk_buff *skb);
0286
0287 void nfc_driver_failure(struct nfc_dev *dev, int err);
0288
0289 int nfc_se_transaction(struct nfc_dev *dev, u8 se_idx,
0290 struct nfc_evt_transaction *evt_transaction);
0291 int nfc_se_connectivity(struct nfc_dev *dev, u8 se_idx);
0292 int nfc_add_se(struct nfc_dev *dev, u32 se_idx, u16 type);
0293 int nfc_remove_se(struct nfc_dev *dev, u32 se_idx);
0294 struct nfc_se *nfc_find_se(struct nfc_dev *dev, u32 se_idx);
0295
0296 void nfc_send_to_raw_sock(struct nfc_dev *dev, struct sk_buff *skb,
0297 u8 payload_type, u8 direction);
0298
0299 static inline int nfc_set_vendor_cmds(struct nfc_dev *dev,
0300 const struct nfc_vendor_cmd *cmds,
0301 int n_cmds)
0302 {
0303 if (dev->vendor_cmds || dev->n_vendor_cmds)
0304 return -EINVAL;
0305
0306 dev->vendor_cmds = cmds;
0307 dev->n_vendor_cmds = n_cmds;
0308
0309 return 0;
0310 }
0311
0312 struct sk_buff *__nfc_alloc_vendor_cmd_reply_skb(struct nfc_dev *dev,
0313 enum nfc_attrs attr,
0314 u32 oui, u32 subcmd,
0315 int approxlen);
0316 int nfc_vendor_cmd_reply(struct sk_buff *skb);
0317
0318
0319
0320
0321
0322
0323
0324
0325
0326
0327
0328
0329
0330
0331
0332
0333
0334
0335
0336
0337
0338
0339
0340
0341
0342 static inline struct sk_buff *
0343 nfc_vendor_cmd_alloc_reply_skb(struct nfc_dev *dev,
0344 u32 oui, u32 subcmd, int approxlen)
0345 {
0346 return __nfc_alloc_vendor_cmd_reply_skb(dev,
0347 NFC_ATTR_VENDOR_DATA,
0348 oui,
0349 subcmd, approxlen);
0350 }
0351
0352 #endif