3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6 * Derived from drivers/spi/mpc8xxx_spi.c
8 * SPDX-License-Identifier: GPL-2.0+
15 #include <asm/arch/kirkwood.h>
16 #include <asm/arch/spi.h>
17 #include <asm/arch/mpp.h>
19 static struct kwspi_registers *spireg = (struct kwspi_registers *)KW_SPI_BASE;
21 u32 cs_spi_mpp_back[2];
23 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
24 unsigned int max_hz, unsigned int mode)
26 struct spi_slave *slave;
28 static const u32 kwspi_mpp_config[2][2] = {
29 { MPP0_SPI_SCn, 0 }, /* if cs == 0 */
30 { MPP7_SPI_SCn, 0 } /* if cs != 0 */
33 if (!spi_cs_is_valid(bus, cs))
36 slave = spi_alloc_slave_base(bus, cs);
40 writel(~KWSPI_CSN_ACT | KWSPI_SMEMRDY, &spireg->ctrl);
42 /* calculate spi clock prescaller using max_hz */
43 data = ((CONFIG_SYS_TCLK / 2) / max_hz) + 0x10;
44 data = data < KWSPI_CLKPRESCL_MIN ? KWSPI_CLKPRESCL_MIN : data;
45 data = data > KWSPI_CLKPRESCL_MASK ? KWSPI_CLKPRESCL_MASK : data;
47 /* program spi clock prescaller using max_hz */
48 writel(KWSPI_ADRLEN_3BYTE | data, &spireg->cfg);
49 debug("data = 0x%08x \n", data);
51 writel(KWSPI_SMEMRDIRQ, &spireg->irq_cause);
52 writel(KWSPI_IRQMASK, &spireg->irq_mask);
54 /* program mpp registers to select SPI_CSn */
55 kirkwood_mpp_conf(kwspi_mpp_config[cs ? 1 : 0], cs_spi_mpp_back);
60 void spi_free_slave(struct spi_slave *slave)
62 kirkwood_mpp_conf(cs_spi_mpp_back, NULL);
66 #if defined(CONFIG_SYS_KW_SPI_MPP)
67 u32 spi_mpp_backup[4];
70 __attribute__((weak)) int board_spi_claim_bus(struct spi_slave *slave)
75 int spi_claim_bus(struct spi_slave *slave)
77 #if defined(CONFIG_SYS_KW_SPI_MPP)
79 u32 spi_mpp_config[4];
81 config = CONFIG_SYS_KW_SPI_MPP;
83 if (config & MOSI_MPP6)
84 spi_mpp_config[0] = MPP6_SPI_MOSI;
86 spi_mpp_config[0] = MPP1_SPI_MOSI;
88 if (config & SCK_MPP10)
89 spi_mpp_config[1] = MPP10_SPI_SCK;
91 spi_mpp_config[1] = MPP2_SPI_SCK;
93 if (config & MISO_MPP11)
94 spi_mpp_config[2] = MPP11_SPI_MISO;
96 spi_mpp_config[2] = MPP3_SPI_MISO;
98 spi_mpp_config[3] = 0;
99 spi_mpp_backup[3] = 0;
101 /* set new spi mpp and save current mpp config */
102 kirkwood_mpp_conf(spi_mpp_config, spi_mpp_backup);
106 return board_spi_claim_bus(slave);
109 __attribute__((weak)) void board_spi_release_bus(struct spi_slave *slave)
113 void spi_release_bus(struct spi_slave *slave)
115 #if defined(CONFIG_SYS_KW_SPI_MPP)
116 kirkwood_mpp_conf(spi_mpp_backup, NULL);
119 board_spi_release_bus(slave);
122 #ifndef CONFIG_SPI_CS_IS_VALID
124 * you can define this function board specific
125 * define above CONFIG in board specific config file and
126 * provide the function in board specific src file
128 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
130 return (bus == 0 && (cs == 0 || cs == 1));
138 void spi_cs_activate(struct spi_slave *slave)
140 writel(readl(&spireg->ctrl) | KWSPI_IRQUNMASK, &spireg->ctrl);
143 void spi_cs_deactivate(struct spi_slave *slave)
145 writel(readl(&spireg->ctrl) & KWSPI_IRQMASK, &spireg->ctrl);
148 int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
149 void *din, unsigned long flags)
151 unsigned int tmpdout, tmpdin;
154 debug("spi_xfer: slave %u:%u dout %p din %p bitlen %u\n",
155 slave->bus, slave->cs, dout, din, bitlen);
157 if (flags & SPI_XFER_BEGIN)
158 spi_cs_activate(slave);
161 * handle data in 8-bit chunks
162 * TBD: 2byte xfer mode to be enabled
164 writel(((readl(&spireg->cfg) & ~KWSPI_XFERLEN_MASK) |
165 KWSPI_XFERLEN_1BYTE), &spireg->cfg);
168 debug("loopstart bitlen %d\n", bitlen);
171 /* Shift data so it's msb-justified */
173 tmpdout = *(u32 *) dout & 0x0ff;
175 writel(~KWSPI_SMEMRDIRQ, &spireg->irq_cause);
176 writel(tmpdout, &spireg->dout); /* Write the data out */
177 debug("*** spi_xfer: ... %08x written, bitlen %d\n",
181 * Wait for SPI transmit to get out
182 * or time out (1 second = 1000 ms)
183 * The NE event must be read and cleared first
185 for (tm = 0, isread = 0; tm < KWSPI_TIMEOUT; ++tm) {
186 if (readl(&spireg->irq_cause) & KWSPI_SMEMRDIRQ) {
188 tmpdin = readl(&spireg->din);
190 ("spi_xfer: din %p..%08x read\n",
194 *((u8 *) din) = (u8) tmpdin;
204 if (tm >= KWSPI_TIMEOUT)
205 printf("*** spi_xfer: Time out during SPI transfer\n");
207 debug("loopend bitlen %d\n", bitlen);
210 if (flags & SPI_XFER_END)
211 spi_cs_deactivate(slave);