blob: 393701cfca3c5244a232ef902c4d63ae54fc3a13 [file] [log] [blame]
Magnus Damm37e46642008-02-06 01:38:15 -08001/*
2 * SH SCI SPI interface
3 *
4 * Copyright (c) 2008 Magnus Damm
5 *
6 * Based on S3C24XX GPIO based SPI driver, which is:
7 * Copyright (c) 2006 Ben Dooks
8 * Copyright (c) 2006 Simtec Electronics
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 */
15
16#include <linux/kernel.h>
Magnus Damm37e46642008-02-06 01:38:15 -080017#include <linux/delay.h>
18#include <linux/spinlock.h>
Magnus Damm37e46642008-02-06 01:38:15 -080019#include <linux/platform_device.h>
20
21#include <linux/spi/spi.h>
22#include <linux/spi/spi_bitbang.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040023#include <linux/module.h>
Magnus Damm37e46642008-02-06 01:38:15 -080024
25#include <asm/spi.h>
26#include <asm/io.h>
27
28struct sh_sci_spi {
29 struct spi_bitbang bitbang;
30
31 void __iomem *membase;
32 unsigned char val;
33 struct sh_spi_info *info;
34 struct platform_device *dev;
35};
36
37#define SCSPTR(sp) (sp->membase + 0x1c)
38#define PIN_SCK (1 << 2)
39#define PIN_TXD (1 << 0)
40#define PIN_RXD PIN_TXD
41#define PIN_INIT ((1 << 1) | (1 << 3) | PIN_SCK | PIN_TXD)
42
43static inline void setbits(struct sh_sci_spi *sp, int bits, int on)
44{
45 /*
46 * We are the only user of SCSPTR so no locking is required.
47 * Reading bit 2 and 0 in SCSPTR gives pin state as input.
48 * Writing the same bits sets the output value.
49 * This makes regular read-modify-write difficult so we
50 * use sp->val to keep track of the latest register value.
51 */
52
53 if (on)
54 sp->val |= bits;
55 else
56 sp->val &= ~bits;
57
58 iowrite8(sp->val, SCSPTR(sp));
59}
60
61static inline void setsck(struct spi_device *dev, int on)
62{
63 setbits(spi_master_get_devdata(dev->master), PIN_SCK, on);
64}
65
66static inline void setmosi(struct spi_device *dev, int on)
67{
68 setbits(spi_master_get_devdata(dev->master), PIN_TXD, on);
69}
70
71static inline u32 getmiso(struct spi_device *dev)
72{
73 struct sh_sci_spi *sp = spi_master_get_devdata(dev->master);
74
75 return (ioread8(SCSPTR(sp)) & PIN_RXD) ? 1 : 0;
76}
77
78#define spidelay(x) ndelay(x)
79
Grant Likelyca632f52011-06-06 01:16:30 -060080#include "spi-bitbang-txrx.h"
Magnus Damm37e46642008-02-06 01:38:15 -080081
82static u32 sh_sci_spi_txrx_mode0(struct spi_device *spi,
Lorenzo Bianconi304d3432018-07-28 10:19:13 +020083 unsigned nsecs, u32 word, u8 bits,
84 unsigned flags)
Magnus Damm37e46642008-02-06 01:38:15 -080085{
Lorenzo Bianconi304d3432018-07-28 10:19:13 +020086 return bitbang_txrx_be_cpha0(spi, nsecs, 0, flags, word, bits);
Magnus Damm37e46642008-02-06 01:38:15 -080087}
88
89static u32 sh_sci_spi_txrx_mode1(struct spi_device *spi,
Lorenzo Bianconi304d3432018-07-28 10:19:13 +020090 unsigned nsecs, u32 word, u8 bits,
91 unsigned flags)
Magnus Damm37e46642008-02-06 01:38:15 -080092{
Lorenzo Bianconi304d3432018-07-28 10:19:13 +020093 return bitbang_txrx_be_cpha1(spi, nsecs, 0, flags, word, bits);
Magnus Damm37e46642008-02-06 01:38:15 -080094}
95
96static u32 sh_sci_spi_txrx_mode2(struct spi_device *spi,
Lorenzo Bianconi304d3432018-07-28 10:19:13 +020097 unsigned nsecs, u32 word, u8 bits,
98 unsigned flags)
Magnus Damm37e46642008-02-06 01:38:15 -080099{
Lorenzo Bianconi304d3432018-07-28 10:19:13 +0200100 return bitbang_txrx_be_cpha0(spi, nsecs, 1, flags, word, bits);
Magnus Damm37e46642008-02-06 01:38:15 -0800101}
102
103static u32 sh_sci_spi_txrx_mode3(struct spi_device *spi,
Lorenzo Bianconi304d3432018-07-28 10:19:13 +0200104 unsigned nsecs, u32 word, u8 bits,
105 unsigned flags)
Magnus Damm37e46642008-02-06 01:38:15 -0800106{
Lorenzo Bianconi304d3432018-07-28 10:19:13 +0200107 return bitbang_txrx_be_cpha1(spi, nsecs, 1, flags, word, bits);
Magnus Damm37e46642008-02-06 01:38:15 -0800108}
109
110static void sh_sci_spi_chipselect(struct spi_device *dev, int value)
111{
112 struct sh_sci_spi *sp = spi_master_get_devdata(dev->master);
113
Axel Lined8eb252014-03-13 10:32:37 +0800114 if (sp->info->chip_select)
Magnus Damm37e46642008-02-06 01:38:15 -0800115 (sp->info->chip_select)(sp->info, dev->chip_select, value);
116}
117
118static int sh_sci_spi_probe(struct platform_device *dev)
119{
120 struct resource *r;
121 struct spi_master *master;
122 struct sh_sci_spi *sp;
123 int ret;
124
125 master = spi_alloc_master(&dev->dev, sizeof(struct sh_sci_spi));
126 if (master == NULL) {
127 dev_err(&dev->dev, "failed to allocate spi master\n");
128 ret = -ENOMEM;
129 goto err0;
130 }
131
132 sp = spi_master_get_devdata(master);
133
134 platform_set_drvdata(dev, sp);
Jingoo Han8074cf02013-07-30 16:58:59 +0900135 sp->info = dev_get_platdata(&dev->dev);
Axel Lined8eb252014-03-13 10:32:37 +0800136 if (!sp->info) {
137 dev_err(&dev->dev, "platform data is missing\n");
138 ret = -ENOENT;
139 goto err1;
140 }
Magnus Damm37e46642008-02-06 01:38:15 -0800141
142 /* setup spi bitbang adaptor */
Axel Lin94c69f72013-09-10 15:43:41 +0800143 sp->bitbang.master = master;
Magnus Damm37e46642008-02-06 01:38:15 -0800144 sp->bitbang.master->bus_num = sp->info->bus_num;
145 sp->bitbang.master->num_chipselect = sp->info->num_chipselect;
146 sp->bitbang.chipselect = sh_sci_spi_chipselect;
147
148 sp->bitbang.txrx_word[SPI_MODE_0] = sh_sci_spi_txrx_mode0;
149 sp->bitbang.txrx_word[SPI_MODE_1] = sh_sci_spi_txrx_mode1;
150 sp->bitbang.txrx_word[SPI_MODE_2] = sh_sci_spi_txrx_mode2;
151 sp->bitbang.txrx_word[SPI_MODE_3] = sh_sci_spi_txrx_mode3;
152
153 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
154 if (r == NULL) {
155 ret = -ENOENT;
156 goto err1;
157 }
hartleys76b6fdd2009-12-14 22:40:05 +0000158 sp->membase = ioremap(r->start, resource_size(r));
Magnus Damm37e46642008-02-06 01:38:15 -0800159 if (!sp->membase) {
160 ret = -ENXIO;
161 goto err1;
162 }
163 sp->val = ioread8(SCSPTR(sp));
164 setbits(sp, PIN_INIT, 1);
165
166 ret = spi_bitbang_start(&sp->bitbang);
167 if (!ret)
168 return 0;
169
170 setbits(sp, PIN_INIT, 0);
171 iounmap(sp->membase);
172 err1:
173 spi_master_put(sp->bitbang.master);
174 err0:
175 return ret;
176}
177
178static int sh_sci_spi_remove(struct platform_device *dev)
179{
180 struct sh_sci_spi *sp = platform_get_drvdata(dev);
181
Magnus Damm37e46642008-02-06 01:38:15 -0800182 spi_bitbang_stop(&sp->bitbang);
Jürg Billeter25f8a7cc2014-06-16 16:39:29 +0200183 setbits(sp, PIN_INIT, 0);
184 iounmap(sp->membase);
Magnus Damm37e46642008-02-06 01:38:15 -0800185 spi_master_put(sp->bitbang.master);
186 return 0;
187}
188
189static struct platform_driver sh_sci_spi_drv = {
190 .probe = sh_sci_spi_probe,
191 .remove = sh_sci_spi_remove,
192 .driver = {
193 .name = "spi_sh_sci",
Magnus Damm37e46642008-02-06 01:38:15 -0800194 },
195};
Grant Likely940ab882011-10-05 11:29:49 -0600196module_platform_driver(sh_sci_spi_drv);
Magnus Damm37e46642008-02-06 01:38:15 -0800197
198MODULE_DESCRIPTION("SH SCI SPI Driver");
199MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
200MODULE_LICENSE("GPL");
Kay Sievers7e38c3c2008-04-10 21:29:20 -0700201MODULE_ALIAS("platform:spi_sh_sci");