2 * Copyright (C) 2007 Atmel Corporation
4 * See file CREDITS for list of people who contributed to this
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #include <asm/arch/clk.h>
29 #include <asm/arch/hardware.h>
31 #include "atmel_spi.h"
38 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
39 unsigned int max_hz, unsigned int mode)
41 struct atmel_spi_slave *as;
46 if (!spi_cs_is_valid(bus, cs))
51 regs = (void *)ATMEL_BASE_SPI0;
53 #ifdef ATMEL_BASE_SPI1
55 regs = (void *)ATMEL_BASE_SPI1;
58 #ifdef ATMEL_BASE_SPI2
60 regs = (void *)ATMEL_BASE_SPI2;
63 #ifdef ATMEL_BASE_SPI3
65 regs = (void *)ATMEL_BASE_SPI3;
73 scbr = (get_spi_clk_rate(bus) + max_hz - 1) / max_hz;
74 if (scbr > ATMEL_SPI_CSRx_SCBR_MAX)
75 /* Too low max SCK rate */
80 csrx = ATMEL_SPI_CSRx_SCBR(scbr);
81 csrx |= ATMEL_SPI_CSRx_BITS(ATMEL_SPI_BITS_8);
82 if (!(mode & SPI_CPHA))
83 csrx |= ATMEL_SPI_CSRx_NCPHA;
85 csrx |= ATMEL_SPI_CSRx_CPOL;
87 as = spi_alloc_slave(struct atmel_spi_slave, bus, cs);
92 as->mr = ATMEL_SPI_MR_MSTR | ATMEL_SPI_MR_MODFDIS
93 #if defined(CONFIG_AT91SAM9X5) || defined(CONFIG_AT91SAM9M10G45)
96 | ATMEL_SPI_MR_PCS(~(1 << cs) & 0xf);
97 spi_writel(as, CSR(cs), csrx);
102 void spi_free_slave(struct spi_slave *slave)
104 struct atmel_spi_slave *as = to_atmel_spi(slave);
109 int spi_claim_bus(struct spi_slave *slave)
111 struct atmel_spi_slave *as = to_atmel_spi(slave);
113 /* Enable the SPI hardware */
114 spi_writel(as, CR, ATMEL_SPI_CR_SPIEN);
117 * Select the slave. This should set SCK to the correct
118 * initial state, etc.
120 spi_writel(as, MR, as->mr);
125 void spi_release_bus(struct spi_slave *slave)
127 struct atmel_spi_slave *as = to_atmel_spi(slave);
129 /* Disable the SPI hardware */
130 spi_writel(as, CR, ATMEL_SPI_CR_SPIDIS);
133 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
134 const void *dout, void *din, unsigned long flags)
136 struct atmel_spi_slave *as = to_atmel_spi(slave);
141 const u8 *txp = dout;
146 /* Finish any previously submitted transfers */
150 * TODO: The controller can do non-multiple-of-8 bit
151 * transfers, but this driver currently doesn't support it.
153 * It's also not clear how such transfers are supposed to be
154 * represented as a stream of bytes...this is a limitation of
155 * the current SPI interface.
158 /* Errors always terminate an ongoing transfer */
159 flags |= SPI_XFER_END;
166 * The controller can do automatic CS control, but it is
167 * somewhat quirky, and it doesn't really buy us much anyway
168 * in the context of U-Boot.
170 if (flags & SPI_XFER_BEGIN) {
171 spi_cs_activate(slave);
173 * sometimes the RDR is not empty when we get here,
174 * in theory that should not happen, but it DOES happen.
175 * Read it here to be on the safe side.
176 * That also clears the OVRES flag. Required if the
177 * following loop exits due to OVRES!
182 for (len_tx = 0, len_rx = 0; len_rx < len; ) {
183 status = spi_readl(as, SR);
185 if (status & ATMEL_SPI_SR_OVRES)
188 if (len_tx < len && (status & ATMEL_SPI_SR_TDRE)) {
193 spi_writel(as, TDR, value);
196 if (status & ATMEL_SPI_SR_RDRF) {
197 value = spi_readl(as, RDR);
205 if (flags & SPI_XFER_END) {
207 * Wait until the transfer is completely done before
211 status = spi_readl(as, SR);
212 } while (!(status & ATMEL_SPI_SR_TXEMPTY));
214 spi_cs_deactivate(slave);