blob: 72fafec3d46058908ea841f2c89273c179b6d30d [file] [log] [blame]
Samuel Ortize0af11f2013-01-14 20:35:22 +01001/*
2 * HCI based Driver for Inside Secure microread NFC Chip
3 *
4 * Copyright (C) 2013 Intel Corporation. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the
17 * Free Software Foundation, Inc.,
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
Joe Perches17936b42013-04-05 12:27:39 -070021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Samuel Ortize0af11f2013-01-14 20:35:22 +010023#include <linux/module.h>
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020024#include <linux/mod_devicetable.h>
Samuel Ortize0af11f2013-01-14 20:35:22 +010025#include <linux/nfc.h>
26#include <net/nfc/hci.h>
27#include <net/nfc/llc.h>
28
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020029#include "../mei_phy.h"
Samuel Ortize0af11f2013-01-14 20:35:22 +010030#include "microread.h"
31
32#define MICROREAD_DRIVER_NAME "microread"
33
Samuel Ortiz9593b0b2013-03-28 10:39:28 +010034static int microread_mei_probe(struct mei_cl_device *device,
35 const struct mei_cl_device_id *id)
Samuel Ortize0af11f2013-01-14 20:35:22 +010036{
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020037 struct nfc_mei_phy *phy;
Samuel Ortize0af11f2013-01-14 20:35:22 +010038 int r;
39
40 pr_info("Probing NFC microread\n");
41
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020042 phy = nfc_mei_phy_alloc(device);
Samuel Ortize0af11f2013-01-14 20:35:22 +010043 if (!phy) {
44 pr_err("Cannot allocate memory for microread mei phy.\n");
45 return -ENOMEM;
46 }
47
Samuel Ortize0af11f2013-01-14 20:35:22 +010048 r = microread_probe(phy, &mei_phy_ops, LLC_NOP_NAME,
49 MEI_NFC_HEADER_SIZE, 0, MEI_NFC_MAX_HCI_PAYLOAD,
50 &phy->hdev);
Samuel Ortiz73f3adb2013-04-30 23:48:50 +020051 if (r < 0) {
52 nfc_mei_phy_free(phy);
53
54 return r;
55 }
Samuel Ortize0af11f2013-01-14 20:35:22 +010056
57 return 0;
Samuel Ortize0af11f2013-01-14 20:35:22 +010058}
59
Samuel Ortiz9593b0b2013-03-28 10:39:28 +010060static int microread_mei_remove(struct mei_cl_device *device)
Samuel Ortize0af11f2013-01-14 20:35:22 +010061{
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020062 struct nfc_mei_phy *phy = mei_cl_get_drvdata(device);
Samuel Ortize0af11f2013-01-14 20:35:22 +010063
Samuel Ortize0af11f2013-01-14 20:35:22 +010064 microread_remove(phy->hdev);
65
Eric Lapuyade4912e2f2013-04-15 11:19:20 +020066 nfc_mei_phy_free(phy);
Samuel Ortize0af11f2013-01-14 20:35:22 +010067
68 return 0;
69}
70
Samuel Ortiz9593b0b2013-03-28 10:39:28 +010071static struct mei_cl_device_id microread_mei_tbl[] = {
72 { MICROREAD_DRIVER_NAME },
Samuel Ortizcd48d8b2013-02-11 10:30:04 +010073
74 /* required last entry */
75 { }
76};
Samuel Ortizcd48d8b2013-02-11 10:30:04 +010077MODULE_DEVICE_TABLE(mei, microread_mei_tbl);
78
Samuel Ortiz9593b0b2013-03-28 10:39:28 +010079static struct mei_cl_driver microread_driver = {
Samuel Ortizcd48d8b2013-02-11 10:30:04 +010080 .id_table = microread_mei_tbl,
81 .name = MICROREAD_DRIVER_NAME,
Samuel Ortize0af11f2013-01-14 20:35:22 +010082
83 .probe = microread_mei_probe,
84 .remove = microread_mei_remove,
85};
86
87static int microread_mei_init(void)
88{
89 int r;
90
91 pr_debug(DRIVER_DESC ": %s\n", __func__);
92
Samuel Ortiz9593b0b2013-03-28 10:39:28 +010093 r = mei_cl_driver_register(&microread_driver);
Samuel Ortize0af11f2013-01-14 20:35:22 +010094 if (r) {
95 pr_err(MICROREAD_DRIVER_NAME ": driver registration failed\n");
96 return r;
97 }
98
99 return 0;
100}
101
102static void microread_mei_exit(void)
103{
Samuel Ortiz9593b0b2013-03-28 10:39:28 +0100104 mei_cl_driver_unregister(&microread_driver);
Samuel Ortize0af11f2013-01-14 20:35:22 +0100105}
106
107module_init(microread_mei_init);
108module_exit(microread_mei_exit);
109
110MODULE_LICENSE("GPL");
111MODULE_DESCRIPTION(DRIVER_DESC);