1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/platform_device.h>
24#include <linux/gpio.h>
25#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/of_gpio.h>
28
29#include <linux/spi/spi.h>
30#include <linux/spi/spi_bitbang.h>
31#include <linux/spi/spi_gpio.h>
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48struct spi_gpio {
49 struct spi_bitbang bitbang;
50 struct spi_gpio_platform_data pdata;
51 struct platform_device *pdev;
52 int cs_gpios[0];
53};
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80#ifndef DRIVER_NAME
81#define DRIVER_NAME "spi_gpio"
82
83#define GENERIC_BITBANG
84
85
86#define SPI_MISO_GPIO ((pdata)->miso)
87#define SPI_MOSI_GPIO ((pdata)->mosi)
88#define SPI_SCK_GPIO ((pdata)->sck)
89
90#define SPI_N_CHIPSEL ((pdata)->num_chipselect)
91
92#endif
93
94
95
96static inline struct spi_gpio * __pure
97spi_to_spi_gpio(const struct spi_device *spi)
98{
99 const struct spi_bitbang *bang;
100 struct spi_gpio *spi_gpio;
101
102 bang = spi_master_get_devdata(spi->master);
103 spi_gpio = container_of(bang, struct spi_gpio, bitbang);
104 return spi_gpio;
105}
106
107static inline struct spi_gpio_platform_data * __pure
108spi_to_pdata(const struct spi_device *spi)
109{
110 return &spi_to_spi_gpio(spi)->pdata;
111}
112
113
114#define pdata spi_to_pdata(spi)
115
116static inline void setsck(const struct spi_device *spi, int is_on)
117{
118 gpio_set_value_cansleep(SPI_SCK_GPIO, is_on);
119}
120
121static inline void setmosi(const struct spi_device *spi, int is_on)
122{
123 gpio_set_value_cansleep(SPI_MOSI_GPIO, is_on);
124}
125
126static inline int getmiso(const struct spi_device *spi)
127{
128 return !!gpio_get_value_cansleep(SPI_MISO_GPIO);
129}
130
131#undef pdata
132
133
134
135
136
137
138
139#define spidelay(nsecs) do {} while (0)
140
141#include "spi-bitbang-txrx.h"
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157static u32 spi_gpio_txrx_word_mode0(struct spi_device *spi,
158 unsigned nsecs, u32 word, u8 bits)
159{
160 return bitbang_txrx_be_cpha0(spi, nsecs, 0, 0, word, bits);
161}
162
163static u32 spi_gpio_txrx_word_mode1(struct spi_device *spi,
164 unsigned nsecs, u32 word, u8 bits)
165{
166 return bitbang_txrx_be_cpha1(spi, nsecs, 0, 0, word, bits);
167}
168
169static u32 spi_gpio_txrx_word_mode2(struct spi_device *spi,
170 unsigned nsecs, u32 word, u8 bits)
171{
172 return bitbang_txrx_be_cpha0(spi, nsecs, 1, 0, word, bits);
173}
174
175static u32 spi_gpio_txrx_word_mode3(struct spi_device *spi,
176 unsigned nsecs, u32 word, u8 bits)
177{
178 return bitbang_txrx_be_cpha1(spi, nsecs, 1, 0, word, bits);
179}
180
181
182
183
184
185
186
187
188
189
190
191static u32 spi_gpio_spec_txrx_word_mode0(struct spi_device *spi,
192 unsigned nsecs, u32 word, u8 bits)
193{
194 unsigned flags = spi->master->flags;
195 return bitbang_txrx_be_cpha0(spi, nsecs, 0, flags, word, bits);
196}
197
198static u32 spi_gpio_spec_txrx_word_mode1(struct spi_device *spi,
199 unsigned nsecs, u32 word, u8 bits)
200{
201 unsigned flags = spi->master->flags;
202 return bitbang_txrx_be_cpha1(spi, nsecs, 0, flags, word, bits);
203}
204
205static u32 spi_gpio_spec_txrx_word_mode2(struct spi_device *spi,
206 unsigned nsecs, u32 word, u8 bits)
207{
208 unsigned flags = spi->master->flags;
209 return bitbang_txrx_be_cpha0(spi, nsecs, 1, flags, word, bits);
210}
211
212static u32 spi_gpio_spec_txrx_word_mode3(struct spi_device *spi,
213 unsigned nsecs, u32 word, u8 bits)
214{
215 unsigned flags = spi->master->flags;
216 return bitbang_txrx_be_cpha1(spi, nsecs, 1, flags, word, bits);
217}
218
219
220
221static void spi_gpio_chipselect(struct spi_device *spi, int is_active)
222{
223 struct spi_gpio *spi_gpio = spi_to_spi_gpio(spi);
224 unsigned int cs = spi_gpio->cs_gpios[spi->chip_select];
225
226
227 if (is_active)
228 setsck(spi, spi->mode & SPI_CPOL);
229
230 if (cs != SPI_GPIO_NO_CHIPSELECT) {
231
232 gpio_set_value_cansleep(cs, (spi->mode & SPI_CS_HIGH) ? is_active : !is_active);
233 }
234}
235
236static int spi_gpio_setup(struct spi_device *spi)
237{
238 unsigned int cs;
239 int status = 0;
240 struct spi_gpio *spi_gpio = spi_to_spi_gpio(spi);
241 struct device_node *np = spi->master->dev.of_node;
242
243 if (np) {
244
245
246
247
248 cs = spi_gpio->cs_gpios[spi->chip_select];
249 } else {
250
251
252
253 cs = (unsigned int) spi->controller_data;
254 }
255
256 if (!spi->controller_state) {
257 if (cs != SPI_GPIO_NO_CHIPSELECT) {
258 status = gpio_request(cs, dev_name(&spi->dev));
259 if (status)
260 return status;
261 status = gpio_direction_output(cs,
262 !(spi->mode & SPI_CS_HIGH));
263 }
264 }
265 if (!status) {
266
267 spi_gpio->cs_gpios[spi->chip_select] = cs;
268 status = spi_bitbang_setup(spi);
269 }
270
271 if (status) {
272 if (!spi->controller_state && cs != SPI_GPIO_NO_CHIPSELECT)
273 gpio_free(cs);
274 }
275 return status;
276}
277
278static void spi_gpio_cleanup(struct spi_device *spi)
279{
280 struct spi_gpio *spi_gpio = spi_to_spi_gpio(spi);
281 unsigned int cs = spi_gpio->cs_gpios[spi->chip_select];
282
283 if (cs != SPI_GPIO_NO_CHIPSELECT)
284 gpio_free(cs);
285 spi_bitbang_cleanup(spi);
286}
287
288static int spi_gpio_alloc(unsigned pin, const char *label, bool is_in)
289{
290 int value;
291
292 value = gpio_request(pin, label);
293 if (value == 0) {
294 if (is_in)
295 value = gpio_direction_input(pin);
296 else
297 value = gpio_direction_output(pin, 0);
298 }
299 return value;
300}
301
302static int spi_gpio_request(struct spi_gpio_platform_data *pdata,
303 const char *label, u16 *res_flags)
304{
305 int value;
306
307
308
309 if (SPI_MOSI_GPIO != SPI_GPIO_NO_MOSI) {
310 value = spi_gpio_alloc(SPI_MOSI_GPIO, label, false);
311 if (value)
312 goto done;
313 } else {
314
315 *res_flags |= SPI_MASTER_NO_TX;
316 }
317
318 if (SPI_MISO_GPIO != SPI_GPIO_NO_MISO) {
319 value = spi_gpio_alloc(SPI_MISO_GPIO, label, true);
320 if (value)
321 goto free_mosi;
322 } else {
323
324 *res_flags |= SPI_MASTER_NO_RX;
325 }
326
327 value = spi_gpio_alloc(SPI_SCK_GPIO, label, false);
328 if (value)
329 goto free_miso;
330
331 goto done;
332
333free_miso:
334 if (SPI_MISO_GPIO != SPI_GPIO_NO_MISO)
335 gpio_free(SPI_MISO_GPIO);
336free_mosi:
337 if (SPI_MOSI_GPIO != SPI_GPIO_NO_MOSI)
338 gpio_free(SPI_MOSI_GPIO);
339done:
340 return value;
341}
342
343#ifdef CONFIG_OF
344static struct of_device_id spi_gpio_dt_ids[] = {
345 { .compatible = "spi-gpio" },
346 {}
347};
348MODULE_DEVICE_TABLE(of, spi_gpio_dt_ids);
349
350static int spi_gpio_probe_dt(struct platform_device *pdev)
351{
352 int ret;
353 u32 tmp;
354 struct spi_gpio_platform_data *pdata;
355 struct device_node *np = pdev->dev.of_node;
356 const struct of_device_id *of_id =
357 of_match_device(spi_gpio_dt_ids, &pdev->dev);
358
359 if (!of_id)
360 return 0;
361
362 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
363 if (!pdata)
364 return -ENOMEM;
365
366 ret = of_get_named_gpio(np, "gpio-sck", 0);
367 if (ret < 0) {
368 dev_err(&pdev->dev, "gpio-sck property not found\n");
369 goto error_free;
370 }
371 pdata->sck = ret;
372
373 ret = of_get_named_gpio(np, "gpio-miso", 0);
374 if (ret < 0) {
375 dev_info(&pdev->dev, "gpio-miso property not found, switching to no-rx mode\n");
376 pdata->miso = SPI_GPIO_NO_MISO;
377 } else
378 pdata->miso = ret;
379
380 ret = of_get_named_gpio(np, "gpio-mosi", 0);
381 if (ret < 0) {
382 dev_info(&pdev->dev, "gpio-mosi property not found, switching to no-tx mode\n");
383 pdata->mosi = SPI_GPIO_NO_MOSI;
384 } else
385 pdata->mosi = ret;
386
387 ret = of_property_read_u32(np, "num-chipselects", &tmp);
388 if (ret < 0) {
389 dev_err(&pdev->dev, "num-chipselects property not found\n");
390 goto error_free;
391 }
392
393 pdata->num_chipselect = tmp;
394 pdev->dev.platform_data = pdata;
395
396 return 1;
397
398error_free:
399 devm_kfree(&pdev->dev, pdata);
400 return ret;
401}
402#else
403static inline int spi_gpio_probe_dt(struct platform_device *pdev)
404{
405 return 0;
406}
407#endif
408
409static int spi_gpio_probe(struct platform_device *pdev)
410{
411 int status;
412 struct spi_master *master;
413 struct spi_gpio *spi_gpio;
414 struct spi_gpio_platform_data *pdata;
415 u16 master_flags = 0;
416 bool use_of = 0;
417
418 status = spi_gpio_probe_dt(pdev);
419 if (status < 0)
420 return status;
421 if (status > 0)
422 use_of = 1;
423
424 pdata = dev_get_platdata(&pdev->dev);
425#ifdef GENERIC_BITBANG
426 if (!pdata || !pdata->num_chipselect)
427 return -ENODEV;
428#endif
429
430 status = spi_gpio_request(pdata, dev_name(&pdev->dev), &master_flags);
431 if (status < 0)
432 return status;
433
434 master = spi_alloc_master(&pdev->dev, sizeof(*spi_gpio) +
435 (sizeof(int) * SPI_N_CHIPSEL));
436 if (!master) {
437 status = -ENOMEM;
438 goto gpio_free;
439 }
440 spi_gpio = spi_master_get_devdata(master);
441 platform_set_drvdata(pdev, spi_gpio);
442
443 spi_gpio->pdev = pdev;
444 if (pdata)
445 spi_gpio->pdata = *pdata;
446
447 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32);
448 master->flags = master_flags;
449 master->bus_num = pdev->id;
450 master->num_chipselect = SPI_N_CHIPSEL;
451 master->setup = spi_gpio_setup;
452 master->cleanup = spi_gpio_cleanup;
453#ifdef CONFIG_OF
454 master->dev.of_node = pdev->dev.of_node;
455
456 if (use_of) {
457 int i;
458 struct device_node *np = pdev->dev.of_node;
459
460
461
462
463
464
465 for (i = 0; i < SPI_N_CHIPSEL; i++)
466 spi_gpio->cs_gpios[i] =
467 of_get_named_gpio(np, "cs-gpios", i);
468 }
469#endif
470
471 spi_gpio->bitbang.master = master;
472 spi_gpio->bitbang.chipselect = spi_gpio_chipselect;
473
474 if ((master_flags & (SPI_MASTER_NO_TX | SPI_MASTER_NO_RX)) == 0) {
475 spi_gpio->bitbang.txrx_word[SPI_MODE_0] = spi_gpio_txrx_word_mode0;
476 spi_gpio->bitbang.txrx_word[SPI_MODE_1] = spi_gpio_txrx_word_mode1;
477 spi_gpio->bitbang.txrx_word[SPI_MODE_2] = spi_gpio_txrx_word_mode2;
478 spi_gpio->bitbang.txrx_word[SPI_MODE_3] = spi_gpio_txrx_word_mode3;
479 } else {
480 spi_gpio->bitbang.txrx_word[SPI_MODE_0] = spi_gpio_spec_txrx_word_mode0;
481 spi_gpio->bitbang.txrx_word[SPI_MODE_1] = spi_gpio_spec_txrx_word_mode1;
482 spi_gpio->bitbang.txrx_word[SPI_MODE_2] = spi_gpio_spec_txrx_word_mode2;
483 spi_gpio->bitbang.txrx_word[SPI_MODE_3] = spi_gpio_spec_txrx_word_mode3;
484 }
485 spi_gpio->bitbang.setup_transfer = spi_bitbang_setup_transfer;
486 spi_gpio->bitbang.flags = SPI_CS_HIGH;
487
488 status = spi_bitbang_start(&spi_gpio->bitbang);
489 if (status < 0) {
490gpio_free:
491 if (SPI_MISO_GPIO != SPI_GPIO_NO_MISO)
492 gpio_free(SPI_MISO_GPIO);
493 if (SPI_MOSI_GPIO != SPI_GPIO_NO_MOSI)
494 gpio_free(SPI_MOSI_GPIO);
495 gpio_free(SPI_SCK_GPIO);
496 spi_master_put(master);
497 }
498
499 return status;
500}
501
502static int spi_gpio_remove(struct platform_device *pdev)
503{
504 struct spi_gpio *spi_gpio;
505 struct spi_gpio_platform_data *pdata;
506 int status;
507
508 spi_gpio = platform_get_drvdata(pdev);
509 pdata = dev_get_platdata(&pdev->dev);
510
511
512 status = spi_bitbang_stop(&spi_gpio->bitbang);
513
514 if (SPI_MISO_GPIO != SPI_GPIO_NO_MISO)
515 gpio_free(SPI_MISO_GPIO);
516 if (SPI_MOSI_GPIO != SPI_GPIO_NO_MOSI)
517 gpio_free(SPI_MOSI_GPIO);
518 gpio_free(SPI_SCK_GPIO);
519 spi_master_put(spi_gpio->bitbang.master);
520
521 return status;
522}
523
524MODULE_ALIAS("platform:" DRIVER_NAME);
525
526static struct platform_driver spi_gpio_driver = {
527 .driver = {
528 .name = DRIVER_NAME,
529 .owner = THIS_MODULE,
530 .of_match_table = of_match_ptr(spi_gpio_dt_ids),
531 },
532 .probe = spi_gpio_probe,
533 .remove = spi_gpio_remove,
534};
535module_platform_driver(spi_gpio_driver);
536
537MODULE_DESCRIPTION("SPI master driver using generic bitbanged GPIO ");
538MODULE_AUTHOR("David Brownell");
539MODULE_LICENSE("GPL");
540