summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@chromium.org>2011-11-10 16:18:30 +0800
committerGerrit <chrome-bot@google.com>2011-11-15 11:48:28 -0800
commit66ebf9c8ade087c8886777a235f05343b0b3fb4c (patch)
tree9b450e22c3f60319f7d2cd1b2ba9c533f9d38d84 /drivers
parentd3eadaf1b3aea0ea12debbf0fb207a7f573c8492 (diff)
tegra: spi: add SFLASH and SLINK drivers
BUG=chromium-os:21033 TEST=run `sf erase, write` and then `sf read` on seaboard verify the data it reads from SPI flash matches that it writes to Change-Id: I1b04afa4b54738cd93be29b70f428bdc3e6b234f Signed-off-by: Tom Warren <twarren@nvidia.com> Reviewed-on: https://gerrit.chromium.org/gerrit/11472 Commit-Ready: Che-Liang Chiou <clchiou@chromium.org> Reviewed-by: Che-Liang Chiou <clchiou@chromium.org> Tested-by: Che-Liang Chiou <clchiou@chromium.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/spi/tegra_spi.c59
1 files changed, 40 insertions, 19 deletions
diff --git a/drivers/spi/tegra_spi.c b/drivers/spi/tegra_spi.c
index c69a63915c..2d724acd26 100644
--- a/drivers/spi/tegra_spi.c
+++ b/drivers/spi/tegra_spi.c
@@ -24,21 +24,22 @@
#include <common.h>
#include <malloc.h>
-#include <ns16550.h> /* for NS16550_drain and NS16550_clear */
#include <spi.h>
#include <asm/clocks.h>
#include <asm/io.h>
-#include <asm/arch-tegra/bitfield.h>
-#include <asm/arch-tegra/clk_rst.h>
#include <asm/arch-tegra/spi.h>
#include <asm/arch/clock.h>
-#include <asm/arch/gpio.h>
#include <asm/arch/pinmux.h>
+
+#ifdef CONFIG_USE_SFLASH
+#include <ns16550.h> /* for NS16550_drain and NS16550_clear */
+#include <asm/arch/gpio.h>
#include "uart-spi-fix.h"
+#endif
int spi_cs_is_valid(unsigned int bus, unsigned int cs)
{
- /* Tegra2 SPI-Flash - only 1 device ('bus/cs') */
+ /* Tegra SPI - only 1 device ('bus/cs') */
if (bus > 0 && cs != 0)
return 0;
else
@@ -62,7 +63,7 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
slave->cs = cs;
/*
- * Currently, Tegra2 SFLASH uses mode 0 & a 24MHz clock.
+ * Currently, Tegra SPI uses mode 0 & a 48MHz clock.
* Use 'mode' and 'maz_hz' to change that here, if needed.
*/
@@ -78,9 +79,15 @@ void spi_init(void)
{
struct spi_tegra *spi = (struct spi_tegra *)TEGRA_SPI_BASE;
u32 reg;
+ enum periph_id id;
+#ifdef CONFIG_USE_SLINK
+ id = PERIPH_ID_SBC4;
+#else
+ id = PERIPH_ID_SPI1;
+#endif
/* Change SPI clock to 48MHz, PLLP_OUT0 source */
- clock_start_periph_pll(PERIPH_ID_SPI1, CLOCK_ID_PERIPH, CLK_48M);
+ clock_start_periph_pll(id, CLOCK_ID_PERIPH, CLK_48M);
/* Clear stale status here */
reg = SPI_STAT_RDY | SPI_STAT_RXF_FLUSH | SPI_STAT_TXF_FLUSH | \
@@ -88,6 +95,13 @@ void spi_init(void)
writel(reg, &spi->status);
debug("spi_init: STATUS = %08x\n", readl(&spi->status));
+#ifdef CONFIG_USE_SLINK
+ /* Set master mode */
+ reg = readl(&spi->command);
+ writel(reg | SPI_CMD_M_S, &spi->command);
+ debug("spi_init: COMMAND = %08x\n", readl(&spi->command));
+#endif
+
/*
* Use sw-controlled CS, so we can clock in data after ReadID, etc.
*/
@@ -96,6 +110,7 @@ void spi_init(void)
writel(reg | SPI_CMD_CS_SOFT, &spi->command);
debug("spi_init: COMMAND = %08x\n", readl(&spi->command));
+#ifdef CONFIG_USE_SFLASH
/*
* SPI pins on Tegra2 are muxed - change pinmux last due to UART
* issue.
@@ -111,7 +126,8 @@ void spi_init(void)
* spi_uart_switch().
*/
pinmux_set_func(PINGRP_GMC, PMUX_FUNC_SFLASH);
-#endif
+#endif /* CONFIG_SPI_UART_SWITCH */
+#endif /* CONFIG_USE_SFLASH */
}
int spi_claim_bus(struct spi_slave *slave)
@@ -134,8 +150,9 @@ void spi_cs_activate(struct spi_slave *slave)
struct spi_tegra *spi = (struct spi_tegra *)TEGRA_SPI_BASE;
u32 val;
+#ifdef CONFIG_USE_SFLASH
spi_enable();
-
+#endif
/* CS is negated on Tegra, so drive a 1 to get a 0 */
val = readl(&spi->command);
writel(val | SPI_CMD_CS_VAL, &spi->command);
@@ -168,11 +185,21 @@ int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
status = readl(&spi->status);
writel(status, &spi->status); /* Clear all SPI events via R/W */
debug("spi_xfer entry: STATUS = %08x\n", status);
-
+#ifdef CONFIG_USE_SLINK
+ reg = readl(&spi->status2);
+ writel(reg, &spi->status2); /* Clear all STATUS2 events via R/W */
+ debug("spi_xfer entry: STATUS2 = %08x\n", reg);
+
+ debug("spi_xfer entry: COMMAND = %08x\n", readl(&spi->command));
+ reg = readl(&spi->command2);
+ writel((reg |= (SPI_CMD2_TXEN | SPI_CMD2_RXEN)), &spi->command2);
+ writel((reg |= SPI_CMD2_SS_EN), &spi->command2);
+ debug("spi_xfer: COMMAND2 = %08x\n", readl(&spi->command2));
+#else /* SPIFLASH a la Tegra2 */
reg = readl(&spi->command);
writel((reg |= (SPI_CMD_TXEN | SPI_CMD_RXEN)), &spi->command);
debug("spi_xfer: COMMAND = %08x\n", readl(&spi->command));
-
+#endif
if (flags & SPI_XFER_BEGIN)
spi_cs_activate(slave);
@@ -189,8 +216,8 @@ int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
num_bytes -= bytes;
if (dout)
- dout += bytes;
- bitlen -= bits;
+ dout += bytes;
+ bitlen -= bits;
reg = readl(&spi->command);
reg &= ~SPI_CMD_BIT_LENGTH_MASK;
@@ -240,12 +267,6 @@ int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
(tmpdin & 0xff);
tmpdin >>= 8;
}
-/* this is not the same!
- for (i = 0; i < bytes; ++i) {
- ((u8 *)din)[i] = (tmpdin >> 24);
- tmpdin <<= 8;
- }
-*/
din += bytes;
}
}