blob: 51bd44f5f3b80d94c265314d1d77ada6c939bd96 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Eric Lapuyade4912e2f2013-04-15 11:19:20 +02002#ifndef __LOCAL_MEI_PHY_H_
3#define __LOCAL_MEI_PHY_H_
4
5#include <linux/mei_cl_bus.h>
6#include <net/nfc/hci.h>
Tomas Winklerc93b76b2015-05-07 15:54:02 +03007#include <linux/uuid.h>
Eric Lapuyade4912e2f2013-04-15 11:19:20 +02008
Greg Kroah-Hartmanb144ce22015-05-27 17:17:27 -07009#define MEI_NFC_UUID UUID_LE(0x0bb17a78, 0x2a8e, 0x4c50, \
Tomas Winklerc93b76b2015-05-07 15:54:02 +030010 0x94, 0xd4, 0x50, 0x26, 0x67, 0x23, 0x77, 0x5c)
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020011#define MEI_NFC_HEADER_SIZE 10
12#define MEI_NFC_MAX_HCI_PAYLOAD 300
13
Tomas Winklerbe9b7202015-05-07 15:54:04 +030014/**
15 * struct nfc_mei_phy
16 *
Tomas Winkler89391382015-09-10 10:18:04 +030017 * @cldev: mei client device
Tomas Winklerbe9b7202015-05-07 15:54:04 +030018 * @hdev: nfc hci device
19
20 * @send_wq: send completion wait queue
21 * @fw_ivn: NFC Interface Version Number
22 * @vendor_id: NFC manufacturer ID
23 * @radio_type: NFC radio type
24 * @reserved: reserved for alignment
25 * @req_id: message counter
26 * @recv_req_id: reception message counter
27 * @powered: the device is in powered state
28 * @hard_fault: < 0 if hardware error occurred
29 * and prevents normal operation.
30 */
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020031struct nfc_mei_phy {
Tomas Winkler89391382015-09-10 10:18:04 +030032 struct mei_cl_device *cldev;
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020033 struct nfc_hci_dev *hdev;
34
Tomas Winklerbe9b7202015-05-07 15:54:04 +030035 wait_queue_head_t send_wq;
36 u8 fw_ivn;
37 u8 vendor_id;
38 u8 radio_type;
39 u8 reserved;
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020040
Tomas Winklerbe9b7202015-05-07 15:54:04 +030041 u16 req_id;
42 u16 recv_req_id;
43
44 int powered;
45 int hard_fault;
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020046};
47
48extern struct nfc_phy_ops mei_phy_ops;
49
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020050struct nfc_mei_phy *nfc_mei_phy_alloc(struct mei_cl_device *device);
51void nfc_mei_phy_free(struct nfc_mei_phy *phy);
52
53#endif /* __LOCAL_MEI_PHY_H_ */