2013-01-14 19:35:22 +00:00
|
|
|
/*
|
|
|
|
* HCI based Driver for Inside Secure microread NFC Chip
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2013-12-06 16:56:16 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2013-01-14 19:35:22 +00:00
|
|
|
*/
|
|
|
|
|
2013-04-05 19:27:39 +00:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2013-01-14 19:35:22 +00:00
|
|
|
#include <linux/module.h>
|
2013-04-15 09:19:20 +00:00
|
|
|
#include <linux/mod_devicetable.h>
|
2013-01-14 19:35:22 +00:00
|
|
|
#include <linux/nfc.h>
|
|
|
|
#include <net/nfc/hci.h>
|
|
|
|
#include <net/nfc/llc.h>
|
|
|
|
|
2013-04-15 09:19:20 +00:00
|
|
|
#include "../mei_phy.h"
|
2013-01-14 19:35:22 +00:00
|
|
|
#include "microread.h"
|
|
|
|
|
|
|
|
#define MICROREAD_DRIVER_NAME "microread"
|
|
|
|
|
2015-09-10 07:18:04 +00:00
|
|
|
static int microread_mei_probe(struct mei_cl_device *cldev,
|
2013-03-28 09:39:28 +00:00
|
|
|
const struct mei_cl_device_id *id)
|
2013-01-14 19:35:22 +00:00
|
|
|
{
|
2013-04-15 09:19:20 +00:00
|
|
|
struct nfc_mei_phy *phy;
|
2013-01-14 19:35:22 +00:00
|
|
|
int r;
|
|
|
|
|
|
|
|
pr_info("Probing NFC microread\n");
|
|
|
|
|
2015-09-10 07:18:04 +00:00
|
|
|
phy = nfc_mei_phy_alloc(cldev);
|
2013-01-14 19:35:22 +00: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-04-30 21:48:50 +00:00
|
|
|
if (r < 0) {
|
|
|
|
nfc_mei_phy_free(phy);
|
2013-01-14 19:35:22 +00:00
|
|
|
|
2013-04-30 21:48:50 +00:00
|
|
|
return r;
|
|
|
|
}
|
2013-01-14 19:35:22 +00:00
|
|
|
|
2013-04-30 21:48:50 +00:00
|
|
|
return 0;
|
2013-01-14 19:35:22 +00:00
|
|
|
}
|
|
|
|
|
2015-09-10 07:18:04 +00:00
|
|
|
static int microread_mei_remove(struct mei_cl_device *cldev)
|
2013-01-14 19:35:22 +00:00
|
|
|
{
|
2015-09-10 07:18:05 +00:00
|
|
|
struct nfc_mei_phy *phy = mei_cldev_get_drvdata(cldev);
|
2013-01-14 19:35:22 +00:00
|
|
|
|
|
|
|
microread_remove(phy->hdev);
|
|
|
|
|
2013-04-15 09:19:20 +00:00
|
|
|
nfc_mei_phy_free(phy);
|
2013-01-14 19:35:22 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-28 09:39:28 +00:00
|
|
|
static struct mei_cl_device_id microread_mei_tbl[] = {
|
2015-09-10 07:18:01 +00:00
|
|
|
{ MICROREAD_DRIVER_NAME, MEI_NFC_UUID, MEI_CL_VERSION_ANY},
|
2013-02-11 09:30:04 +00:00
|
|
|
|
|
|
|
/* required last entry */
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(mei, microread_mei_tbl);
|
|
|
|
|
2013-03-28 09:39:28 +00:00
|
|
|
static struct mei_cl_driver microread_driver = {
|
2013-02-11 09:30:04 +00:00
|
|
|
.id_table = microread_mei_tbl,
|
|
|
|
.name = MICROREAD_DRIVER_NAME,
|
2013-01-14 19:35:22 +00:00
|
|
|
|
|
|
|
.probe = microread_mei_probe,
|
|
|
|
.remove = microread_mei_remove,
|
|
|
|
};
|
|
|
|
|
2016-10-19 13:33:29 +00:00
|
|
|
module_mei_cl_driver(microread_driver);
|
2013-01-14 19:35:22 +00:00
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_DESCRIPTION(DRIVER_DESC);
|