arm: vf610: add uart0 clock/iomux definitions
[u-boot/qq2440-u-boot.git] / drivers / spi / soft_spi.c
blob5d22351290b6337280434cca41e2dd3372c504d2
1 /*
2 * (C) Copyright 2002
3 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
5 * Influenced by code from:
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * SPDX-License-Identifier: GPL-2.0+
9 */
11 #include <common.h>
12 #include <spi.h>
14 #include <malloc.h>
16 /*-----------------------------------------------------------------------
17 * Definitions
20 #ifdef DEBUG_SPI
21 #define PRINTD(fmt,args...) printf (fmt ,##args)
22 #else
23 #define PRINTD(fmt,args...)
24 #endif
26 struct soft_spi_slave {
27 struct spi_slave slave;
28 unsigned int mode;
31 static inline struct soft_spi_slave *to_soft_spi(struct spi_slave *slave)
33 return container_of(slave, struct soft_spi_slave, slave);
36 /*=====================================================================*/
37 /* Public Functions */
38 /*=====================================================================*/
40 /*-----------------------------------------------------------------------
41 * Initialization
43 void spi_init (void)
45 #ifdef SPI_INIT
46 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
48 SPI_INIT;
49 #endif
52 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
53 unsigned int max_hz, unsigned int mode)
55 struct soft_spi_slave *ss;
57 if (!spi_cs_is_valid(bus, cs))
58 return NULL;
60 ss = spi_alloc_slave(struct soft_spi_slave, bus, cs);
61 if (!ss)
62 return NULL;
64 ss->mode = mode;
66 /* TODO: Use max_hz to limit the SCK rate */
68 return &ss->slave;
71 void spi_free_slave(struct spi_slave *slave)
73 struct soft_spi_slave *ss = to_soft_spi(slave);
75 free(ss);
78 int spi_claim_bus(struct spi_slave *slave)
80 #ifdef CONFIG_SYS_IMMR
81 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
82 #endif
83 struct soft_spi_slave *ss = to_soft_spi(slave);
86 * Make sure the SPI clock is in idle state as defined for
87 * this slave.
89 if (ss->mode & SPI_CPOL)
90 SPI_SCL(1);
91 else
92 SPI_SCL(0);
94 return 0;
97 void spi_release_bus(struct spi_slave *slave)
99 /* Nothing to do */
102 /*-----------------------------------------------------------------------
103 * SPI transfer
105 * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks
106 * "bitlen" bits in the SPI MISO port. That's just the way SPI works.
108 * The source of the outgoing bits is the "dout" parameter and the
109 * destination of the input bits is the "din" parameter. Note that "dout"
110 * and "din" can point to the same memory location, in which case the
111 * input data overwrites the output data (since both are buffered by
112 * temporary variables, this is OK).
114 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
115 const void *dout, void *din, unsigned long flags)
117 #ifdef CONFIG_SYS_IMMR
118 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
119 #endif
120 struct soft_spi_slave *ss = to_soft_spi(slave);
121 uchar tmpdin = 0;
122 uchar tmpdout = 0;
123 const u8 *txd = dout;
124 u8 *rxd = din;
125 int cpol = ss->mode & SPI_CPOL;
126 int cpha = ss->mode & SPI_CPHA;
127 unsigned int j;
129 PRINTD("spi_xfer: slave %u:%u dout %08X din %08X bitlen %u\n",
130 slave->bus, slave->cs, *(uint *)txd, *(uint *)rxd, bitlen);
132 if (flags & SPI_XFER_BEGIN)
133 spi_cs_activate(slave);
135 for(j = 0; j < bitlen; j++) {
137 * Check if it is time to work on a new byte.
139 if((j % 8) == 0) {
140 tmpdout = *txd++;
141 if(j != 0) {
142 *rxd++ = tmpdin;
144 tmpdin = 0;
147 if (!cpha)
148 SPI_SCL(!cpol);
149 SPI_SDA(tmpdout & 0x80);
150 SPI_DELAY;
151 if (cpha)
152 SPI_SCL(!cpol);
153 else
154 SPI_SCL(cpol);
155 tmpdin <<= 1;
156 tmpdin |= SPI_READ;
157 tmpdout <<= 1;
158 SPI_DELAY;
159 if (cpha)
160 SPI_SCL(cpol);
163 * If the number of bits isn't a multiple of 8, shift the last
164 * bits over to left-justify them. Then store the last byte
165 * read in.
167 if((bitlen % 8) != 0)
168 tmpdin <<= 8 - (bitlen % 8);
169 *rxd++ = tmpdin;
171 if (flags & SPI_XFER_END)
172 spi_cs_deactivate(slave);
174 return(0);