2 * Copyright (c) 2010-2012 NVIDIA Corporation
3 * With help from the mpc8xxx SPI driver
4 * With more help from omap3_spi SPI driver
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 #include <asm/arch/clock.h>
30 #include <asm/arch/pinmux.h>
31 #include <asm/arch/uart-spi-switch.h>
32 #include <asm/arch-tegra/clk_rst.h>
33 #include <asm/arch-tegra/tegra_spi.h>
37 DECLARE_GLOBAL_DATA_PTR;
39 #if defined(CONFIG_SPI_CORRUPTS_UART)
40 #define corrupt_delay() udelay(CONFIG_SPI_CORRUPTS_UART_DLY);
42 #define corrupt_delay()
45 struct tegra_spi_slave {
46 struct spi_slave slave;
47 struct spi_tegra *regs;
53 static inline struct tegra_spi_slave *to_tegra_spi(struct spi_slave *slave)
55 return container_of(slave, struct tegra_spi_slave, slave);
58 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
60 /* Tegra20 SPI-Flash - only 1 device ('bus/cs') */
61 if (bus != 0 || cs != 0)
67 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
68 unsigned int max_hz, unsigned int mode)
70 struct tegra_spi_slave *spi;
72 if (!spi_cs_is_valid(bus, cs)) {
73 printf("SPI error: unsupported bus %d / chip select %d\n",
78 if (max_hz > TEGRA_SPI_MAX_FREQ) {
79 printf("SPI error: unsupported frequency %d Hz. Max frequency"
80 " is %d Hz\n", max_hz, TEGRA_SPI_MAX_FREQ);
84 spi = malloc(sizeof(struct tegra_spi_slave));
86 printf("SPI error: malloc of SPI structure failed\n");
91 #ifdef CONFIG_OF_CONTROL
92 int node = fdtdec_next_compatible(gd->fdt_blob, 0,
93 COMPAT_NVIDIA_TEGRA20_SFLASH);
95 debug("%s: cannot locate sflash node\n", __func__);
98 if (!fdtdec_get_is_enabled(gd->fdt_blob, node)) {
99 debug("%s: sflash is disabled\n", __func__);
102 spi->regs = (struct spi_tegra *)fdtdec_get_addr(gd->fdt_blob,
104 if ((fdt_addr_t)spi->regs == FDT_ADDR_T_NONE) {
105 debug("%s: no sflash register found\n", __func__);
108 spi->freq = fdtdec_get_int(gd->fdt_blob, node, "spi-max-frequency", 0);
110 debug("%s: no sflash max frequency found\n", __func__);
113 spi->periph_id = clock_decode_periph_id(gd->fdt_blob, node);
114 if (spi->periph_id == PERIPH_ID_NONE) {
115 debug("%s: could not decode periph id\n", __func__);
119 spi->regs = (struct spi_tegra *)NV_PA_SPI_BASE;
120 spi->freq = TEGRA_SPI_MAX_FREQ;
121 spi->periph_id = PERIPH_ID_SPI1;
123 if (max_hz < spi->freq) {
124 debug("%s: limiting frequency from %u to %u\n", __func__,
128 debug("%s: controller initialized at %p, freq = %u, periph_id = %d\n",
129 __func__, spi->regs, spi->freq, spi->periph_id);
135 void spi_free_slave(struct spi_slave *slave)
137 struct tegra_spi_slave *spi = to_tegra_spi(slave);
147 int spi_claim_bus(struct spi_slave *slave)
149 struct tegra_spi_slave *spi = to_tegra_spi(slave);
150 struct spi_tegra *regs = spi->regs;
153 /* Change SPI clock to correct frequency, PLLP_OUT0 source */
154 clock_start_periph_pll(spi->periph_id, CLOCK_ID_PERIPH, spi->freq);
156 /* Clear stale status here */
157 reg = SPI_STAT_RDY | SPI_STAT_RXF_FLUSH | SPI_STAT_TXF_FLUSH | \
158 SPI_STAT_RXF_UNR | SPI_STAT_TXF_OVF;
159 writel(reg, ®s->status);
160 debug("spi_init: STATUS = %08x\n", readl(®s->status));
163 * Use sw-controlled CS, so we can clock in data after ReadID, etc.
165 reg = (spi->mode & 1) << SPI_CMD_ACTIVE_SDA_SHIFT;
167 reg |= 1 << SPI_CMD_ACTIVE_SCLK_SHIFT;
168 clrsetbits_le32(®s->command, SPI_CMD_ACTIVE_SCLK_MASK |
169 SPI_CMD_ACTIVE_SDA_MASK, SPI_CMD_CS_SOFT | reg);
170 debug("spi_init: COMMAND = %08x\n", readl(®s->command));
173 * SPI pins on Tegra20 are muxed - change pinmux later due to UART
176 pinmux_set_func(PINGRP_GMD, PMUX_FUNC_SFLASH);
177 pinmux_tristate_disable(PINGRP_LSPI);
179 #ifndef CONFIG_SPI_UART_SWITCH
182 * Only set PinMux bits 3:2 to SPI here on boards that don't have the
183 * SPI UART switch or subsequent UART data won't go out! See
186 /* TODO: pinmux_set_func(PINGRP_GMC, PMUX_FUNC_SFLASH); */
191 void spi_release_bus(struct spi_slave *slave)
194 * We can't release UART_DISABLE and set pinmux to UART4 here since
195 * some code (e,g, spi_flash_probe) uses printf() while the SPI
196 * bus is held. That is arguably bad, but it has the advantage of
197 * already being in the source tree.
201 void spi_cs_activate(struct spi_slave *slave)
203 struct tegra_spi_slave *spi = to_tegra_spi(slave);
207 /* CS is negated on Tegra, so drive a 1 to get a 0 */
208 setbits_le32(&spi->regs->command, SPI_CMD_CS_VAL);
210 corrupt_delay(); /* Let UART settle */
213 void spi_cs_deactivate(struct spi_slave *slave)
215 struct tegra_spi_slave *spi = to_tegra_spi(slave);
217 pinmux_select_uart();
219 /* CS is negated on Tegra, so drive a 0 to get a 1 */
220 clrbits_le32(&spi->regs->command, SPI_CMD_CS_VAL);
222 corrupt_delay(); /* Let SPI settle */
225 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
226 const void *data_out, void *data_in, unsigned long flags)
228 struct tegra_spi_slave *spi = to_tegra_spi(slave);
229 struct spi_tegra *regs = spi->regs;
230 u32 reg, tmpdout, tmpdin = 0;
231 const u8 *dout = data_out;
236 debug("spi_xfer: slave %u:%u dout %08X din %08X bitlen %u\n",
237 slave->bus, slave->cs, *(u8 *)dout, *(u8 *)din, bitlen);
240 num_bytes = bitlen / 8;
244 reg = readl(®s->status);
245 writel(reg, ®s->status); /* Clear all SPI events via R/W */
246 debug("spi_xfer entry: STATUS = %08x\n", reg);
248 reg = readl(®s->command);
249 reg |= SPI_CMD_TXEN | SPI_CMD_RXEN;
250 writel(reg, ®s->command);
251 debug("spi_xfer: COMMAND = %08x\n", readl(®s->command));
253 if (flags & SPI_XFER_BEGIN)
254 spi_cs_activate(slave);
256 /* handle data in 32-bit chunks */
257 while (num_bytes > 0) {
263 bytes = (num_bytes > 4) ? 4 : num_bytes;
266 for (i = 0; i < bytes; ++i)
267 tmpdout = (tmpdout << 8) | dout[i];
274 clrsetbits_le32(®s->command, SPI_CMD_BIT_LENGTH_MASK,
276 writel(tmpdout, ®s->tx_fifo);
277 setbits_le32(®s->command, SPI_CMD_GO);
280 * Wait for SPI transmit FIFO to empty, or to time out.
281 * The RX FIFO status will be read and cleared last
283 for (tm = 0, is_read = 0; tm < SPI_TIMEOUT; ++tm) {
286 status = readl(®s->status);
288 /* We can exit when we've had both RX and TX activity */
289 if (is_read && (status & SPI_STAT_TXF_EMPTY))
292 if ((status & (SPI_STAT_BSY | SPI_STAT_RDY)) !=
296 else if (!(status & SPI_STAT_RXF_EMPTY)) {
297 tmpdin = readl(®s->rx_fifo);
300 /* swap bytes read in */
302 for (i = bytes - 1; i >= 0; --i) {
303 din[i] = tmpdin & 0xff;
311 if (tm >= SPI_TIMEOUT)
314 /* clear ACK RDY, etc. bits */
315 writel(readl(®s->status), ®s->status);
318 if (flags & SPI_XFER_END)
319 spi_cs_deactivate(slave);
321 debug("spi_xfer: transfer ended. Value=%08x, status = %08x\n",
322 tmpdin, readl(®s->status));
325 printf("spi_xfer: timeout during SPI transfer, tm %d\n", ret);