inet: frags: remove inet_frag_maybe_warn_overflow()
[linux-stable.git] / drivers / nfc / st-nci / i2c.c
blob515f08d037fb40c0656dd07808c67e6ffffc1f0e
1 /*
2 * I2C Link Layer for ST NCI NFC controller familly based Driver
3 * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved.
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.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <linux/module.h>
21 #include <linux/i2c.h>
22 #include <linux/gpio/consumer.h>
23 #include <linux/acpi.h>
24 #include <linux/interrupt.h>
25 #include <linux/delay.h>
26 #include <linux/nfc.h>
27 #include <linux/of.h>
29 #include "st-nci.h"
31 #define DRIVER_DESC "NCI NFC driver for ST_NCI"
33 /* ndlc header */
34 #define ST_NCI_FRAME_HEADROOM 1
35 #define ST_NCI_FRAME_TAILROOM 0
37 #define ST_NCI_I2C_MIN_SIZE 4 /* PCB(1) + NCI Packet header(3) */
38 #define ST_NCI_I2C_MAX_SIZE 250 /* req 4.2.1 */
40 #define ST_NCI_DRIVER_NAME "st_nci"
41 #define ST_NCI_I2C_DRIVER_NAME "st_nci_i2c"
43 struct st_nci_i2c_phy {
44 struct i2c_client *i2c_dev;
45 struct llt_ndlc *ndlc;
47 bool irq_active;
49 struct gpio_desc *gpiod_reset;
51 struct st_nci_se_status se_status;
54 static int st_nci_i2c_enable(void *phy_id)
56 struct st_nci_i2c_phy *phy = phy_id;
58 gpiod_set_value(phy->gpiod_reset, 0);
59 usleep_range(10000, 15000);
60 gpiod_set_value(phy->gpiod_reset, 1);
61 usleep_range(80000, 85000);
63 if (phy->ndlc->powered == 0 && phy->irq_active == 0) {
64 enable_irq(phy->i2c_dev->irq);
65 phy->irq_active = true;
68 return 0;
71 static void st_nci_i2c_disable(void *phy_id)
73 struct st_nci_i2c_phy *phy = phy_id;
75 disable_irq_nosync(phy->i2c_dev->irq);
76 phy->irq_active = false;
80 * Writing a frame must not return the number of written bytes.
81 * It must return either zero for success, or <0 for error.
82 * In addition, it must not alter the skb
84 static int st_nci_i2c_write(void *phy_id, struct sk_buff *skb)
86 int r = -1;
87 struct st_nci_i2c_phy *phy = phy_id;
88 struct i2c_client *client = phy->i2c_dev;
90 if (phy->ndlc->hard_fault != 0)
91 return phy->ndlc->hard_fault;
93 r = i2c_master_send(client, skb->data, skb->len);
94 if (r < 0) { /* Retry, chip was in standby */
95 usleep_range(1000, 4000);
96 r = i2c_master_send(client, skb->data, skb->len);
99 if (r >= 0) {
100 if (r != skb->len)
101 r = -EREMOTEIO;
102 else
103 r = 0;
106 return r;
110 * Reads an ndlc frame and returns it in a newly allocated sk_buff.
111 * returns:
112 * 0 : if received frame is complete
113 * -EREMOTEIO : i2c read error (fatal)
114 * -EBADMSG : frame was incorrect and discarded
115 * -ENOMEM : cannot allocate skb, frame dropped
117 static int st_nci_i2c_read(struct st_nci_i2c_phy *phy,
118 struct sk_buff **skb)
120 int r;
121 u8 len;
122 u8 buf[ST_NCI_I2C_MAX_SIZE];
123 struct i2c_client *client = phy->i2c_dev;
125 r = i2c_master_recv(client, buf, ST_NCI_I2C_MIN_SIZE);
126 if (r < 0) { /* Retry, chip was in standby */
127 usleep_range(1000, 4000);
128 r = i2c_master_recv(client, buf, ST_NCI_I2C_MIN_SIZE);
131 if (r != ST_NCI_I2C_MIN_SIZE)
132 return -EREMOTEIO;
134 len = be16_to_cpu(*(__be16 *) (buf + 2));
135 if (len > ST_NCI_I2C_MAX_SIZE) {
136 nfc_err(&client->dev, "invalid frame len\n");
137 return -EBADMSG;
140 *skb = alloc_skb(ST_NCI_I2C_MIN_SIZE + len, GFP_KERNEL);
141 if (*skb == NULL)
142 return -ENOMEM;
144 skb_reserve(*skb, ST_NCI_I2C_MIN_SIZE);
145 skb_put(*skb, ST_NCI_I2C_MIN_SIZE);
146 memcpy((*skb)->data, buf, ST_NCI_I2C_MIN_SIZE);
148 if (!len)
149 return 0;
151 r = i2c_master_recv(client, buf, len);
152 if (r != len) {
153 kfree_skb(*skb);
154 return -EREMOTEIO;
157 skb_put(*skb, len);
158 memcpy((*skb)->data + ST_NCI_I2C_MIN_SIZE, buf, len);
160 return 0;
164 * Reads an ndlc frame from the chip.
166 * On ST_NCI, IRQ goes in idle state when read starts.
168 static irqreturn_t st_nci_irq_thread_fn(int irq, void *phy_id)
170 struct st_nci_i2c_phy *phy = phy_id;
171 struct i2c_client *client;
172 struct sk_buff *skb = NULL;
173 int r;
175 if (!phy || !phy->ndlc || irq != phy->i2c_dev->irq) {
176 WARN_ON_ONCE(1);
177 return IRQ_NONE;
180 client = phy->i2c_dev;
181 dev_dbg(&client->dev, "IRQ\n");
183 if (phy->ndlc->hard_fault)
184 return IRQ_HANDLED;
186 if (!phy->ndlc->powered) {
187 st_nci_i2c_disable(phy);
188 return IRQ_HANDLED;
191 r = st_nci_i2c_read(phy, &skb);
192 if (r == -EREMOTEIO || r == -ENOMEM || r == -EBADMSG)
193 return IRQ_HANDLED;
195 ndlc_recv(phy->ndlc, skb);
197 return IRQ_HANDLED;
200 static struct nfc_phy_ops i2c_phy_ops = {
201 .write = st_nci_i2c_write,
202 .enable = st_nci_i2c_enable,
203 .disable = st_nci_i2c_disable,
206 static const struct acpi_gpio_params reset_gpios = { 1, 0, false };
208 static const struct acpi_gpio_mapping acpi_st_nci_gpios[] = {
209 { "reset-gpios", &reset_gpios, 1 },
213 static int st_nci_i2c_probe(struct i2c_client *client,
214 const struct i2c_device_id *id)
216 struct device *dev = &client->dev;
217 struct st_nci_i2c_phy *phy;
218 int r;
220 dev_dbg(&client->dev, "%s\n", __func__);
221 dev_dbg(&client->dev, "IRQ: %d\n", client->irq);
223 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
224 nfc_err(&client->dev, "Need I2C_FUNC_I2C\n");
225 return -ENODEV;
228 phy = devm_kzalloc(dev, sizeof(struct st_nci_i2c_phy), GFP_KERNEL);
229 if (!phy)
230 return -ENOMEM;
232 phy->i2c_dev = client;
234 i2c_set_clientdata(client, phy);
236 r = devm_acpi_dev_add_driver_gpios(dev, acpi_st_nci_gpios);
237 if (r)
238 dev_dbg(dev, "Unable to add GPIO mapping table\n");
240 /* Get RESET GPIO */
241 phy->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
242 if (IS_ERR(phy->gpiod_reset)) {
243 nfc_err(dev, "Unable to get RESET GPIO\n");
244 return -ENODEV;
247 phy->se_status.is_ese_present =
248 device_property_read_bool(dev, "ese-present");
249 phy->se_status.is_uicc_present =
250 device_property_read_bool(dev, "uicc-present");
252 r = ndlc_probe(phy, &i2c_phy_ops, &client->dev,
253 ST_NCI_FRAME_HEADROOM, ST_NCI_FRAME_TAILROOM,
254 &phy->ndlc, &phy->se_status);
255 if (r < 0) {
256 nfc_err(&client->dev, "Unable to register ndlc layer\n");
257 return r;
260 phy->irq_active = true;
261 r = devm_request_threaded_irq(&client->dev, client->irq, NULL,
262 st_nci_irq_thread_fn,
263 IRQF_ONESHOT,
264 ST_NCI_DRIVER_NAME, phy);
265 if (r < 0)
266 nfc_err(&client->dev, "Unable to register IRQ handler\n");
268 return r;
271 static int st_nci_i2c_remove(struct i2c_client *client)
273 struct st_nci_i2c_phy *phy = i2c_get_clientdata(client);
275 dev_dbg(&client->dev, "%s\n", __func__);
277 ndlc_remove(phy->ndlc);
279 return 0;
282 static struct i2c_device_id st_nci_i2c_id_table[] = {
283 {ST_NCI_DRIVER_NAME, 0},
286 MODULE_DEVICE_TABLE(i2c, st_nci_i2c_id_table);
288 static const struct acpi_device_id st_nci_i2c_acpi_match[] = {
289 {"SMO2101"},
290 {"SMO2102"},
293 MODULE_DEVICE_TABLE(acpi, st_nci_i2c_acpi_match);
295 static const struct of_device_id of_st_nci_i2c_match[] = {
296 { .compatible = "st,st21nfcb-i2c", },
297 { .compatible = "st,st21nfcb_i2c", },
298 { .compatible = "st,st21nfcc-i2c", },
301 MODULE_DEVICE_TABLE(of, of_st_nci_i2c_match);
303 static struct i2c_driver st_nci_i2c_driver = {
304 .driver = {
305 .name = ST_NCI_I2C_DRIVER_NAME,
306 .of_match_table = of_match_ptr(of_st_nci_i2c_match),
307 .acpi_match_table = ACPI_PTR(st_nci_i2c_acpi_match),
309 .probe = st_nci_i2c_probe,
310 .id_table = st_nci_i2c_id_table,
311 .remove = st_nci_i2c_remove,
313 module_i2c_driver(st_nci_i2c_driver);
315 MODULE_LICENSE("GPL");
316 MODULE_DESCRIPTION(DRIVER_DESC);