3 * Frank Bodammer <frank.bodammer@gcd-solutions.de>
4 * (C) Copyright 2009 Semihalf, Grzegorz Bernacki
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33 struct mpc5xxx_spi *spi = (struct mpc5xxx_spi *)MPC5XXX_SPI;
35 * Its important to use the correct order when initializing the
38 out_8(&spi->ddr, 0x0F); /* set all SPI pins as output */
39 out_8(&spi->pdr, 0x00); /* set SS low */
40 /* SPI is master, SS is general purpose output */
41 out_8(&spi->cr1, SPI_CR_MSTR | SPI_CR_SPE);
42 out_8(&spi->cr2, 0x00); /* normal operation */
43 out_8(&spi->brr, 0x77); /* baud rate: IPB clock / 2048 */
46 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
47 unsigned int max_hz, unsigned int mode)
49 struct spi_slave *slave;
51 slave = malloc(sizeof(struct spi_slave));
61 void spi_free_slave(struct spi_slave *slave)
66 int spi_claim_bus(struct spi_slave *slave)
71 void spi_release_bus(struct spi_slave *slave)
76 int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
77 void *din, unsigned long flags)
79 struct mpc5xxx_spi *spi = (struct mpc5xxx_spi *)MPC5XXX_SPI;
80 int i, iter = bitlen >> 3;
81 const uchar *txp = dout;
84 debug("spi_xfer: slave %u:%u dout %08X din %08X bitlen %u\n",
85 slave->bus, slave->cs, *(uint *) dout, *(uint *) din, bitlen);
87 if (flags & SPI_XFER_BEGIN)
88 setbits_8(&spi->pdr, SPI_PDR_SS);
90 for (i = 0; i < iter; i++) {
92 debug("spi_xfer: sending %x\n", txp[i]);
93 out_8(&spi->dr, txp[i]);
94 while (!(in_8(&spi->sr) & SPI_SR_SPIF)) {
96 if (in_8(&spi->sr) & SPI_SR_WCOL) {
97 rxp[i] = in_8(&spi->dr);
98 puts("spi_xfer: write collision\n");
102 rxp[i] = in_8(&spi->dr);
103 debug("spi_xfer: received %x\n", rxp[i]);
105 if (flags & SPI_XFER_END)
106 clrbits_8(&spi->pdr, SPI_PDR_SS);