a889137cbb7a4e1f84437f601d76e78f8cc22ce8
[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; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include <ao.h>
19
20 static uint8_t          ao_spi_mutex[LPC_NUM_SPI];
21
22 static struct lpc_ssp * const ao_lpc_ssp[LPC_NUM_SPI] = { &lpc_ssp0, &lpc_ssp1 };
23
24 static uint8_t  spi_dev_null;
25
26 #define tx_busy(lpc_ssp) (lpc_ssp->sr & ((1 << LPC_SSP_SR_BSY) | (1 << LPC_SSP_SR_TNF))) != (1 << LPC_SSP_SR_TNF)
27 #define rx_busy(lpc_ssp) (lpc_ssp->sr & ((1 << LPC_SSP_SR_BSY) | (1 << LPC_SSP_SR_RNE))) != (1 << LPC_SSP_SR_RNE)
28
29 #define spi_loop(len, put, get) do {                                    \
30                 while (len--) {                                         \
31                         /* Wait for space in the fifo */                \
32                         while (tx_busy(lpc_ssp))                        \
33                                 ;                                       \
34                                                                         \
35                         /* send a byte */                               \
36                         lpc_ssp->dr = put;                              \
37                                                                         \
38                         /* Wait for byte to appear in the fifo */       \
39                         while (rx_busy(lpc_ssp))                        \
40                                 ;                                       \
41                                                                         \
42                         /* recv a byte */                               \
43                         get lpc_ssp->dr;                                \
44                 }                                                       \
45         } while (0)
46
47 void
48 ao_spi_send(void *block, uint16_t len, uint8_t id)
49 {
50         uint8_t *b = block;
51         struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
52
53         spi_loop(len, *b++, (void));
54 }
55
56 void
57 ao_spi_send_fixed(uint8_t value, uint16_t len, uint8_t id)
58 {
59         struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
60
61         spi_loop(len, value, (void));
62 }
63
64 void
65 ao_spi_recv(void *block, uint16_t len, uint8_t id)
66 {
67         uint8_t *b = block;
68         struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
69
70         spi_loop(len, 0xff, *b++ =);
71 }
72
73 void
74 ao_spi_duplex(void *out, void *in, uint16_t len, uint8_t id)
75 {
76         uint8_t *o = out;
77         uint8_t *i = in;
78         struct lpc_ssp *lpc_ssp = ao_lpc_ssp[id];
79
80         spi_loop(len, *o++, *i++ =);
81 }
82
83 void
84 ao_spi_get(uint8_t id, uint32_t speed)
85 {
86         struct lpc_ssp  *lpc_ssp = ao_lpc_ssp[id];
87
88         ao_mutex_get(&ao_spi_mutex[id]);
89         
90         /* Set the clock prescale */
91         lpc_ssp->cpsr = speed;
92 }
93
94 void
95 ao_spi_put(uint8_t id)
96 {
97         ao_mutex_put(&ao_spi_mutex[id]);
98 }
99
100 static void
101 ao_spi_channel_init(uint8_t id)
102 {
103         struct lpc_ssp  *lpc_ssp = ao_lpc_ssp[id];
104         uint8_t d;
105
106         lpc_ssp->cr0 = ((LPC_SSP_CR0_DSS_8 << LPC_SSP_CR0_DSS) |
107                         (LPC_SSP_CR0_FRF_SPI << LPC_SSP_CR0_FRF) |
108                         (0 << LPC_SSP_CR0_CPOL) |
109                         (0 << LPC_SSP_CR0_CPHA) |
110                         (0 << LPC_SSP_CR0_SCR));
111
112         /* Enable the device */
113         lpc_ssp->cr1 = ((0 << LPC_SSP_CR1_LBM) |
114                         (1 << LPC_SSP_CR1_SSE) |
115                         (LPC_SSP_CR1_MS_MASTER << LPC_SSP_CR1_MS) |
116                         (0 << LPC_SSP_CR1_SOD));
117
118         /* Drain the receive fifo */
119         for (d = 0; d < LPC_SSP_FIFOSIZE; d++)
120                 (void) lpc_ssp->dr;
121 }
122
123 void
124 ao_spi_init(void)
125 {
126 #if HAS_SPI_0
127         /* Configure pins */
128 #if SPI_SCK0_P0_6
129         lpc_ioconf.pio0_6 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_6_SCK0);
130 #define HAS_SCK0
131 #endif
132 #if SPI_SCK0_P0_10
133         lpc_ioconf.pio0_10 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_10_SCK0);
134 #define HAS_SCK0
135 #endif
136 #if SPI_SCK0_P1_29
137         lpc_ioconf.pio1_29 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_29_SCK0);
138 #define HAS_SCK0
139 #endif
140 #ifndef HAS_SCK0
141 #error "No pin specified for SCK0"
142 #endif
143         lpc_ioconf.pio0_8 = ao_lpc_alternate(LPC_IOCONF_FUNC_MISO0);
144         lpc_ioconf.pio0_9 = ao_lpc_alternate(LPC_IOCONF_FUNC_MOSI0);
145
146         /* Enable the device */
147         lpc_scb.sysahbclkctrl |= (1 << LPC_SCB_SYSAHBCLKCTRL_SSP0);
148
149         /* Turn on the clock */
150         lpc_scb.ssp0clkdiv = 1;
151
152         /* Reset the device */
153         lpc_scb.presetctrl &= ~(1 << LPC_SCB_PRESETCTRL_SSP0_RST_N);
154         lpc_scb.presetctrl |= (1 << LPC_SCB_PRESETCTRL_SSP0_RST_N);
155         ao_spi_channel_init(0);
156 #endif                     
157
158 #if HAS_SPI_1
159
160 #if SPI_SCK1_P1_15
161         lpc_ioconf.pio1_15 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_15_SCK1);
162 #define HAS_SCK1
163 #endif
164 #if SPI_SCK1_P1_20
165         lpc_ioconf.pio1_20 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_20_SCK1);
166 #define HAS_SCK1
167 #endif
168 #ifndef HAS_SCK1
169 #error "No pin specified for SCK1"
170 #endif
171
172 #if SPI_MISO1_P0_22
173         lpc_ioconf.pio0_22 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_22_MISO1);
174 #define HAS_MISO1
175 #endif
176 #if SPI_MISO1_P1_21
177         lpc_ioconf.pio1_21 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_21_MISO1);
178 #define HAS_MISO1
179 #endif
180 #ifndef HAS_MISO1
181 #error "No pin specified for MISO1"
182 #endif
183
184 #if SPI_MOSI1_P0_21
185         lpc_ioconf.pio0_21 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO0_21_MOSI1);
186 #define HAS_MOSI1
187 #endif
188 #if SPI_MOSI1_P1_22
189         lpc_ioconf.pio1_22 = ao_lpc_alternate(LPC_IOCONF_FUNC_PIO1_22_MOSI1);
190 #define HAS_MOSI1
191 #endif
192 #ifndef HAS_MOSI1
193 #error "No pin specified for MOSI1"
194 #endif
195                 
196         /* Enable the device */
197         lpc_scb.sysahbclkctrl |= (1 << LPC_SCB_SYSAHBCLKCTRL_SSP1);
198
199         /* Turn on the clock */
200         lpc_scb.ssp1clkdiv = 1;
201
202         /* Reset the device */
203         lpc_scb.presetctrl &= ~(1 << LPC_SCB_PRESETCTRL_SSP1_RST_N);
204         lpc_scb.presetctrl |= (1 << LPC_SCB_PRESETCTRL_SSP1_RST_N);
205         ao_spi_channel_init(1);
206 #endif /* HAS_SPI_1 */
207 }