spi.c revision 1.8.38.2 1 1.8.38.2 martin /* $NetBSD: spi.c,v 1.8.38.2 2020/04/13 08:04:48 martin Exp $ */
2 1.1 gdamore
3 1.1 gdamore /*-
4 1.1 gdamore * Copyright (c) 2006 Urbana-Champaign Independent Media Center.
5 1.1 gdamore * Copyright (c) 2006 Garrett D'Amore.
6 1.1 gdamore * All rights reserved.
7 1.1 gdamore *
8 1.1 gdamore * Portions of this code were written by Garrett D'Amore for the
9 1.1 gdamore * Champaign-Urbana Community Wireless Network Project.
10 1.1 gdamore *
11 1.1 gdamore * Redistribution and use in source and binary forms, with or
12 1.1 gdamore * without modification, are permitted provided that the following
13 1.1 gdamore * conditions are met:
14 1.1 gdamore * 1. Redistributions of source code must retain the above copyright
15 1.1 gdamore * notice, this list of conditions and the following disclaimer.
16 1.1 gdamore * 2. Redistributions in binary form must reproduce the above
17 1.1 gdamore * copyright notice, this list of conditions and the following
18 1.1 gdamore * disclaimer in the documentation and/or other materials provided
19 1.1 gdamore * with the distribution.
20 1.1 gdamore * 3. All advertising materials mentioning features or use of this
21 1.1 gdamore * software must display the following acknowledgements:
22 1.1 gdamore * This product includes software developed by the Urbana-Champaign
23 1.1 gdamore * Independent Media Center.
24 1.1 gdamore * This product includes software developed by Garrett D'Amore.
25 1.1 gdamore * 4. Urbana-Champaign Independent Media Center's name and Garrett
26 1.1 gdamore * D'Amore's name may not be used to endorse or promote products
27 1.1 gdamore * derived from this software without specific prior written permission.
28 1.1 gdamore *
29 1.1 gdamore * THIS SOFTWARE IS PROVIDED BY THE URBANA-CHAMPAIGN INDEPENDENT
30 1.1 gdamore * MEDIA CENTER AND GARRETT D'AMORE ``AS IS'' AND ANY EXPRESS OR
31 1.1 gdamore * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
32 1.1 gdamore * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33 1.1 gdamore * ARE DISCLAIMED. IN NO EVENT SHALL THE URBANA-CHAMPAIGN INDEPENDENT
34 1.1 gdamore * MEDIA CENTER OR GARRETT D'AMORE BE LIABLE FOR ANY DIRECT, INDIRECT,
35 1.1 gdamore * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 1.1 gdamore * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37 1.1 gdamore * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
38 1.1 gdamore * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1 gdamore * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40 1.1 gdamore * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
41 1.1 gdamore * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42 1.1 gdamore */
43 1.1 gdamore
44 1.1 gdamore #include <sys/cdefs.h>
45 1.8.38.2 martin __KERNEL_RCSID(0, "$NetBSD: spi.c,v 1.8.38.2 2020/04/13 08:04:48 martin Exp $");
46 1.1 gdamore
47 1.1 gdamore #include "locators.h"
48 1.1 gdamore
49 1.1 gdamore #include <sys/param.h>
50 1.1 gdamore #include <sys/systm.h>
51 1.1 gdamore #include <sys/device.h>
52 1.8.38.1 christos #include <sys/conf.h>
53 1.1 gdamore #include <sys/malloc.h>
54 1.5 rmind #include <sys/mutex.h>
55 1.5 rmind #include <sys/condvar.h>
56 1.1 gdamore #include <sys/errno.h>
57 1.1 gdamore
58 1.1 gdamore #include <dev/spi/spivar.h>
59 1.8.38.1 christos #include <dev/spi/spi_io.h>
60 1.8.38.1 christos
61 1.8.38.1 christos #include "ioconf.h"
62 1.8.38.1 christos #include "locators.h"
63 1.1 gdamore
64 1.1 gdamore struct spi_softc {
65 1.1 gdamore struct spi_controller sc_controller;
66 1.1 gdamore int sc_mode;
67 1.1 gdamore int sc_speed;
68 1.8.38.1 christos int sc_slave;
69 1.1 gdamore int sc_nslaves;
70 1.1 gdamore struct spi_handle *sc_slaves;
71 1.8.38.1 christos kmutex_t sc_lock;
72 1.8.38.1 christos kcondvar_t sc_cv;
73 1.8.38.1 christos int sc_flags;
74 1.8.38.1 christos #define SPIC_BUSY 1
75 1.8.38.1 christos };
76 1.8.38.1 christos
77 1.8.38.1 christos static dev_type_open(spi_open);
78 1.8.38.1 christos static dev_type_close(spi_close);
79 1.8.38.1 christos static dev_type_ioctl(spi_ioctl);
80 1.8.38.1 christos
81 1.8.38.1 christos const struct cdevsw spi_cdevsw = {
82 1.8.38.1 christos .d_open = spi_open,
83 1.8.38.1 christos .d_close = spi_close,
84 1.8.38.1 christos .d_read = noread,
85 1.8.38.1 christos .d_write = nowrite,
86 1.8.38.1 christos .d_ioctl = spi_ioctl,
87 1.8.38.1 christos .d_stop = nostop,
88 1.8.38.1 christos .d_tty = notty,
89 1.8.38.1 christos .d_poll = nopoll,
90 1.8.38.1 christos .d_mmap = nommap,
91 1.8.38.1 christos .d_kqfilter = nokqfilter,
92 1.8.38.1 christos .d_discard = nodiscard,
93 1.8.38.1 christos .d_flag = D_OTHER
94 1.1 gdamore };
95 1.1 gdamore
96 1.1 gdamore /*
97 1.1 gdamore * SPI slave device. We have one of these per slave.
98 1.1 gdamore */
99 1.1 gdamore struct spi_handle {
100 1.1 gdamore struct spi_softc *sh_sc;
101 1.1 gdamore struct spi_controller *sh_controller;
102 1.1 gdamore int sh_slave;
103 1.8.38.1 christos int sh_mode;
104 1.8.38.1 christos int sh_speed;
105 1.8.38.2 martin int sh_flags;
106 1.8.38.2 martin #define SPIH_ATTACHED 1
107 1.1 gdamore };
108 1.1 gdamore
109 1.8.38.1 christos #define SPI_MAXDATA 4096
110 1.8.38.1 christos
111 1.1 gdamore /*
112 1.1 gdamore * API for bus drivers.
113 1.1 gdamore */
114 1.1 gdamore
115 1.1 gdamore int
116 1.1 gdamore spibus_print(void *aux, const char *pnp)
117 1.1 gdamore {
118 1.1 gdamore
119 1.1 gdamore if (pnp != NULL)
120 1.1 gdamore aprint_normal("spi at %s", pnp);
121 1.1 gdamore
122 1.1 gdamore return (UNCONF);
123 1.1 gdamore }
124 1.1 gdamore
125 1.1 gdamore
126 1.1 gdamore static int
127 1.3 xtraeme spi_match(device_t parent, cfdata_t cf, void *aux)
128 1.1 gdamore {
129 1.5 rmind
130 1.1 gdamore return 1;
131 1.1 gdamore }
132 1.1 gdamore
133 1.1 gdamore static int
134 1.1 gdamore spi_print(void *aux, const char *pnp)
135 1.1 gdamore {
136 1.1 gdamore struct spi_attach_args *sa = aux;
137 1.1 gdamore
138 1.1 gdamore if (sa->sa_handle->sh_slave != -1)
139 1.1 gdamore aprint_normal(" slave %d", sa->sa_handle->sh_slave);
140 1.1 gdamore
141 1.1 gdamore return (UNCONF);
142 1.1 gdamore }
143 1.1 gdamore
144 1.1 gdamore static int
145 1.3 xtraeme spi_search(device_t parent, cfdata_t cf, const int *ldesc, void *aux)
146 1.1 gdamore {
147 1.3 xtraeme struct spi_softc *sc = device_private(parent);
148 1.1 gdamore struct spi_attach_args sa;
149 1.1 gdamore int addr;
150 1.1 gdamore
151 1.1 gdamore addr = cf->cf_loc[SPICF_SLAVE];
152 1.1 gdamore if ((addr < 0) || (addr >= sc->sc_controller.sct_nslaves)) {
153 1.1 gdamore return -1;
154 1.1 gdamore }
155 1.1 gdamore
156 1.8.38.2 martin memset(&sa, 0, sizeof sa);
157 1.1 gdamore sa.sa_handle = &sc->sc_slaves[addr];
158 1.8.38.2 martin if (ISSET(sa.sa_handle->sh_flags, SPIH_ATTACHED))
159 1.8.38.2 martin return -1;
160 1.1 gdamore
161 1.8.38.2 martin if (config_match(parent, cf, &sa) > 0) {
162 1.8.38.2 martin SET(sa.sa_handle->sh_flags, SPIH_ATTACHED);
163 1.1 gdamore config_attach(parent, cf, &sa, spi_print);
164 1.8.38.2 martin }
165 1.1 gdamore
166 1.1 gdamore return 0;
167 1.1 gdamore }
168 1.1 gdamore
169 1.1 gdamore /*
170 1.8.38.2 martin * XXX this is the same as i2c_fill_compat. It could be refactored into a
171 1.8.38.2 martin * common fill_compat function with pointers to compat & ncompat instead
172 1.8.38.2 martin * of attach_args as the first parameter.
173 1.8.38.2 martin */
174 1.8.38.2 martin static void
175 1.8.38.2 martin spi_fill_compat(struct spi_attach_args *sa, const char *compat, size_t len,
176 1.8.38.2 martin char **buffer)
177 1.8.38.2 martin {
178 1.8.38.2 martin int count, i;
179 1.8.38.2 martin const char *c, *start, **ptr;
180 1.8.38.2 martin
181 1.8.38.2 martin *buffer = NULL;
182 1.8.38.2 martin for (i = count = 0, c = compat; i < len; i++, c++)
183 1.8.38.2 martin if (*c == 0)
184 1.8.38.2 martin count++;
185 1.8.38.2 martin count += 2;
186 1.8.38.2 martin ptr = malloc(sizeof(char*)*count, M_TEMP, M_WAITOK);
187 1.8.38.2 martin if (!ptr)
188 1.8.38.2 martin return;
189 1.8.38.2 martin
190 1.8.38.2 martin for (i = count = 0, start = c = compat; i < len; i++, c++) {
191 1.8.38.2 martin if (*c == 0) {
192 1.8.38.2 martin ptr[count++] = start;
193 1.8.38.2 martin start = c + 1;
194 1.8.38.2 martin }
195 1.8.38.2 martin }
196 1.8.38.2 martin if (start < compat + len) {
197 1.8.38.2 martin /* last string not 0 terminated */
198 1.8.38.2 martin size_t l = c - start;
199 1.8.38.2 martin *buffer = malloc(l + 1, M_TEMP, M_WAITOK);
200 1.8.38.2 martin memcpy(*buffer, start, l);
201 1.8.38.2 martin (*buffer)[l] = 0;
202 1.8.38.2 martin ptr[count++] = *buffer;
203 1.8.38.2 martin }
204 1.8.38.2 martin ptr[count] = NULL;
205 1.8.38.2 martin
206 1.8.38.2 martin sa->sa_compat = ptr;
207 1.8.38.2 martin sa->sa_ncompat = count;
208 1.8.38.2 martin }
209 1.8.38.2 martin
210 1.8.38.2 martin static void
211 1.8.38.2 martin spi_direct_attach_child_devices(device_t parent, struct spi_softc *sc,
212 1.8.38.2 martin prop_array_t child_devices)
213 1.8.38.2 martin {
214 1.8.38.2 martin unsigned int count;
215 1.8.38.2 martin prop_dictionary_t child;
216 1.8.38.2 martin prop_data_t cdata;
217 1.8.38.2 martin uint32_t slave;
218 1.8.38.2 martin uint64_t cookie;
219 1.8.38.2 martin struct spi_attach_args sa;
220 1.8.38.2 martin int loc[SPICF_NLOCS];
221 1.8.38.2 martin char *buf;
222 1.8.38.2 martin int i;
223 1.8.38.2 martin
224 1.8.38.2 martin memset(loc, 0, sizeof loc);
225 1.8.38.2 martin count = prop_array_count(child_devices);
226 1.8.38.2 martin for (i = 0; i < count; i++) {
227 1.8.38.2 martin child = prop_array_get(child_devices, i);
228 1.8.38.2 martin if (!child)
229 1.8.38.2 martin continue;
230 1.8.38.2 martin if (!prop_dictionary_get_uint32(child, "slave", &slave))
231 1.8.38.2 martin continue;
232 1.8.38.2 martin if(slave >= sc->sc_controller.sct_nslaves)
233 1.8.38.2 martin continue;
234 1.8.38.2 martin if (!prop_dictionary_get_uint64(child, "cookie", &cookie))
235 1.8.38.2 martin continue;
236 1.8.38.2 martin if (!(cdata = prop_dictionary_get(child, "compatible")))
237 1.8.38.2 martin continue;
238 1.8.38.2 martin loc[SPICF_SLAVE] = slave;
239 1.8.38.2 martin
240 1.8.38.2 martin memset(&sa, 0, sizeof sa);
241 1.8.38.2 martin sa.sa_handle = &sc->sc_slaves[i];
242 1.8.38.2 martin sa.sa_prop = child;
243 1.8.38.2 martin sa.sa_cookie = cookie;
244 1.8.38.2 martin if (ISSET(sa.sa_handle->sh_flags, SPIH_ATTACHED))
245 1.8.38.2 martin continue;
246 1.8.38.2 martin SET(sa.sa_handle->sh_flags, SPIH_ATTACHED);
247 1.8.38.2 martin
248 1.8.38.2 martin buf = NULL;
249 1.8.38.2 martin spi_fill_compat(&sa,
250 1.8.38.2 martin prop_data_data_nocopy(cdata),
251 1.8.38.2 martin prop_data_size(cdata), &buf);
252 1.8.38.2 martin (void) config_found_sm_loc(parent, "spi",
253 1.8.38.2 martin loc, &sa, spi_print,
254 1.8.38.2 martin NULL);
255 1.8.38.2 martin
256 1.8.38.2 martin if (sa.sa_compat)
257 1.8.38.2 martin free(sa.sa_compat, M_TEMP);
258 1.8.38.2 martin if (buf)
259 1.8.38.2 martin free(buf, M_TEMP);
260 1.8.38.2 martin }
261 1.8.38.2 martin }
262 1.8.38.2 martin
263 1.8.38.2 martin int
264 1.8.38.2 martin spi_compatible_match(const struct spi_attach_args *sa, const cfdata_t cf,
265 1.8.38.2 martin const struct device_compatible_entry *compats)
266 1.8.38.2 martin {
267 1.8.38.2 martin if (sa->sa_ncompat > 0)
268 1.8.38.2 martin return device_compatible_match(sa->sa_compat, sa->sa_ncompat,
269 1.8.38.2 martin compats, NULL);
270 1.8.38.2 martin
271 1.8.38.2 martin return 1;
272 1.8.38.2 martin }
273 1.8.38.2 martin
274 1.8.38.2 martin /*
275 1.1 gdamore * API for device drivers.
276 1.1 gdamore *
277 1.1 gdamore * We provide wrapper routines to decouple the ABI for the SPI
278 1.1 gdamore * device drivers from the ABI for the SPI bus drivers.
279 1.1 gdamore */
280 1.1 gdamore static void
281 1.3 xtraeme spi_attach(device_t parent, device_t self, void *aux)
282 1.1 gdamore {
283 1.1 gdamore struct spi_softc *sc = device_private(self);
284 1.1 gdamore struct spibus_attach_args *sba = aux;
285 1.1 gdamore int i;
286 1.1 gdamore
287 1.1 gdamore aprint_naive(": SPI bus\n");
288 1.1 gdamore aprint_normal(": SPI bus\n");
289 1.1 gdamore
290 1.8.38.1 christos mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_BIO);
291 1.8.38.1 christos cv_init(&sc->sc_cv, "spictl");
292 1.8.38.1 christos
293 1.1 gdamore sc->sc_controller = *sba->sba_controller;
294 1.8 rkujawa sc->sc_nslaves = sba->sba_controller->sct_nslaves;
295 1.1 gdamore /* allocate slave structures */
296 1.1 gdamore sc->sc_slaves = malloc(sizeof (struct spi_handle) * sc->sc_nslaves,
297 1.1 gdamore M_DEVBUF, M_WAITOK | M_ZERO);
298 1.1 gdamore
299 1.1 gdamore sc->sc_speed = 0;
300 1.2 gdamore sc->sc_mode = -1;
301 1.8.38.1 christos sc->sc_slave = -1;
302 1.1 gdamore
303 1.1 gdamore /*
304 1.1 gdamore * Initialize slave handles
305 1.1 gdamore */
306 1.1 gdamore for (i = 0; i < sc->sc_nslaves; i++) {
307 1.1 gdamore sc->sc_slaves[i].sh_slave = i;
308 1.1 gdamore sc->sc_slaves[i].sh_sc = sc;
309 1.1 gdamore sc->sc_slaves[i].sh_controller = &sc->sc_controller;
310 1.1 gdamore }
311 1.1 gdamore
312 1.8.38.2 martin /* First attach devices known to be present via fdt */
313 1.8.38.2 martin if (sba->sba_child_devices) {
314 1.8.38.2 martin spi_direct_attach_child_devices(self, sc, sba->sba_child_devices);
315 1.8.38.2 martin }
316 1.8.38.2 martin /* Then do any other devices the user may have manually wired */
317 1.1 gdamore config_search_ia(spi_search, self, "spi", NULL);
318 1.1 gdamore }
319 1.1 gdamore
320 1.8.38.1 christos static int
321 1.8.38.1 christos spi_open(dev_t dev, int flag, int fmt, lwp_t *l)
322 1.8.38.1 christos {
323 1.8.38.1 christos struct spi_softc *sc = device_lookup_private(&spi_cd, minor(dev));
324 1.8.38.1 christos
325 1.8.38.1 christos if (sc == NULL)
326 1.8.38.1 christos return ENXIO;
327 1.8.38.1 christos
328 1.8.38.1 christos return 0;
329 1.8.38.1 christos }
330 1.8.38.1 christos
331 1.8.38.1 christos static int
332 1.8.38.1 christos spi_close(dev_t dev, int flag, int fmt, lwp_t *l)
333 1.8.38.1 christos {
334 1.8.38.1 christos
335 1.8.38.1 christos return 0;
336 1.8.38.1 christos }
337 1.8.38.1 christos
338 1.8.38.1 christos static int
339 1.8.38.1 christos spi_ioctl(dev_t dev, u_long cmd, void *data, int flag, lwp_t *l)
340 1.8.38.1 christos {
341 1.8.38.1 christos struct spi_softc *sc = device_lookup_private(&spi_cd, minor(dev));
342 1.8.38.1 christos struct spi_handle *sh;
343 1.8.38.1 christos spi_ioctl_configure_t *sic;
344 1.8.38.1 christos spi_ioctl_transfer_t *sit;
345 1.8.38.1 christos uint8_t *sbuf, *rbuf;
346 1.8.38.1 christos int error;
347 1.8.38.1 christos
348 1.8.38.1 christos if (sc == NULL)
349 1.8.38.1 christos return ENXIO;
350 1.8.38.1 christos
351 1.8.38.1 christos switch (cmd) {
352 1.8.38.1 christos case SPI_IOCTL_CONFIGURE:
353 1.8.38.1 christos sic = (spi_ioctl_configure_t *)data;
354 1.8.38.1 christos if (sic->sic_addr < 0 || sic->sic_addr >= sc->sc_nslaves) {
355 1.8.38.1 christos error = EINVAL;
356 1.8.38.1 christos break;
357 1.8.38.1 christos }
358 1.8.38.1 christos sh = &sc->sc_slaves[sic->sic_addr];
359 1.8.38.1 christos error = spi_configure(sh, sic->sic_mode, sic->sic_speed);
360 1.8.38.1 christos break;
361 1.8.38.1 christos case SPI_IOCTL_TRANSFER:
362 1.8.38.1 christos sit = (spi_ioctl_transfer_t *)data;
363 1.8.38.1 christos if (sit->sit_addr < 0 || sit->sit_addr >= sc->sc_nslaves) {
364 1.8.38.1 christos error = EINVAL;
365 1.8.38.1 christos break;
366 1.8.38.1 christos }
367 1.8.38.1 christos if ((sit->sit_send && sit->sit_sendlen == 0)
368 1.8.38.1 christos || (sit->sit_recv && sit->sit_recv == 0)) {
369 1.8.38.1 christos error = EINVAL;
370 1.8.38.1 christos break;
371 1.8.38.1 christos }
372 1.8.38.1 christos sh = &sc->sc_slaves[sit->sit_addr];
373 1.8.38.1 christos sbuf = rbuf = NULL;
374 1.8.38.1 christos error = 0;
375 1.8.38.1 christos if (sit->sit_send && sit->sit_sendlen <= SPI_MAXDATA) {
376 1.8.38.1 christos sbuf = malloc(sit->sit_sendlen, M_DEVBUF, M_WAITOK);
377 1.8.38.1 christos error = copyin(sit->sit_send, sbuf, sit->sit_sendlen);
378 1.8.38.1 christos }
379 1.8.38.1 christos if (sit->sit_recv && sit->sit_recvlen <= SPI_MAXDATA) {
380 1.8.38.1 christos rbuf = malloc(sit->sit_recvlen, M_DEVBUF, M_WAITOK);
381 1.8.38.1 christos }
382 1.8.38.1 christos if (error == 0) {
383 1.8.38.1 christos if (sbuf && rbuf)
384 1.8.38.1 christos error = spi_send_recv(sh,
385 1.8.38.1 christos sit->sit_sendlen, sbuf,
386 1.8.38.1 christos sit->sit_recvlen, rbuf);
387 1.8.38.1 christos else if (sbuf)
388 1.8.38.1 christos error = spi_send(sh,
389 1.8.38.1 christos sit->sit_sendlen, sbuf);
390 1.8.38.1 christos else if (rbuf)
391 1.8.38.1 christos error = spi_recv(sh,
392 1.8.38.1 christos sit->sit_recvlen, rbuf);
393 1.8.38.1 christos }
394 1.8.38.1 christos if (rbuf) {
395 1.8.38.1 christos if (error == 0)
396 1.8.38.1 christos error = copyout(rbuf, sit->sit_recv,
397 1.8.38.1 christos sit->sit_recvlen);
398 1.8.38.1 christos free(rbuf, M_DEVBUF);
399 1.8.38.1 christos }
400 1.8.38.1 christos if (sbuf) {
401 1.8.38.1 christos free(sbuf, M_DEVBUF);
402 1.8.38.1 christos }
403 1.8.38.1 christos break;
404 1.8.38.1 christos default:
405 1.8.38.1 christos error = ENODEV;
406 1.8.38.1 christos break;
407 1.8.38.1 christos }
408 1.8.38.1 christos
409 1.8.38.1 christos return error;
410 1.8.38.1 christos }
411 1.8.38.1 christos
412 1.3 xtraeme CFATTACH_DECL_NEW(spi, sizeof(struct spi_softc),
413 1.1 gdamore spi_match, spi_attach, NULL, NULL);
414 1.1 gdamore
415 1.1 gdamore /*
416 1.1 gdamore * Configure. This should be the first thing that the SPI driver
417 1.1 gdamore * should do, to configure which mode (e.g. SPI_MODE_0, which is the
418 1.1 gdamore * same as Philips Microwire mode), and speed. If the bus driver
419 1.1 gdamore * cannot run fast enough, then it should just configure the fastest
420 1.1 gdamore * mode that it can support. If the bus driver cannot run slow
421 1.1 gdamore * enough, then the device is incompatible and an error should be
422 1.1 gdamore * returned.
423 1.1 gdamore */
424 1.1 gdamore int
425 1.1 gdamore spi_configure(struct spi_handle *sh, int mode, int speed)
426 1.1 gdamore {
427 1.1 gdamore
428 1.8.38.1 christos sh->sh_mode = mode;
429 1.8.38.1 christos sh->sh_speed = speed;
430 1.8.38.1 christos return 0;
431 1.8.38.1 christos }
432 1.8.38.1 christos
433 1.8.38.1 christos /*
434 1.8.38.1 christos * Acquire controller
435 1.8.38.1 christos */
436 1.8.38.1 christos static void
437 1.8.38.1 christos spi_acquire(struct spi_handle *sh)
438 1.8.38.1 christos {
439 1.8.38.1 christos struct spi_softc *sc = sh->sh_sc;
440 1.8.38.1 christos
441 1.8.38.1 christos mutex_enter(&sc->sc_lock);
442 1.8.38.1 christos while ((sc->sc_flags & SPIC_BUSY) != 0)
443 1.8.38.1 christos cv_wait(&sc->sc_cv, &sc->sc_lock);
444 1.8.38.1 christos sc->sc_flags |= SPIC_BUSY;
445 1.8.38.1 christos mutex_exit(&sc->sc_lock);
446 1.8.38.1 christos }
447 1.8.38.1 christos
448 1.8.38.1 christos /*
449 1.8.38.1 christos * Release controller
450 1.8.38.1 christos */
451 1.8.38.1 christos static void
452 1.8.38.1 christos spi_release(struct spi_handle *sh)
453 1.8.38.1 christos {
454 1.8.38.1 christos struct spi_softc *sc = sh->sh_sc;
455 1.8.38.1 christos
456 1.8.38.1 christos mutex_enter(&sc->sc_lock);
457 1.8.38.1 christos sc->sc_flags &= ~SPIC_BUSY;
458 1.8.38.1 christos cv_broadcast(&sc->sc_cv);
459 1.8.38.1 christos mutex_exit(&sc->sc_lock);
460 1.1 gdamore }
461 1.1 gdamore
462 1.1 gdamore void
463 1.1 gdamore spi_transfer_init(struct spi_transfer *st)
464 1.1 gdamore {
465 1.1 gdamore
466 1.5 rmind mutex_init(&st->st_lock, MUTEX_DEFAULT, IPL_BIO);
467 1.8.38.1 christos cv_init(&st->st_cv, "spixfr");
468 1.5 rmind
469 1.1 gdamore st->st_flags = 0;
470 1.1 gdamore st->st_errno = 0;
471 1.1 gdamore st->st_done = NULL;
472 1.1 gdamore st->st_chunks = NULL;
473 1.1 gdamore st->st_private = NULL;
474 1.1 gdamore st->st_slave = -1;
475 1.1 gdamore }
476 1.1 gdamore
477 1.1 gdamore void
478 1.1 gdamore spi_chunk_init(struct spi_chunk *chunk, int cnt, const uint8_t *wptr,
479 1.1 gdamore uint8_t *rptr)
480 1.1 gdamore {
481 1.1 gdamore
482 1.1 gdamore chunk->chunk_write = chunk->chunk_wptr = wptr;
483 1.6 mrg chunk->chunk_read = chunk->chunk_rptr = rptr;
484 1.1 gdamore chunk->chunk_rresid = chunk->chunk_wresid = chunk->chunk_count = cnt;
485 1.1 gdamore chunk->chunk_next = NULL;
486 1.1 gdamore }
487 1.1 gdamore
488 1.1 gdamore void
489 1.1 gdamore spi_transfer_add(struct spi_transfer *st, struct spi_chunk *chunk)
490 1.1 gdamore {
491 1.1 gdamore struct spi_chunk **cpp;
492 1.1 gdamore
493 1.1 gdamore /* this is an O(n) insert -- perhaps we should use a simpleq? */
494 1.1 gdamore for (cpp = &st->st_chunks; *cpp; cpp = &(*cpp)->chunk_next);
495 1.1 gdamore *cpp = chunk;
496 1.1 gdamore }
497 1.1 gdamore
498 1.1 gdamore int
499 1.1 gdamore spi_transfer(struct spi_handle *sh, struct spi_transfer *st)
500 1.1 gdamore {
501 1.8.38.1 christos struct spi_softc *sc = sh->sh_sc;
502 1.1 gdamore struct spi_controller *tag = sh->sh_controller;
503 1.1 gdamore struct spi_chunk *chunk;
504 1.8.38.1 christos int error;
505 1.1 gdamore
506 1.1 gdamore /*
507 1.1 gdamore * Initialize "resid" counters and pointers, so that callers
508 1.1 gdamore * and bus drivers don't have to.
509 1.1 gdamore */
510 1.1 gdamore for (chunk = st->st_chunks; chunk; chunk = chunk->chunk_next) {
511 1.1 gdamore chunk->chunk_wresid = chunk->chunk_rresid = chunk->chunk_count;
512 1.1 gdamore chunk->chunk_wptr = chunk->chunk_write;
513 1.1 gdamore chunk->chunk_rptr = chunk->chunk_read;
514 1.1 gdamore }
515 1.1 gdamore
516 1.1 gdamore /*
517 1.8.38.1 christos * Match slave and parameters to handle
518 1.1 gdamore */
519 1.1 gdamore st->st_slave = sh->sh_slave;
520 1.1 gdamore
521 1.8.38.1 christos /*
522 1.8.38.1 christos * Reserve controller during transaction
523 1.8.38.1 christos */
524 1.8.38.1 christos spi_acquire(sh);
525 1.8.38.1 christos
526 1.8.38.1 christos st->st_spiprivate = (void *)sh;
527 1.8.38.1 christos
528 1.8.38.1 christos /*
529 1.8.38.1 christos * Reconfigure controller
530 1.8.38.1 christos *
531 1.8.38.1 christos * XXX backends don't configure per-slave parameters
532 1.8.38.1 christos * Whenever we switch slaves or change mode or speed, we
533 1.8.38.1 christos * need to tell the backend.
534 1.8.38.1 christos */
535 1.8.38.1 christos if (sc->sc_slave != sh->sh_slave
536 1.8.38.1 christos || sc->sc_mode != sh->sh_mode
537 1.8.38.1 christos || sc->sc_speed != sh->sh_speed) {
538 1.8.38.1 christos error = (*tag->sct_configure)(tag->sct_cookie,
539 1.8.38.1 christos sh->sh_slave, sh->sh_mode, sh->sh_speed);
540 1.8.38.1 christos if (error)
541 1.8.38.1 christos return error;
542 1.8.38.1 christos }
543 1.8.38.1 christos sc->sc_mode = sh->sh_mode;
544 1.8.38.1 christos sc->sc_speed = sh->sh_speed;
545 1.8.38.1 christos sc->sc_slave = sh->sh_slave;
546 1.8.38.1 christos
547 1.8.38.1 christos error = (*tag->sct_transfer)(tag->sct_cookie, st);
548 1.8.38.1 christos
549 1.8.38.1 christos return error;
550 1.1 gdamore }
551 1.1 gdamore
552 1.1 gdamore void
553 1.1 gdamore spi_wait(struct spi_transfer *st)
554 1.1 gdamore {
555 1.8.38.1 christos struct spi_handle *sh = st->st_spiprivate;
556 1.1 gdamore
557 1.5 rmind mutex_enter(&st->st_lock);
558 1.4 jym while (!(st->st_flags & SPI_F_DONE)) {
559 1.5 rmind cv_wait(&st->st_cv, &st->st_lock);
560 1.1 gdamore }
561 1.5 rmind mutex_exit(&st->st_lock);
562 1.7 jakllsch cv_destroy(&st->st_cv);
563 1.7 jakllsch mutex_destroy(&st->st_lock);
564 1.8.38.1 christos
565 1.8.38.1 christos /*
566 1.8.38.1 christos * End transaction
567 1.8.38.1 christos */
568 1.8.38.1 christos spi_release(sh);
569 1.1 gdamore }
570 1.1 gdamore
571 1.1 gdamore void
572 1.1 gdamore spi_done(struct spi_transfer *st, int err)
573 1.1 gdamore {
574 1.1 gdamore
575 1.5 rmind mutex_enter(&st->st_lock);
576 1.1 gdamore if ((st->st_errno = err) != 0) {
577 1.1 gdamore st->st_flags |= SPI_F_ERROR;
578 1.1 gdamore }
579 1.1 gdamore st->st_flags |= SPI_F_DONE;
580 1.1 gdamore if (st->st_done != NULL) {
581 1.1 gdamore (*st->st_done)(st);
582 1.1 gdamore } else {
583 1.5 rmind cv_broadcast(&st->st_cv);
584 1.1 gdamore }
585 1.5 rmind mutex_exit(&st->st_lock);
586 1.1 gdamore }
587 1.1 gdamore
588 1.1 gdamore /*
589 1.1 gdamore * Some convenience routines. These routines block until the work
590 1.1 gdamore * is done.
591 1.1 gdamore *
592 1.1 gdamore * spi_recv - receives data from the bus
593 1.1 gdamore *
594 1.1 gdamore * spi_send - sends data to the bus
595 1.1 gdamore *
596 1.1 gdamore * spi_send_recv - sends data to the bus, and then receives. Note that this is
597 1.1 gdamore * done synchronously, i.e. send a command and get the response. This is
598 1.1 gdamore * not full duplex. If you wnat full duplex, you can't use these convenience
599 1.1 gdamore * wrappers.
600 1.1 gdamore */
601 1.1 gdamore int
602 1.1 gdamore spi_recv(struct spi_handle *sh, int cnt, uint8_t *data)
603 1.1 gdamore {
604 1.1 gdamore struct spi_transfer trans;
605 1.1 gdamore struct spi_chunk chunk;
606 1.1 gdamore
607 1.1 gdamore spi_transfer_init(&trans);
608 1.1 gdamore spi_chunk_init(&chunk, cnt, NULL, data);
609 1.1 gdamore spi_transfer_add(&trans, &chunk);
610 1.1 gdamore
611 1.1 gdamore /* enqueue it and wait for it to complete */
612 1.1 gdamore spi_transfer(sh, &trans);
613 1.1 gdamore spi_wait(&trans);
614 1.1 gdamore
615 1.1 gdamore if (trans.st_flags & SPI_F_ERROR)
616 1.1 gdamore return trans.st_errno;
617 1.1 gdamore
618 1.1 gdamore return 0;
619 1.1 gdamore }
620 1.1 gdamore
621 1.1 gdamore int
622 1.1 gdamore spi_send(struct spi_handle *sh, int cnt, const uint8_t *data)
623 1.1 gdamore {
624 1.1 gdamore struct spi_transfer trans;
625 1.1 gdamore struct spi_chunk chunk;
626 1.1 gdamore
627 1.1 gdamore spi_transfer_init(&trans);
628 1.1 gdamore spi_chunk_init(&chunk, cnt, data, NULL);
629 1.1 gdamore spi_transfer_add(&trans, &chunk);
630 1.1 gdamore
631 1.1 gdamore /* enqueue it and wait for it to complete */
632 1.1 gdamore spi_transfer(sh, &trans);
633 1.1 gdamore spi_wait(&trans);
634 1.1 gdamore
635 1.1 gdamore if (trans.st_flags & SPI_F_ERROR)
636 1.1 gdamore return trans.st_errno;
637 1.1 gdamore
638 1.1 gdamore return 0;
639 1.1 gdamore }
640 1.1 gdamore
641 1.1 gdamore int
642 1.1 gdamore spi_send_recv(struct spi_handle *sh, int scnt, const uint8_t *snd,
643 1.1 gdamore int rcnt, uint8_t *rcv)
644 1.1 gdamore {
645 1.1 gdamore struct spi_transfer trans;
646 1.1 gdamore struct spi_chunk chunk1, chunk2;
647 1.1 gdamore
648 1.1 gdamore spi_transfer_init(&trans);
649 1.1 gdamore spi_chunk_init(&chunk1, scnt, snd, NULL);
650 1.1 gdamore spi_chunk_init(&chunk2, rcnt, NULL, rcv);
651 1.1 gdamore spi_transfer_add(&trans, &chunk1);
652 1.1 gdamore spi_transfer_add(&trans, &chunk2);
653 1.1 gdamore
654 1.1 gdamore /* enqueue it and wait for it to complete */
655 1.1 gdamore spi_transfer(sh, &trans);
656 1.1 gdamore spi_wait(&trans);
657 1.1 gdamore
658 1.1 gdamore if (trans.st_flags & SPI_F_ERROR)
659 1.1 gdamore return trans.st_errno;
660 1.1 gdamore
661 1.1 gdamore return 0;
662 1.1 gdamore }
663 1.8.38.1 christos
664