Revert "ahci: added support for Freescale AHCI sata"
[linux-2.6/btrfs-unstable.git] / drivers / nfc / st-nci / spi.c
blob598a58c4d6d1349632ed5b306d33d5163780a6cb
1 /*
2 * SPI Link Layer for ST NCI 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/spi/spi.h>
22 #include <linux/gpio.h>
23 #include <linux/of_irq.h>
24 #include <linux/of_gpio.h>
25 #include <linux/interrupt.h>
26 #include <linux/delay.h>
27 #include <linux/nfc.h>
28 #include <linux/platform_data/st-nci.h>
30 #include "ndlc.h"
32 #define DRIVER_DESC "NCI NFC driver for ST_NCI"
34 /* ndlc header */
35 #define ST_NCI_FRAME_HEADROOM 1
36 #define ST_NCI_FRAME_TAILROOM 0
38 #define ST_NCI_SPI_MIN_SIZE 4 /* PCB(1) + NCI Packet header(3) */
39 #define ST_NCI_SPI_MAX_SIZE 250 /* req 4.2.1 */
41 #define ST_NCI_SPI_DRIVER_NAME "st_nci_spi"
43 static struct spi_device_id st_nci_spi_id_table[] = {
44 {ST_NCI_SPI_DRIVER_NAME, 0},
47 MODULE_DEVICE_TABLE(spi, st_nci_spi_id_table);
49 struct st_nci_spi_phy {
50 struct spi_device *spi_dev;
51 struct llt_ndlc *ndlc;
53 unsigned int gpio_reset;
54 unsigned int irq_polarity;
57 #define SPI_DUMP_SKB(info, skb) \
58 do { \
59 pr_debug("%s:\n", info); \
60 print_hex_dump(KERN_DEBUG, "spi: ", DUMP_PREFIX_OFFSET, \
61 16, 1, (skb)->data, (skb)->len, 0); \
62 } while (0)
64 static int st_nci_spi_enable(void *phy_id)
66 struct st_nci_spi_phy *phy = phy_id;
68 gpio_set_value(phy->gpio_reset, 0);
69 usleep_range(10000, 15000);
70 gpio_set_value(phy->gpio_reset, 1);
71 usleep_range(80000, 85000);
73 if (phy->ndlc->powered == 0)
74 enable_irq(phy->spi_dev->irq);
76 return 0;
79 static void st_nci_spi_disable(void *phy_id)
81 struct st_nci_spi_phy *phy = phy_id;
83 disable_irq_nosync(phy->spi_dev->irq);
87 * Writing a frame must not return the number of written bytes.
88 * It must return either zero for success, or <0 for error.
89 * In addition, it must not alter the skb
91 static int st_nci_spi_write(void *phy_id, struct sk_buff *skb)
93 int r;
94 struct st_nci_spi_phy *phy = phy_id;
95 struct spi_device *dev = phy->spi_dev;
96 struct sk_buff *skb_rx;
97 u8 buf[ST_NCI_SPI_MAX_SIZE];
98 struct spi_transfer spi_xfer = {
99 .tx_buf = skb->data,
100 .rx_buf = buf,
101 .len = skb->len,
104 SPI_DUMP_SKB("st_nci_spi_write", skb);
106 if (phy->ndlc->hard_fault != 0)
107 return phy->ndlc->hard_fault;
109 r = spi_sync_transfer(dev, &spi_xfer, 1);
111 * We may have received some valuable data on miso line.
112 * Send them back in the ndlc state machine.
114 if (!r) {
115 skb_rx = alloc_skb(skb->len, GFP_KERNEL);
116 if (!skb_rx) {
117 r = -ENOMEM;
118 goto exit;
121 skb_put(skb_rx, skb->len);
122 memcpy(skb_rx->data, buf, skb->len);
123 ndlc_recv(phy->ndlc, skb_rx);
126 exit:
127 return r;
131 * Reads an ndlc frame and returns it in a newly allocated sk_buff.
132 * returns:
133 * 0 : if received frame is complete
134 * -EREMOTEIO : i2c read error (fatal)
135 * -EBADMSG : frame was incorrect and discarded
136 * -ENOMEM : cannot allocate skb, frame dropped
138 static int st_nci_spi_read(struct st_nci_spi_phy *phy,
139 struct sk_buff **skb)
141 int r;
142 u8 len;
143 u8 buf[ST_NCI_SPI_MAX_SIZE];
144 struct spi_device *dev = phy->spi_dev;
145 struct spi_transfer spi_xfer = {
146 .rx_buf = buf,
147 .len = ST_NCI_SPI_MIN_SIZE,
150 r = spi_sync_transfer(dev, &spi_xfer, 1);
151 if (r < 0)
152 return -EREMOTEIO;
154 len = be16_to_cpu(*(__be16 *) (buf + 2));
155 if (len > ST_NCI_SPI_MAX_SIZE) {
156 nfc_err(&dev->dev, "invalid frame len\n");
157 phy->ndlc->hard_fault = 1;
158 return -EBADMSG;
161 *skb = alloc_skb(ST_NCI_SPI_MIN_SIZE + len, GFP_KERNEL);
162 if (*skb == NULL)
163 return -ENOMEM;
165 skb_reserve(*skb, ST_NCI_SPI_MIN_SIZE);
166 skb_put(*skb, ST_NCI_SPI_MIN_SIZE);
167 memcpy((*skb)->data, buf, ST_NCI_SPI_MIN_SIZE);
169 if (!len)
170 return 0;
172 spi_xfer.len = len;
173 r = spi_sync_transfer(dev, &spi_xfer, 1);
174 if (r < 0) {
175 kfree_skb(*skb);
176 return -EREMOTEIO;
179 skb_put(*skb, len);
180 memcpy((*skb)->data + ST_NCI_SPI_MIN_SIZE, buf, len);
182 SPI_DUMP_SKB("spi frame read", *skb);
184 return 0;
188 * Reads an ndlc frame from the chip.
190 * On ST21NFCB, IRQ goes in idle state when read starts.
192 static irqreturn_t st_nci_irq_thread_fn(int irq, void *phy_id)
194 struct st_nci_spi_phy *phy = phy_id;
195 struct spi_device *dev;
196 struct sk_buff *skb = NULL;
197 int r;
199 if (!phy || !phy->ndlc || irq != phy->spi_dev->irq) {
200 WARN_ON_ONCE(1);
201 return IRQ_NONE;
204 dev = phy->spi_dev;
205 dev_dbg(&dev->dev, "IRQ\n");
207 if (phy->ndlc->hard_fault)
208 return IRQ_HANDLED;
210 if (!phy->ndlc->powered) {
211 st_nci_spi_disable(phy);
212 return IRQ_HANDLED;
215 r = st_nci_spi_read(phy, &skb);
216 if (r == -EREMOTEIO || r == -ENOMEM || r == -EBADMSG)
217 return IRQ_HANDLED;
219 ndlc_recv(phy->ndlc, skb);
221 return IRQ_HANDLED;
224 static struct nfc_phy_ops spi_phy_ops = {
225 .write = st_nci_spi_write,
226 .enable = st_nci_spi_enable,
227 .disable = st_nci_spi_disable,
230 #ifdef CONFIG_OF
231 static int st_nci_spi_of_request_resources(struct spi_device *dev)
233 struct st_nci_spi_phy *phy = spi_get_drvdata(dev);
234 struct device_node *pp;
235 int gpio;
236 int r;
238 pp = dev->dev.of_node;
239 if (!pp)
240 return -ENODEV;
242 /* Get GPIO from device tree */
243 gpio = of_get_named_gpio(pp, "reset-gpios", 0);
244 if (gpio < 0) {
245 nfc_err(&dev->dev,
246 "Failed to retrieve reset-gpios from device tree\n");
247 return gpio;
250 /* GPIO request and configuration */
251 r = devm_gpio_request_one(&dev->dev, gpio,
252 GPIOF_OUT_INIT_HIGH, "clf_reset");
253 if (r) {
254 nfc_err(&dev->dev, "Failed to request reset pin\n");
255 return r;
257 phy->gpio_reset = gpio;
259 phy->irq_polarity = irq_get_trigger_type(dev->irq);
261 return 0;
263 #else
264 static int st_nci_spi_of_request_resources(struct spi_device *dev)
266 return -ENODEV;
268 #endif
270 static int st_nci_spi_request_resources(struct spi_device *dev)
272 struct st_nci_nfc_platform_data *pdata;
273 struct st_nci_spi_phy *phy = spi_get_drvdata(dev);
274 int r;
276 pdata = dev->dev.platform_data;
277 if (pdata == NULL) {
278 nfc_err(&dev->dev, "No platform data\n");
279 return -EINVAL;
282 /* store for later use */
283 phy->gpio_reset = pdata->gpio_reset;
284 phy->irq_polarity = pdata->irq_polarity;
286 r = devm_gpio_request_one(&dev->dev,
287 phy->gpio_reset, GPIOF_OUT_INIT_HIGH, "clf_reset");
288 if (r) {
289 pr_err("%s : reset gpio_request failed\n", __FILE__);
290 return r;
293 return 0;
296 static int st_nci_spi_probe(struct spi_device *dev)
298 struct st_nci_spi_phy *phy;
299 struct st_nci_nfc_platform_data *pdata;
300 int r;
302 dev_dbg(&dev->dev, "%s\n", __func__);
303 dev_dbg(&dev->dev, "IRQ: %d\n", dev->irq);
305 /* Check SPI platform functionnalities */
306 if (!dev) {
307 pr_debug("%s: dev is NULL. Device is not accessible.\n",
308 __func__);
309 return -ENODEV;
312 phy = devm_kzalloc(&dev->dev, sizeof(struct st_nci_spi_phy),
313 GFP_KERNEL);
314 if (!phy)
315 return -ENOMEM;
317 phy->spi_dev = dev;
319 spi_set_drvdata(dev, phy);
321 pdata = dev->dev.platform_data;
322 if (!pdata && dev->dev.of_node) {
323 r = st_nci_spi_of_request_resources(dev);
324 if (r) {
325 nfc_err(&dev->dev, "No platform data\n");
326 return r;
328 } else if (pdata) {
329 r = st_nci_spi_request_resources(dev);
330 if (r) {
331 nfc_err(&dev->dev,
332 "Cannot get platform resources\n");
333 return r;
335 } else {
336 nfc_err(&dev->dev,
337 "st_nci platform resources not available\n");
338 return -ENODEV;
341 r = ndlc_probe(phy, &spi_phy_ops, &dev->dev,
342 ST_NCI_FRAME_HEADROOM, ST_NCI_FRAME_TAILROOM,
343 &phy->ndlc);
344 if (r < 0) {
345 nfc_err(&dev->dev, "Unable to register ndlc layer\n");
346 return r;
349 r = devm_request_threaded_irq(&dev->dev, dev->irq, NULL,
350 st_nci_irq_thread_fn,
351 phy->irq_polarity | IRQF_ONESHOT,
352 ST_NCI_SPI_DRIVER_NAME, phy);
353 if (r < 0)
354 nfc_err(&dev->dev, "Unable to register IRQ handler\n");
356 return r;
359 static int st_nci_spi_remove(struct spi_device *dev)
361 struct st_nci_spi_phy *phy = spi_get_drvdata(dev);
363 dev_dbg(&dev->dev, "%s\n", __func__);
365 ndlc_remove(phy->ndlc);
367 return 0;
370 #ifdef CONFIG_OF
371 static const struct of_device_id of_st_nci_spi_match[] = {
372 { .compatible = "st,st21nfcb-spi", },
375 MODULE_DEVICE_TABLE(of, of_st_nci_spi_match);
376 #endif
378 static struct spi_driver st_nci_spi_driver = {
379 .driver = {
380 .owner = THIS_MODULE,
381 .name = ST_NCI_SPI_DRIVER_NAME,
382 .of_match_table = of_match_ptr(of_st_nci_spi_match),
384 .probe = st_nci_spi_probe,
385 .id_table = st_nci_spi_id_table,
386 .remove = st_nci_spi_remove,
389 module_spi_driver(st_nci_spi_driver);
391 MODULE_LICENSE("GPL");
392 MODULE_DESCRIPTION(DRIVER_DESC);