blob: 471188a0d2e058ea27f799545dd091a0ade433ad [file] [log] [blame]
Thierry Escande4b10884eb2013-09-19 17:55:25 +02001/*
2 * NFC Digital Protocol stack
3 * Copyright (c) 2013, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 */
15
16#include <linux/module.h>
17
18#include "digital.h"
19
20static int digital_start_poll(struct nfc_dev *nfc_dev, __u32 im_protocols,
21 __u32 tm_protocols)
22{
23 return -EOPNOTSUPP;
24}
25
26static void digital_stop_poll(struct nfc_dev *nfc_dev)
27{
28}
29
30static int digital_dev_up(struct nfc_dev *nfc_dev)
31{
32 return -EOPNOTSUPP;
33}
34
35static int digital_dev_down(struct nfc_dev *nfc_dev)
36{
37 return -EOPNOTSUPP;
38}
39
40static int digital_dep_link_up(struct nfc_dev *nfc_dev,
41 struct nfc_target *target,
42 __u8 comm_mode, __u8 *gb, size_t gb_len)
43{
44 return -EOPNOTSUPP;
45}
46
47static int digital_dep_link_down(struct nfc_dev *nfc_dev)
48{
49 return -EOPNOTSUPP;
50}
51
52static int digital_activate_target(struct nfc_dev *nfc_dev,
53 struct nfc_target *target, __u32 protocol)
54{
55 return -EOPNOTSUPP;
56}
57
58static void digital_deactivate_target(struct nfc_dev *nfc_dev,
59 struct nfc_target *target)
60{
61}
62
63static int digital_tg_send(struct nfc_dev *dev, struct sk_buff *skb)
64{
65 return -EOPNOTSUPP;
66}
67
68static int digital_in_send(struct nfc_dev *nfc_dev, struct nfc_target *target,
69 struct sk_buff *skb, data_exchange_cb_t cb,
70 void *cb_context)
71{
72 return -EOPNOTSUPP;
73}
74
75static struct nfc_ops digital_nfc_ops = {
76 .dev_up = digital_dev_up,
77 .dev_down = digital_dev_down,
78 .start_poll = digital_start_poll,
79 .stop_poll = digital_stop_poll,
80 .dep_link_up = digital_dep_link_up,
81 .dep_link_down = digital_dep_link_down,
82 .activate_target = digital_activate_target,
83 .deactivate_target = digital_deactivate_target,
84 .tm_send = digital_tg_send,
85 .im_transceive = digital_in_send,
86};
87
88struct nfc_digital_dev *nfc_digital_allocate_device(struct nfc_digital_ops *ops,
89 __u32 supported_protocols,
90 __u32 driver_capabilities,
91 int tx_headroom, int tx_tailroom)
92{
93 struct nfc_digital_dev *ddev;
94
95 if (!ops->in_configure_hw || !ops->in_send_cmd || !ops->tg_listen ||
96 !ops->tg_configure_hw || !ops->tg_send_cmd || !ops->abort_cmd ||
97 !ops->switch_rf)
98 return NULL;
99
100 ddev = kzalloc(sizeof(struct nfc_digital_dev), GFP_KERNEL);
101 if (!ddev) {
102 PR_ERR("kzalloc failed");
103 return NULL;
104 }
105
106 ddev->driver_capabilities = driver_capabilities;
107 ddev->ops = ops;
108
109 ddev->tx_headroom = tx_headroom;
110 ddev->tx_tailroom = tx_tailroom;
111
112 ddev->nfc_dev = nfc_allocate_device(&digital_nfc_ops, ddev->protocols,
113 ddev->tx_headroom,
114 ddev->tx_tailroom);
115 if (!ddev->nfc_dev) {
116 PR_ERR("nfc_allocate_device failed");
117 goto free_dev;
118 }
119
120 nfc_set_drvdata(ddev->nfc_dev, ddev);
121
122 return ddev;
123
124free_dev:
125 kfree(ddev);
126
127 return NULL;
128}
129EXPORT_SYMBOL(nfc_digital_allocate_device);
130
131void nfc_digital_free_device(struct nfc_digital_dev *ddev)
132{
133 nfc_free_device(ddev->nfc_dev);
134
135 kfree(ddev);
136}
137EXPORT_SYMBOL(nfc_digital_free_device);
138
139int nfc_digital_register_device(struct nfc_digital_dev *ddev)
140{
141 return nfc_register_device(ddev->nfc_dev);
142}
143EXPORT_SYMBOL(nfc_digital_register_device);
144
145void nfc_digital_unregister_device(struct nfc_digital_dev *ddev)
146{
147 nfc_unregister_device(ddev->nfc_dev);
148}
149EXPORT_SYMBOL(nfc_digital_unregister_device);
150
151MODULE_LICENSE("GPL");