Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363208
b: refs/heads/master
c: 91a6b95
h: refs/heads/master
v: v3
  • Loading branch information
Samuel Ortiz authored and Greg Kroah-Hartman committed Apr 11, 2013
1 parent 3f1d238 commit 1604fd9
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 59fcd7c63abf0340f551f487264b67ff5f7a0b86
refs/heads/master: 91a6b95f20e338ef63e55422b1f037665fc6440a
75 changes: 75 additions & 0 deletions trunk/drivers/misc/mei/nfc.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ struct mei_nfc_dev {
u8 fw_ivn;
u8 vendor_id;
u8 radio_type;
char *bus_name;
};

static struct mei_nfc_dev nfc_dev;
Expand All @@ -115,6 +116,14 @@ static const uuid_le mei_nfc_info_guid = UUID_LE(0xd2de1625, 0x382d, 0x417d,
0x48, 0xa4, 0xef, 0xab,
0xba, 0x8a, 0x12, 0x06);

/* Vendors */
#define MEI_NFC_VENDOR_INSIDE 0x00
#define MEI_NFC_VENDOR_NXP 0x01

/* Radio types */
#define MEI_NFC_VENDOR_INSIDE_UREAD 0x00
#define MEI_NFC_VENDOR_NXP_PN544 0x01

static void mei_nfc_free(struct mei_nfc_dev *ndev)
{
if (ndev->cl) {
Expand All @@ -130,6 +139,51 @@ static void mei_nfc_free(struct mei_nfc_dev *ndev)
}
}

static int mei_nfc_build_bus_name(struct mei_nfc_dev *ndev)
{
struct mei_device *dev;

if (!ndev->cl)
return -ENODEV;

dev = ndev->cl->dev;

switch (ndev->vendor_id) {
case MEI_NFC_VENDOR_INSIDE:
switch (ndev->radio_type) {
case MEI_NFC_VENDOR_INSIDE_UREAD:
ndev->bus_name = "microread";
return 0;

default:
dev_err(&dev->pdev->dev, "Unknow radio type 0x%x\n",
ndev->radio_type);

return -EINVAL;
}

case MEI_NFC_VENDOR_NXP:
switch (ndev->radio_type) {
case MEI_NFC_VENDOR_NXP_PN544:
ndev->bus_name = "pn544";
return 0;
default:
dev_err(&dev->pdev->dev, "Unknow radio type 0x%x\n",
ndev->radio_type);

return -EINVAL;
}

default:
dev_err(&dev->pdev->dev, "Unknow vendor ID 0x%x\n",
ndev->vendor_id);

return -EINVAL;
}

return 0;
}

static int mei_nfc_if_version(struct mei_nfc_dev *ndev)
{
struct mei_device *dev;
Expand Down Expand Up @@ -184,6 +238,7 @@ static int mei_nfc_if_version(struct mei_nfc_dev *ndev)
static void mei_nfc_init(struct work_struct *work)
{
struct mei_device *dev;
struct mei_cl_device *cldev;
struct mei_nfc_dev *ndev;
struct mei_cl *cl_info;

Expand Down Expand Up @@ -226,6 +281,23 @@ static void mei_nfc_init(struct work_struct *work)

mutex_unlock(&dev->device_lock);

if (mei_nfc_build_bus_name(ndev) < 0) {
dev_err(&dev->pdev->dev,
"Could not build the bus ID name\n");
return;
}

cldev = mei_cl_add_device(dev, mei_nfc_guid, ndev->bus_name, NULL);
if (!cldev) {
dev_err(&dev->pdev->dev,
"Could not add the NFC device to the MEI bus\n");

goto err;
}

cldev->priv_data = ndev;


return;

err:
Expand Down Expand Up @@ -307,5 +379,8 @@ void mei_nfc_host_exit(void)
{
struct mei_nfc_dev *ndev = &nfc_dev;

if (ndev->cl && ndev->cl->device)
mei_cl_remove_device(ndev->cl->device);

mei_nfc_free(ndev);
}

0 comments on commit 1604fd9

Please sign in to comment.