2 * Copyright © 2013 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 static uint8_t ao_spi_mutex[LPC_NUM_SPI];
23 static struct lpc_ssp * const ao_lpc_ssp[LPC_NUM_SPI] = { &lpc_ssp0, &lpc_ssp1 };
25 #define spi_loop(len, put, get) do { \
29 /* wait for the received byte to appear */ \
30 while ((lpc_ssp->sr & (1 << LPC_SSP_SR_RNE)) == 0) \
32 /* receive a byte */ \
35 /* Wait for the SSP to go idle (it already should be) */ \
36 while (lpc_ssp->sr & (1 << LPC_SSP_SR_BSY)); \
40 ao_spi_send(const void *block, uint16_t len, uint8_t id)
42 struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
43 const uint8_t *o = block;
45 spi_loop(len, *o++, (void));
49 ao_spi_send_fixed(uint8_t value, uint16_t len, uint8_t id)
51 struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
53 spi_loop(len, value, (void));
57 ao_spi_recv(void *block, uint16_t len, uint8_t id)
59 struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
62 spi_loop(len, 0xff, *i++ =);
66 ao_spi_duplex(const void *out, void *in, uint16_t len, uint8_t id)
68 struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
69 const uint8_t *o = out;
72 spi_loop(len, *o++, *i++ =);
76 ao_spi_get(uint8_t id, uint32_t speed)
78 struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
80 ao_mutex_get(&ao_spi_mutex[id]);
82 /* Set the clock prescale */
83 lpc_ssp->cpsr = speed;
87 ao_spi_put(uint8_t id)
89 ao_mutex_put(&ao_spi_mutex[id]);
93 ao_spi_channel_init(uint8_t id)
95 struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
98 /* Clear interrupt registers */
103 lpc_ssp->cr0 = ((LPC_SSP_CR0_DSS_8 << LPC_SSP_CR0_DSS) |
104 (LPC_SSP_CR0_FRF_SPI << LPC_SSP_CR0_FRF) |
105 (0 << LPC_SSP_CR0_CPOL) |
106 (0 << LPC_SSP_CR0_CPHA) |
107 (0 << LPC_SSP_CR0_SCR));
109 /* Enable the device */
110 lpc_ssp->cr1 = ((0 << LPC_SSP_CR1_LBM) |
111 (1 << LPC_SSP_CR1_SSE) |
112 (LPC_SSP_CR1_MS_MASTER << LPC_SSP_CR1_MS) |
113 (0 << LPC_SSP_CR1_SOD));
115 /* Drain the receive fifo */
116 for (d = 0; d < LPC_SSP_FIFOSIZE; d++)
126 lpc_ioconf.pio0_6 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_6_SCK0);
130 lpc_ioconf.pio0_10 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_10_SCK0);
134 lpc_ioconf.pio1_29 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_29_SCK0);
138 #error "No pin specified for SCK0"
140 lpc_ioconf.pio0_8 = ao_lpc_alternate(LPC_IOCONF_FUNC_MISO0);
141 lpc_ioconf.pio0_9 = ao_lpc_alternate(LPC_IOCONF_FUNC_MOSI0);
143 /* Enable the device */
144 lpc_scb.sysahbclkctrl |= (1 << LPC_SCB_SYSAHBCLKCTRL_SSP0);
146 /* Turn on the clock */
147 lpc_scb.ssp0clkdiv = 1;
149 /* Reset the device */
150 lpc_scb.presetctrl &= ~(1 << LPC_SCB_PRESETCTRL_SSP0_RST_N);
151 lpc_scb.presetctrl |= (1 << LPC_SCB_PRESETCTRL_SSP0_RST_N);
152 ao_spi_channel_init(0);
158 lpc_ioconf.pio1_15 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_15_SCK1);
162 lpc_ioconf.pio1_20 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_20_SCK1);
166 #error "No pin specified for SCK1"
170 lpc_ioconf.pio0_22 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_22_MISO1);
174 lpc_ioconf.pio1_21 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_21_MISO1);
178 #error "No pin specified for MISO1"
182 lpc_ioconf.pio0_21 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_21_MOSI1);
186 lpc_ioconf.pio1_22 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_22_MOSI1);
190 #error "No pin specified for MOSI1"
193 /* Enable the device */
194 lpc_scb.sysahbclkctrl |= (1 << LPC_SCB_SYSAHBCLKCTRL_SSP1);
196 /* Turn on the clock */
197 lpc_scb.ssp1clkdiv = 1;
199 /* Reset the device */
200 lpc_scb.presetctrl &= ~(1 << LPC_SCB_PRESETCTRL_SSP1_RST_N);
201 lpc_scb.presetctrl |= (1 << LPC_SCB_PRESETCTRL_SSP1_RST_N);
202 ao_spi_channel_init(1);
203 #endif /* HAS_SPI_1 */