3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6 * Derived from drivers/spi/mpc8xxx_spi.c
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
31 #include <asm/arch/kirkwood.h>
32 #include <asm/arch/spi.h>
33 #include <asm/arch/mpp.h>
35 static struct kwspi_registers *spireg = (struct kwspi_registers *)KW_SPI_BASE;
37 u32 cs_spi_mpp_back[2];
39 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
40 unsigned int max_hz, unsigned int mode)
42 struct spi_slave *slave;
44 static const u32 kwspi_mpp_config[2][2] = {
45 { MPP0_SPI_SCn, 0 }, /* if cs == 0 */
46 { MPP7_SPI_SCn, 0 } /* if cs != 0 */
49 if (!spi_cs_is_valid(bus, cs))
52 slave = malloc(sizeof(struct spi_slave));
59 writel(~KWSPI_CSN_ACT | KWSPI_SMEMRDY, &spireg->ctrl);
61 /* calculate spi clock prescaller using max_hz */
62 data = ((CONFIG_SYS_TCLK / 2) / max_hz) + 0x10;
63 data = data < KWSPI_CLKPRESCL_MIN ? KWSPI_CLKPRESCL_MIN : data;
64 data = data > KWSPI_CLKPRESCL_MASK ? KWSPI_CLKPRESCL_MASK : data;
66 /* program spi clock prescaller using max_hz */
67 writel(KWSPI_ADRLEN_3BYTE | data, &spireg->cfg);
68 debug("data = 0x%08x \n", data);
70 writel(KWSPI_SMEMRDIRQ, &spireg->irq_cause);
71 writel(KWSPI_IRQMASK, &spireg->irq_mask);
73 /* program mpp registers to select SPI_CSn */
74 kirkwood_mpp_conf(kwspi_mpp_config[cs ? 1 : 0], cs_spi_mpp_back);
79 void spi_free_slave(struct spi_slave *slave)
81 kirkwood_mpp_conf(cs_spi_mpp_back, NULL);
85 #if defined(CONFIG_SYS_KW_SPI_MPP)
86 u32 spi_mpp_backup[4];
89 __attribute__((weak)) int board_spi_claim_bus(struct spi_slave *slave)
94 int spi_claim_bus(struct spi_slave *slave)
96 #if defined(CONFIG_SYS_KW_SPI_MPP)
98 u32 spi_mpp_config[4];
100 config = CONFIG_SYS_KW_SPI_MPP;
102 if (config & MOSI_MPP6)
103 spi_mpp_config[0] = MPP6_SPI_MOSI;
105 spi_mpp_config[0] = MPP1_SPI_MOSI;
107 if (config & SCK_MPP10)
108 spi_mpp_config[1] = MPP10_SPI_SCK;
110 spi_mpp_config[1] = MPP2_SPI_SCK;
112 if (config & MISO_MPP11)
113 spi_mpp_config[2] = MPP11_SPI_MISO;
115 spi_mpp_config[2] = MPP3_SPI_MISO;
117 spi_mpp_config[3] = 0;
118 spi_mpp_backup[3] = 0;
120 /* set new spi mpp and save current mpp config */
121 kirkwood_mpp_conf(spi_mpp_config, spi_mpp_backup);
125 return board_spi_claim_bus(slave);
128 __attribute__((weak)) void board_spi_release_bus(struct spi_slave *slave)
132 void spi_release_bus(struct spi_slave *slave)
134 #if defined(CONFIG_SYS_KW_SPI_MPP)
135 kirkwood_mpp_conf(spi_mpp_backup, NULL);
138 board_spi_release_bus(slave);
141 #ifndef CONFIG_SPI_CS_IS_VALID
143 * you can define this function board specific
144 * define above CONFIG in board specific config file and
145 * provide the function in board specific src file
147 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
149 return (bus == 0 && (cs == 0 || cs == 1));
157 void spi_cs_activate(struct spi_slave *slave)
159 writel(readl(&spireg->ctrl) | KWSPI_IRQUNMASK, &spireg->ctrl);
162 void spi_cs_deactivate(struct spi_slave *slave)
164 writel(readl(&spireg->ctrl) & KWSPI_IRQMASK, &spireg->ctrl);
167 int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
168 void *din, unsigned long flags)
170 unsigned int tmpdout, tmpdin;
173 debug("spi_xfer: slave %u:%u dout %p din %p bitlen %u\n",
174 slave->bus, slave->cs, dout, din, bitlen);
176 if (flags & SPI_XFER_BEGIN)
177 spi_cs_activate(slave);
180 * handle data in 8-bit chunks
181 * TBD: 2byte xfer mode to be enabled
183 writel(((readl(&spireg->cfg) & ~KWSPI_XFERLEN_MASK) |
184 KWSPI_XFERLEN_1BYTE), &spireg->cfg);
187 debug("loopstart bitlen %d\n", bitlen);
190 /* Shift data so it's msb-justified */
192 tmpdout = *(u32 *) dout & 0x0ff;
194 writel(~KWSPI_SMEMRDIRQ, &spireg->irq_cause);
195 writel(tmpdout, &spireg->dout); /* Write the data out */
196 debug("*** spi_xfer: ... %08x written, bitlen %d\n",
200 * Wait for SPI transmit to get out
201 * or time out (1 second = 1000 ms)
202 * The NE event must be read and cleared first
204 for (tm = 0, isread = 0; tm < KWSPI_TIMEOUT; ++tm) {
205 if (readl(&spireg->irq_cause) & KWSPI_SMEMRDIRQ) {
207 tmpdin = readl(&spireg->din);
209 ("spi_xfer: din %p..%08x read\n",
213 *((u8 *) din) = (u8) tmpdin;
223 if (tm >= KWSPI_TIMEOUT)
224 printf("*** spi_xfer: Time out during SPI transfer\n");
226 debug("loopend bitlen %d\n", bitlen);
229 if (flags & SPI_XFER_END)
230 spi_cs_deactivate(slave);