Merge branch 'lpc'
[fw/altos] / src / attiny / 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 #define ao_spi_get_mask(reg,mask,bus,speed) do {        \
23                 (reg) &= ~(mask);                       \
24         } while (0)
25
26 #define ao_spi_put_mask(reg,mask,bus) do {      \
27                 (reg) |= (mask);                \
28         } while (0)
29
30 #define ao_spi_get_bit(reg,bit,pin,bus,speed) ao_spi_get_mask(reg,(1<<(bit)),bus,speed)
31
32 #define ao_spi_put_bit(reg,bit,pin,bus) ao_spi_put_mask(reg,(1<<(bit)),bus)
33
34 #define ao_gpio_token_paster(x,y)               x ## y
35 #define ao_gpio_token_evaluator(x,y)    ao_gpio_token_paster(x,y)
36
37 #define ao_gpio_set(port, bit, pin, v) do {     \
38                 if (v)                          \
39                         PORTB |= (1 << bit);    \
40                 else                            \
41                         PORTB &= ~(1 << bit);   \
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 #define ao_enable_output(port, bit, pin, v) do {                        \
51                 ao_gpio_set(port, bit, pin, v);                         \
52                 ao_gpio_token_evaluator(DDR,port) |= (1 << bit);        \
53         } while (0)
54
55
56 void
57 ao_spi_send_bus(void __xdata *block, uint16_t len) __reentrant;
58
59 void
60 ao_spi_recv_bus(void __xdata *block, uint16_t len) __reentrant;
61
62 #define ao_spi_send(block, len, bus) ao_spi_send_bus(block, len)
63 #define ao_spi_recv(block, len, bus) ao_spi_recv_bus(block, len)
64
65 void
66 ao_spi_init(void);
67
68 #define ao_spi_get(bus, speed)
69 #define ao_spi_put(bus)
70
71 #define ao_spi_init_cs(port, mask) do {         \
72                 PORTB |= (mask);                \
73                 DDRB |= (mask);         \
74         } while (0)
75
76 /* I2C */
77
78 void
79 ao_i2c_get(uint8_t i2c_index);
80
81 uint8_t
82 ao_i2c_start_bus(uint8_t address);
83
84 #define ao_i2c_start(i,a)       ao_i2c_start_bus(a)
85
86 void
87 ao_i2c_put(uint8_t i2c_index);
88
89 uint8_t
90 ao_i2c_send_bus(void *block, uint16_t len, uint8_t stop);
91
92 #define ao_i2c_send(b,l,i,s) ao_i2c_send_bus(b,l.s)
93
94 uint8_t
95 ao_i2c_send_fixed_bus(uint8_t value, uint16_t len, uint8_t stop);
96
97 #define ao_i2c_send_fixed(v,l,i,s) ao_i2c_send_fixed_bus(v,l.s)
98
99 uint8_t
100 ao_i2c_recv_bus(void *block, uint16_t len, uint8_t stop);
101
102 #define ao_i2c_recv(b,l,i,s) ao_i2c_recv_bus(b,l.s)
103
104 void
105 ao_i2c_init(void);
106
107 /* notask.c */
108
109 uint8_t
110 ao_sleep(__xdata void *wchan);
111
112 void
113 ao_wakeup(__xdata void *wchan);
114
115 extern alt_t    ao_max_height;
116
117 extern void ao_report_altitude(void);
118
119 void ao_delay_us(uint16_t us);
120