altos: Move SPI functions to architecture-specific location
[fw/altos] / src / cc1111 / ao_arch_funcs.h
1 /*
2  * Copyright © 2012 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 /*
19  * ao_spi.c
20  */
21
22 extern __xdata uint8_t  ao_spi_mutex;
23
24 #define ao_spi_get_mask(reg,mask) do {\
25         ao_mutex_get(&ao_spi_mutex); \
26         (reg) &= ~(mask); \
27         } while (0)
28
29 #define ao_spi_put_mask(reg,mask) do { \
30         (reg) |= (mask); \
31         ao_mutex_put(&ao_spi_mutex); \
32         } while (0)
33
34 #define ao_spi_get_bit(bit) do {\
35         ao_mutex_get(&ao_spi_mutex); \
36         (bit) = 0; \
37         } while (0)
38
39 #define ao_spi_put_bit(bit) do { \
40         (bit) = 1; \
41         ao_mutex_put(&ao_spi_mutex); \
42         } while (0)
43
44 /*
45  * The SPI mutex must be held to call either of these
46  * functions -- this mutex covers the entire SPI operation,
47  * from chip select low to chip select high
48  */
49
50 void
51 ao_spi_send(void __xdata *block, uint16_t len) __reentrant;
52
53 void
54 ao_spi_recv(void __xdata *block, uint16_t len) __reentrant;
55
56 void
57 ao_spi_init(void);
58