2019-03-12 05:10:42 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-01-15 02:35:22 +07:00
|
|
|
/*
|
2019-03-12 05:10:42 +07:00
|
|
|
* Copyright (C) 2013 Intel Corporation. All rights reserved.
|
2013-01-15 02:35:22 +07:00
|
|
|
*
|
2019-03-12 05:10:42 +07:00
|
|
|
* HCI based Driver for Inside Secure microread NFC Chip
|
2013-01-15 02:35:22 +07:00
|
|
|
*/
|
|
|
|
|
2013-04-06 02:27:39 +07:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2013-01-15 02:35:22 +07:00
|
|
|
#include <linux/module.h>
|
2013-04-15 16:19:20 +07:00
|
|
|
#include <linux/mod_devicetable.h>
|
2013-01-15 02:35:22 +07:00
|
|
|
#include <linux/nfc.h>
|
|
|
|
#include <net/nfc/hci.h>
|
|
|
|
#include <net/nfc/llc.h>
|
|
|
|
|
2013-04-15 16:19:20 +07:00
|
|
|
#include "../mei_phy.h"
|
2013-01-15 02:35:22 +07:00
|
|
|
#include "microread.h"
|
|
|
|
|
|
|
|
#define MICROREAD_DRIVER_NAME "microread"
|
|
|
|
|
2015-09-10 14:18:04 +07:00
|
|
|
static int microread_mei_probe(struct mei_cl_device *cldev,
|
2013-03-28 16:39:28 +07:00
|
|
|
const struct mei_cl_device_id *id)
|
2013-01-15 02:35:22 +07:00
|
|
|
{
|
2013-04-15 16:19:20 +07:00
|
|
|
struct nfc_mei_phy *phy;
|
2013-01-15 02:35:22 +07:00
|
|
|
int r;
|
|
|
|
|
|
|
|
pr_info("Probing NFC microread\n");
|
|
|
|
|
2015-09-10 14:18:04 +07:00
|
|
|
phy = nfc_mei_phy_alloc(cldev);
|
2013-01-15 02:35:22 +07:00
|
|
|
if (!phy) {
|
|
|
|
pr_err("Cannot allocate memory for microread mei phy.\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = microread_probe(phy, &mei_phy_ops, LLC_NOP_NAME,
|
|
|
|
MEI_NFC_HEADER_SIZE, 0, MEI_NFC_MAX_HCI_PAYLOAD,
|
|
|
|
&phy->hdev);
|
2013-05-01 04:48:50 +07:00
|
|
|
if (r < 0) {
|
|
|
|
nfc_mei_phy_free(phy);
|
2013-01-15 02:35:22 +07:00
|
|
|
|
2013-05-01 04:48:50 +07:00
|
|
|
return r;
|
|
|
|
}
|
2013-01-15 02:35:22 +07:00
|
|
|
|
2013-05-01 04:48:50 +07:00
|
|
|
return 0;
|
2013-01-15 02:35:22 +07:00
|
|
|
}
|
|
|
|
|
2015-09-10 14:18:04 +07:00
|
|
|
static int microread_mei_remove(struct mei_cl_device *cldev)
|
2013-01-15 02:35:22 +07:00
|
|
|
{
|
2015-09-10 14:18:05 +07:00
|
|
|
struct nfc_mei_phy *phy = mei_cldev_get_drvdata(cldev);
|
2013-01-15 02:35:22 +07:00
|
|
|
|
|
|
|
microread_remove(phy->hdev);
|
|
|
|
|
2013-04-15 16:19:20 +07:00
|
|
|
nfc_mei_phy_free(phy);
|
2013-01-15 02:35:22 +07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-28 16:39:28 +07:00
|
|
|
static struct mei_cl_device_id microread_mei_tbl[] = {
|
2015-09-10 14:18:01 +07:00
|
|
|
{ MICROREAD_DRIVER_NAME, MEI_NFC_UUID, MEI_CL_VERSION_ANY},
|
2013-02-11 16:30:04 +07:00
|
|
|
|
|
|
|
/* required last entry */
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(mei, microread_mei_tbl);
|
|
|
|
|
2013-03-28 16:39:28 +07:00
|
|
|
static struct mei_cl_driver microread_driver = {
|
2013-02-11 16:30:04 +07:00
|
|
|
.id_table = microread_mei_tbl,
|
|
|
|
.name = MICROREAD_DRIVER_NAME,
|
2013-01-15 02:35:22 +07:00
|
|
|
|
|
|
|
.probe = microread_mei_probe,
|
|
|
|
.remove = microread_mei_remove,
|
|
|
|
};
|
|
|
|
|
2016-10-19 20:33:29 +07:00
|
|
|
module_mei_cl_driver(microread_driver);
|
2013-01-15 02:35:22 +07:00
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_DESCRIPTION(DRIVER_DESC);
|