blob: 07b833d3a3de22b134b6d9ee4b1ffc6b422034f8 [file] [log] [blame]
Scott Jiang4a207e82011-11-29 18:03:26 -05001/*
2 * Analog Devices SPI3 controller driver
3 *
4 * Copyright (c) 2011 Analog Devices Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20#include <common.h>
21#include <malloc.h>
22#include <spi.h>
23
24#include <asm/blackfin.h>
25#include <asm/gpio.h>
26#include <asm/portmux.h>
27#include <asm/mach-common/bits/spi6xx.h>
28
29struct bfin_spi_slave {
30 struct spi_slave slave;
31 u32 control, clock;
32 struct bfin_spi_regs *regs;
33 int cs_pol;
34};
35
36#define to_bfin_spi_slave(s) container_of(s, struct bfin_spi_slave, slave)
37
38#define gpio_cs(cs) ((cs) - MAX_CTRL_CS)
39#ifdef CONFIG_BFIN_SPI_GPIO_CS
40# define is_gpio_cs(cs) ((cs) > MAX_CTRL_CS)
41#else
42# define is_gpio_cs(cs) 0
43#endif
44
45int spi_cs_is_valid(unsigned int bus, unsigned int cs)
46{
47 if (is_gpio_cs(cs))
48 return gpio_is_valid(gpio_cs(cs));
49 else
50 return (cs >= 1 && cs <= MAX_CTRL_CS);
51}
52
53void spi_cs_activate(struct spi_slave *slave)
54{
55 struct bfin_spi_slave *bss = to_bfin_spi_slave(slave);
56
57 if (is_gpio_cs(slave->cs)) {
58 unsigned int cs = gpio_cs(slave->cs);
59 gpio_set_value(cs, bss->cs_pol);
60 } else {
61 u32 ssel;
62 ssel = bfin_read32(&bss->regs->ssel);
63 ssel |= 1 << slave->cs;
64 if (bss->cs_pol)
65 ssel |= (1 << 8) << slave->cs;
66 else
67 ssel &= ~((1 << 8) << slave->cs);
68 bfin_write32(&bss->regs->ssel, ssel);
69 }
70
71 SSYNC();
72}
73
74void spi_cs_deactivate(struct spi_slave *slave)
75{
76 struct bfin_spi_slave *bss = to_bfin_spi_slave(slave);
77
78 if (is_gpio_cs(slave->cs)) {
79 unsigned int cs = gpio_cs(slave->cs);
80 gpio_set_value(cs, !bss->cs_pol);
81 } else {
82 u32 ssel;
83 ssel = bfin_read32(&bss->regs->ssel);
84 if (bss->cs_pol)
85 ssel &= ~((1 << 8) << slave->cs);
86 else
87 ssel |= (1 << 8) << slave->cs;
88 /* deassert cs */
89 bfin_write32(&bss->regs->ssel, ssel);
90 SSYNC();
91 /* disable cs */
92 ssel &= ~(1 << slave->cs);
93 bfin_write32(&bss->regs->ssel, ssel);
94 }
95
96 SSYNC();
97}
98
99void spi_init()
100{
101}
102
103#define SPI_PINS(n) \
104 { 0, P_SPI##n##_SCK, P_SPI##n##_MISO, P_SPI##n##_MOSI, 0 }
105static unsigned short pins[][5] = {
106#ifdef SPI0_REGBASE
107 [0] = SPI_PINS(0),
108#endif
109#ifdef SPI1_REGBASE
110 [1] = SPI_PINS(1),
111#endif
112#ifdef SPI2_REGBASE
113 [2] = SPI_PINS(2),
114#endif
115};
116
117#define SPI_CS_PINS(n) \
118 { \
119 P_SPI##n##_SSEL1, P_SPI##n##_SSEL2, P_SPI##n##_SSEL3, \
120 P_SPI##n##_SSEL4, P_SPI##n##_SSEL5, P_SPI##n##_SSEL6, \
121 P_SPI##n##_SSEL7, \
122 }
123static const unsigned short cs_pins[][7] = {
124#ifdef SPI0_REGBASE
125 [0] = SPI_CS_PINS(0),
126#endif
127#ifdef SPI1_REGBASE
128 [1] = SPI_CS_PINS(1),
129#endif
130#ifdef SPI2_REGBASE
131 [2] = SPI_CS_PINS(2),
132#endif
133};
134
135void spi_set_speed(struct spi_slave *slave, uint hz)
136{
137 struct bfin_spi_slave *bss = to_bfin_spi_slave(slave);
138 ulong sclk;
139 u32 clock;
140
141 sclk = get_sclk1();
142 clock = sclk / hz;
143 if (clock)
144 clock--;
145 bss->clock = clock;
146}
147
148struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
149 unsigned int max_hz, unsigned int mode)
150{
151 struct bfin_spi_slave *bss;
152 u32 reg_base;
153
154 if (!spi_cs_is_valid(bus, cs))
155 return NULL;
156
Scott Jiang4a207e82011-11-29 18:03:26 -0500157 switch (bus) {
158#ifdef SPI0_REGBASE
159 case 0:
160 reg_base = SPI0_REGBASE;
161 break;
162#endif
163#ifdef SPI1_REGBASE
164 case 1:
165 reg_base = SPI1_REGBASE;
166 break;
167#endif
168#ifdef SPI2_REGBASE
169 case 2:
170 reg_base = SPI2_REGBASE;
171 break;
172#endif
173 default:
Axel Lin9bac8f72013-12-02 12:57:44 +0800174 debug("%s: invalid bus %u\n", __func__, bus);
Scott Jiang4a207e82011-11-29 18:03:26 -0500175 return NULL;
176 }
177
Simon Glassd3504fe2013-03-18 19:23:40 +0000178 bss = spi_alloc_slave(struct bfin_spi_slave, bus, cs);
Scott Jiang4a207e82011-11-29 18:03:26 -0500179 if (!bss)
180 return NULL;
181
Scott Jiang4a207e82011-11-29 18:03:26 -0500182 bss->regs = (struct bfin_spi_regs *)reg_base;
183 bss->control = SPI_CTL_EN | SPI_CTL_MSTR;
184 if (mode & SPI_CPHA)
185 bss->control |= SPI_CTL_CPHA;
186 if (mode & SPI_CPOL)
187 bss->control |= SPI_CTL_CPOL;
188 if (mode & SPI_LSB_FIRST)
189 bss->control |= SPI_CTL_LSBF;
190 bss->control &= ~SPI_CTL_ASSEL;
191 bss->cs_pol = mode & SPI_CS_HIGH ? 1 : 0;
192 spi_set_speed(&bss->slave, max_hz);
193
194 return &bss->slave;
195}
196
197void spi_free_slave(struct spi_slave *slave)
198{
199 struct bfin_spi_slave *bss = to_bfin_spi_slave(slave);
200 free(bss);
201}
202
203int spi_claim_bus(struct spi_slave *slave)
204{
205 struct bfin_spi_slave *bss = to_bfin_spi_slave(slave);
206
207 debug("%s: bus:%i cs:%i\n", __func__, slave->bus, slave->cs);
208
209 if (is_gpio_cs(slave->cs)) {
210 unsigned int cs = gpio_cs(slave->cs);
211 gpio_request(cs, "bfin-spi");
212 gpio_direction_output(cs, !bss->cs_pol);
213 pins[slave->bus][0] = P_DONTCARE;
214 } else
215 pins[slave->bus][0] = cs_pins[slave->bus][slave->cs - 1];
216 peripheral_request_list(pins[slave->bus], "bfin-spi");
217
218 bfin_write32(&bss->regs->control, bss->control);
219 bfin_write32(&bss->regs->clock, bss->clock);
220 bfin_write32(&bss->regs->delay, 0x0);
221 bfin_write32(&bss->regs->rx_control, SPI_RXCTL_REN);
222 bfin_write32(&bss->regs->tx_control, SPI_TXCTL_TEN | SPI_TXCTL_TTI);
223 SSYNC();
224
225 return 0;
226}
227
228void spi_release_bus(struct spi_slave *slave)
229{
230 struct bfin_spi_slave *bss = to_bfin_spi_slave(slave);
231
232 debug("%s: bus:%i cs:%i\n", __func__, slave->bus, slave->cs);
233
234 peripheral_free_list(pins[slave->bus]);
235 if (is_gpio_cs(slave->cs))
236 gpio_free(gpio_cs(slave->cs));
237
238 bfin_write32(&bss->regs->rx_control, 0x0);
239 bfin_write32(&bss->regs->tx_control, 0x0);
240 bfin_write32(&bss->regs->control, 0x0);
241 SSYNC();
242}
243
244#ifndef CONFIG_BFIN_SPI_IDLE_VAL
245# define CONFIG_BFIN_SPI_IDLE_VAL 0xff
246#endif
247
248static int spi_pio_xfer(struct bfin_spi_slave *bss, const u8 *tx, u8 *rx,
249 uint bytes)
250{
251 /* discard invalid rx data and empty rfifo */
252 while (!(bfin_read32(&bss->regs->status) & SPI_STAT_RFE))
253 bfin_read32(&bss->regs->rfifo);
254
255 while (bytes--) {
256 u8 value = (tx ? *tx++ : CONFIG_BFIN_SPI_IDLE_VAL);
257 debug("%s: tx:%x ", __func__, value);
258 bfin_write32(&bss->regs->tfifo, value);
259 SSYNC();
260 while (bfin_read32(&bss->regs->status) & SPI_STAT_RFE)
261 if (ctrlc())
262 return -1;
263 value = bfin_read32(&bss->regs->rfifo);
264 if (rx)
265 *rx++ = value;
266 debug("rx:%x\n", value);
267 }
268
269 return 0;
270}
271
272int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
273 void *din, unsigned long flags)
274{
275 struct bfin_spi_slave *bss = to_bfin_spi_slave(slave);
276 const u8 *tx = dout;
277 u8 *rx = din;
278 uint bytes = bitlen / 8;
279 int ret = 0;
280
281 debug("%s: bus:%i cs:%i bitlen:%i bytes:%i flags:%lx\n", __func__,
282 slave->bus, slave->cs, bitlen, bytes, flags);
283
284 if (bitlen == 0)
285 goto done;
286
287 /* we can only do 8 bit transfers */
288 if (bitlen % 8) {
289 flags |= SPI_XFER_END;
290 goto done;
291 }
292
293 if (flags & SPI_XFER_BEGIN)
294 spi_cs_activate(slave);
295
296 ret = spi_pio_xfer(bss, tx, rx, bytes);
297
298 done:
299 if (flags & SPI_XFER_END)
300 spi_cs_deactivate(slave);
301
302 return ret;
303}