xref: /openbmc/u-boot/drivers/spi/xilinx_spi.c (revision e3e5dac4)
1 /*
2  * Xilinx SPI driver
3  *
4  * supports 8 bit SPI transfers only, with or w/o FIFO
5  *
6  * based on bfin_spi.c, by way of altera_spi.c
7  * Copyright (c) 2005-2008 Analog Devices Inc.
8  * Copyright (c) 2010 Thomas Chou <thomas@wytron.com.tw>
9  * Copyright (c) 2010 Graeme Smecher <graeme.smecher@mail.mcgill.ca>
10  * Copyright (c) 2012 Stephan Linz <linz@li-pro.net>
11  *
12  * Licensed under the GPL-2 or later.
13  *
14  * [0]: http://www.xilinx.com/support/documentation
15  *
16  * [S]:	[0]/ip_documentation/xps_spi.pdf
17  *	[0]/ip_documentation/axi_spi_ds742.pdf
18  */
19 #include <config.h>
20 #include <common.h>
21 #include <malloc.h>
22 #include <spi.h>
23 
24 #include "xilinx_spi.h"
25 
26 #ifndef CONFIG_SYS_XILINX_SPI_LIST
27 #define CONFIG_SYS_XILINX_SPI_LIST	{ CONFIG_SYS_SPI_BASE }
28 #endif
29 
30 #ifndef CONFIG_XILINX_SPI_IDLE_VAL
31 #define CONFIG_XILINX_SPI_IDLE_VAL	0xff
32 #endif
33 
34 #define XILSPI_SPICR_DFLT_ON		(SPICR_MANUAL_SS | \
35 					 SPICR_MASTER_MODE | \
36 					 SPICR_SPE)
37 
38 #define XILSPI_SPICR_DFLT_OFF		(SPICR_MASTER_INHIBIT | \
39 					 SPICR_MANUAL_SS)
40 
41 #define XILSPI_MAX_XFER_BITS		8
42 
43 static unsigned long xilinx_spi_base_list[] = CONFIG_SYS_XILINX_SPI_LIST;
44 
45 __attribute__((weak))
46 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
47 {
48 	return bus < ARRAY_SIZE(xilinx_spi_base_list) && cs < 32;
49 }
50 
51 __attribute__((weak))
52 void spi_cs_activate(struct spi_slave *slave)
53 {
54 	struct xilinx_spi_slave *xilspi = to_xilinx_spi_slave(slave);
55 
56 	writel(SPISSR_ACT(slave->cs), &xilspi->regs->spissr);
57 }
58 
59 __attribute__((weak))
60 void spi_cs_deactivate(struct spi_slave *slave)
61 {
62 	struct xilinx_spi_slave *xilspi = to_xilinx_spi_slave(slave);
63 
64 	writel(SPISSR_OFF, &xilspi->regs->spissr);
65 }
66 
67 void spi_init(void)
68 {
69 	/* do nothing */
70 }
71 
72 void spi_set_speed(struct spi_slave *slave, uint hz)
73 {
74 	/* xilinx spi core does not support programmable speed */
75 }
76 
77 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
78 				  unsigned int max_hz, unsigned int mode)
79 {
80 	struct xilinx_spi_slave *xilspi;
81 	struct xilinx_spi_reg *regs;
82 
83 	if (!spi_cs_is_valid(bus, cs)) {
84 		printf("XILSPI error: %s: unsupported bus %d / cs %d\n",
85 				__func__, bus, cs);
86 		return NULL;
87 	}
88 
89 	xilspi = malloc(sizeof(*xilspi));
90 	if (!xilspi) {
91 		printf("XILSPI error: %s: malloc of SPI structure failed\n",
92 				__func__);
93 		return NULL;
94 	}
95 	xilspi->slave.bus = bus;
96 	xilspi->slave.cs = cs;
97 	xilspi->regs = (struct xilinx_spi_reg *)xilinx_spi_base_list[bus];
98 	xilspi->freq = max_hz;
99 	xilspi->mode = mode;
100 	debug("%s: bus:%i cs:%i base:%p mode:%x max_hz:%d\n", __func__,
101 		bus, cs, xilspi->regs, xilspi->mode, xilspi->freq);
102 
103 	return &xilspi->slave;
104 }
105 
106 void spi_free_slave(struct spi_slave *slave)
107 {
108 	struct xilinx_spi_slave *xilspi = to_xilinx_spi_slave(slave);
109 
110 	free(xilspi);
111 }
112 
113 int spi_claim_bus(struct spi_slave *slave)
114 {
115 	struct xilinx_spi_slave *xilspi = to_xilinx_spi_slave(slave);
116 	u32 spicr;
117 
118 	debug("%s: bus:%i cs:%i\n", __func__, slave->bus, slave->cs);
119 	writel(SPISSR_OFF, &xilspi->regs->spissr);
120 
121 	spicr = XILSPI_SPICR_DFLT_ON;
122 	if (xilspi->mode & SPI_LSB_FIRST)
123 		spicr |= SPICR_LSB_FIRST;
124 	if (xilspi->mode & SPI_CPHA)
125 		spicr |= SPICR_CPHA;
126 	if (xilspi->mode & SPI_CPOL)
127 		spicr |= SPICR_CPOL;
128 	if (xilspi->mode & SPI_LOOP)
129 		spicr |= SPICR_LOOP;
130 
131 	writel(spicr, &xilspi->regs->spicr);
132 	return 0;
133 }
134 
135 void spi_release_bus(struct spi_slave *slave)
136 {
137 	struct xilinx_spi_slave *xilspi = to_xilinx_spi_slave(slave);
138 
139 	debug("%s: bus:%i cs:%i\n", __func__, slave->bus, slave->cs);
140 	writel(SPISSR_OFF, &xilspi->regs->spissr);
141 	writel(XILSPI_SPICR_DFLT_OFF, &xilspi->regs->spicr);
142 }
143 
144 int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
145 	     void *din, unsigned long flags)
146 {
147 	struct xilinx_spi_slave *xilspi = to_xilinx_spi_slave(slave);
148 	/* assume spi core configured to do 8 bit transfers */
149 	unsigned int bytes = bitlen / XILSPI_MAX_XFER_BITS;
150 	const unsigned char *txp = dout;
151 	unsigned char *rxp = din;
152 	unsigned rxecount = 17;	/* max. 16 elements in FIFO, leftover 1 */
153 
154 	debug("%s: bus:%i cs:%i bitlen:%i bytes:%i flags:%lx\n", __func__,
155 		slave->bus, slave->cs, bitlen, bytes, flags);
156 	if (bitlen == 0)
157 		goto done;
158 
159 	if (bitlen % XILSPI_MAX_XFER_BITS) {
160 		printf("XILSPI warning: %s: Not a multiple of %d bits\n",
161 				__func__, XILSPI_MAX_XFER_BITS);
162 		flags |= SPI_XFER_END;
163 		goto done;
164 	}
165 
166 	/* empty read buffer */
167 	while (rxecount && !(readl(&xilspi->regs->spisr) & SPISR_RX_EMPTY)) {
168 		readl(&xilspi->regs->spidrr);
169 		rxecount--;
170 	}
171 
172 	if (!rxecount) {
173 		printf("XILSPI error: %s: Rx buffer not empty\n", __func__);
174 		return -1;
175 	}
176 
177 	if (flags & SPI_XFER_BEGIN)
178 		spi_cs_activate(slave);
179 
180 	while (bytes--) {
181 		unsigned timeout = /* at least 1usec or greater, leftover 1 */
182 			xilspi->freq > XILSPI_MAX_XFER_BITS * 1000000 ? 2 :
183 			(XILSPI_MAX_XFER_BITS * 1000000 / xilspi->freq) + 1;
184 
185 		/* get Tx element from data out buffer and count up */
186 		unsigned char d = txp ? *txp++ : CONFIG_XILINX_SPI_IDLE_VAL;
187 		debug("%s: tx:%x ", __func__, d);
188 
189 		/* write out and wait for processing (receive data) */
190 		writel(d & SPIDTR_8BIT_MASK, &xilspi->regs->spidtr);
191 		while (timeout && readl(&xilspi->regs->spisr)
192 						& SPISR_RX_EMPTY) {
193 			timeout--;
194 			udelay(1);
195 		}
196 
197 		if (!timeout) {
198 			printf("XILSPI error: %s: Xfer timeout\n", __func__);
199 			return -1;
200 		}
201 
202 		/* read Rx element and push into data in buffer */
203 		d = readl(&xilspi->regs->spidrr) & SPIDRR_8BIT_MASK;
204 		if (rxp)
205 			*rxp++ = d;
206 		debug("rx:%x\n", d);
207 	}
208 
209  done:
210 	if (flags & SPI_XFER_END)
211 		spi_cs_deactivate(slave);
212 
213 	return 0;
214 }
215