altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / src / lpc / ao_spi_lpc.c
1 /*
2  * Copyright © 2013 Keith Packard <keithp@keithp.com>
3  *
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.
8  *
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.
13  *
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.
17  */
18
19 #include <ao.h>
20
21 static uint8_t          ao_spi_mutex[LPC_NUM_SPI];
22
23 static struct lpc_ssp * const ao_lpc_ssp[LPC_NUM_SPI] = { &lpc_ssp0, &lpc_ssp1 };
24
25 #define spi_loop(len, put, get) do {                                    \
26                 while (len--) {                                         \
27                         /* send a byte */                               \
28                         lpc_ssp->dr = put;                              \
29                         /* wait for the received byte to appear */      \
30                         while ((lpc_ssp->sr & (1 << LPC_SSP_SR_RNE)) == 0) \
31                                 ;                                       \
32                         /* receive a byte */                            \
33                         get (uint8_t) lpc_ssp->dr;                      \
34                 }                                                       \
35                 /* Wait for the SSP to go idle (it already should be) */ \
36                 while (lpc_ssp->sr & (1 << LPC_SSP_SR_BSY));            \
37         } while (0)
38
39 void
40 ao_spi_send(const void *block, uint16_t len, uint8_t id)
41 {
42         struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
43         const uint8_t   *o = block;
44
45         spi_loop(len, *o++, (void));
46 }
47
48 void
49 ao_spi_send_fixed(uint8_t value, uint16_t len, uint8_t id)
50 {
51         struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
52
53         spi_loop(len, value, (void));
54 }
55
56 void
57 ao_spi_recv(void *block, uint16_t len, uint8_t id)
58 {
59         struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
60         uint8_t *i = block;
61
62         spi_loop(len, 0xff, *i++ =);
63 }
64
65 void
66 ao_spi_duplex(const void *out, void *in, uint16_t len, uint8_t id)
67 {
68         struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
69         const uint8_t *o = out;
70         uint8_t *i = in;
71
72         spi_loop(len, *o++, *i++ =);
73 }
74
75 void
76 ao_spi_get(uint8_t id, uint32_t speed)
77 {
78         struct lpc_ssp  *lpc_ssp = ao_lpc_ssp[id];
79
80         ao_mutex_get(&ao_spi_mutex[id]);
81
82         /* Set the clock prescale */
83         lpc_ssp->cpsr = speed;
84 }
85
86 void
87 ao_spi_put(uint8_t id)
88 {
89         ao_mutex_put(&ao_spi_mutex[id]);
90 }
91
92 static void
93 ao_spi_channel_init(uint8_t id)
94 {
95         struct lpc_ssp  *lpc_ssp = ao_lpc_ssp[id];
96         uint8_t d;
97
98         /* Clear interrupt registers */
99         lpc_ssp->imsc = 0;
100         lpc_ssp->ris = 0;
101         lpc_ssp->mis = 0;
102
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));
108
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));
114
115         /* Drain the receive fifo */
116         for (d = 0; d < LPC_SSP_FIFOSIZE; d++)
117                 (void) lpc_ssp->dr;
118 }
119
120 void
121 ao_spi_init(void)
122 {
123 #if HAS_SPI_0
124         /* Configure pins */
125 #if SPI_SCK0_P0_6
126         lpc_ioconf.pio0_6 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_6_SCK0);
127 #define HAS_SCK0
128 #endif
129 #if SPI_SCK0_P0_10
130         lpc_ioconf.pio0_10 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_10_SCK0);
131 #define HAS_SCK0
132 #endif
133 #if SPI_SCK0_P1_29
134         lpc_ioconf.pio1_29 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_29_SCK0);
135 #define HAS_SCK0
136 #endif
137 #ifndef HAS_SCK0
138 #error "No pin specified for SCK0"
139 #endif
140         lpc_ioconf.pio0_8 = ao_lpc_alternate(LPC_IOCONF_FUNC_MISO0);
141         lpc_ioconf.pio0_9 = ao_lpc_alternate(LPC_IOCONF_FUNC_MOSI0);
142
143         /* Enable the device */
144         lpc_scb.sysahbclkctrl |= (1 << LPC_SCB_SYSAHBCLKCTRL_SSP0);
145
146         /* Turn on the clock */
147         lpc_scb.ssp0clkdiv = 1;
148
149         /* Reset the device */
150         lpc_scb.presetctrl &= ~(1UL << LPC_SCB_PRESETCTRL_SSP0_RST_N);
151         lpc_scb.presetctrl |= (1 << LPC_SCB_PRESETCTRL_SSP0_RST_N);
152         ao_spi_channel_init(0);
153 #endif
154
155 #if HAS_SPI_1
156
157 #if SPI_SCK1_P1_15
158         lpc_ioconf.pio1_15 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_15_SCK1);
159 #define HAS_SCK1
160 #endif
161 #if SPI_SCK1_P1_20
162         lpc_ioconf.pio1_20 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_20_SCK1);
163 #define HAS_SCK1
164 #endif
165 #ifndef HAS_SCK1
166 #error "No pin specified for SCK1"
167 #endif
168
169 #if SPI_MISO1_P0_22
170         lpc_ioconf.pio0_22 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_22_MISO1);
171 #define HAS_MISO1
172 #endif
173 #if SPI_MISO1_P1_21
174         lpc_ioconf.pio1_21 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_21_MISO1);
175 #define HAS_MISO1
176 #endif
177 #ifndef HAS_MISO1
178 #error "No pin specified for MISO1"
179 #endif
180
181 #if SPI_MOSI1_P0_21
182         lpc_ioconf.pio0_21 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_21_MOSI1);
183 #define HAS_MOSI1
184 #endif
185 #if SPI_MOSI1_P1_22
186         lpc_ioconf.pio1_22 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_22_MOSI1);
187 #define HAS_MOSI1
188 #endif
189 #ifndef HAS_MOSI1
190 #error "No pin specified for MOSI1"
191 #endif
192
193         /* Enable the device */
194         lpc_scb.sysahbclkctrl |= (1 << LPC_SCB_SYSAHBCLKCTRL_SSP1);
195
196         /* Turn on the clock */
197         lpc_scb.ssp1clkdiv = 1;
198
199         /* Reset the device */
200         lpc_scb.presetctrl &= ~(1UL << 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 */
204 }