3 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
5 * Influenced by code from:
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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., 59 Temple Place, Suite 330, Boston,
32 /*-----------------------------------------------------------------------
37 #define PRINTD(fmt,args...) printf (fmt ,##args)
39 #define PRINTD(fmt,args...)
42 struct soft_spi_slave {
43 struct spi_slave slave;
47 static inline struct soft_spi_slave *to_soft_spi(struct spi_slave *slave)
49 return container_of(slave, struct soft_spi_slave, slave);
52 /*=====================================================================*/
53 /* Public Functions */
54 /*=====================================================================*/
56 /*-----------------------------------------------------------------------
62 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
68 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
69 unsigned int max_hz, unsigned int mode)
71 struct soft_spi_slave *ss;
73 if (!spi_cs_is_valid(bus, cs))
76 ss = spi_alloc_slave(struct soft_spi_slave, bus, cs);
82 /* TODO: Use max_hz to limit the SCK rate */
87 void spi_free_slave(struct spi_slave *slave)
89 struct soft_spi_slave *ss = to_soft_spi(slave);
94 int spi_claim_bus(struct spi_slave *slave)
96 #ifdef CONFIG_SYS_IMMR
97 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
99 struct soft_spi_slave *ss = to_soft_spi(slave);
102 * Make sure the SPI clock is in idle state as defined for
105 if (ss->mode & SPI_CPOL)
113 void spi_release_bus(struct spi_slave *slave)
118 /*-----------------------------------------------------------------------
121 * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks
122 * "bitlen" bits in the SPI MISO port. That's just the way SPI works.
124 * The source of the outgoing bits is the "dout" parameter and the
125 * destination of the input bits is the "din" parameter. Note that "dout"
126 * and "din" can point to the same memory location, in which case the
127 * input data overwrites the output data (since both are buffered by
128 * temporary variables, this is OK).
130 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
131 const void *dout, void *din, unsigned long flags)
133 #ifdef CONFIG_SYS_IMMR
134 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
136 struct soft_spi_slave *ss = to_soft_spi(slave);
139 const u8 *txd = dout;
141 int cpol = ss->mode & SPI_CPOL;
142 int cpha = ss->mode & SPI_CPHA;
145 PRINTD("spi_xfer: slave %u:%u dout %08X din %08X bitlen %u\n",
146 slave->bus, slave->cs, *(uint *)txd, *(uint *)rxd, bitlen);
148 if (flags & SPI_XFER_BEGIN)
149 spi_cs_activate(slave);
151 for(j = 0; j < bitlen; j++) {
153 * Check if it is time to work on a new byte.
165 SPI_SDA(tmpdout & 0x80);
179 * If the number of bits isn't a multiple of 8, shift the last
180 * bits over to left-justify them. Then store the last byte
183 if((bitlen % 8) != 0)
184 tmpdin <<= 8 - (bitlen % 8);
187 if (flags & SPI_XFER_END)
188 spi_cs_deactivate(slave);