altos: Remove *_TO_DATA macros
[fw/altos] / src / drivers / ao_companion.c
1 /*
2  * Copyright © 2011 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 #include <ao_companion.h>
21
22 #ifdef TELEMEGA
23 #define ao_spi_slow(b)
24 #define ao_spi_fast(b)
25 #endif
26
27 #if !HAS_COMPANION
28 #error HAS_COMPANION not set in ao_companion.c
29 #endif
30
31 #define COMPANION_SELECT()      do {                    \
32                 ao_spi_get_bit(AO_COMPANION_CS_PORT,    \
33                                AO_COMPANION_CS_PIN,     \
34                                AO_COMPANION_CS,         \
35                                AO_COMPANION_SPI_BUS,    \
36                                AO_SPI_SPEED_200kHz);    \
37         } while (0)
38
39 #define COMPANION_DESELECT()    do {                    \
40                 ao_spi_put_bit(AO_COMPANION_CS_PORT,    \
41                                AO_COMPANION_CS_PIN,     \
42                                AO_COMPANION_CS,         \
43                                AO_COMPANION_SPI_BUS);   \
44         } while (0)
45
46 __xdata struct ao_companion_command             ao_companion_command;
47 __xdata struct ao_companion_setup               ao_companion_setup;
48
49 __xdata uint16_t        ao_companion_data[AO_COMPANION_MAX_CHANNELS];
50 __pdata uint8_t         ao_companion_running;
51 __xdata uint8_t         ao_companion_mutex;
52
53 static void
54 ao_companion_send_command(uint8_t command)
55 {
56         ao_companion_command.command = command;
57         ao_companion_command.flight_state = ao_flight_state;
58         ao_companion_command.tick = ao_time();
59         ao_companion_command.serial = ao_serial_number;
60         ao_companion_command.flight = ao_flight_number;
61         ao_companion_command.accel = ao_accel;
62         ao_companion_command.speed = ao_speed;
63         ao_companion_command.height = ao_height;
64         ao_companion_command.motor_number = ao_motor_number;
65         ao_spi_send(&ao_companion_command, sizeof (ao_companion_command), AO_COMPANION_SPI_BUS);
66 }
67
68 static uint8_t
69 ao_companion_get_setup(void)
70 {
71         COMPANION_SELECT();
72         ao_companion_send_command(AO_COMPANION_SETUP);
73         ao_spi_recv(&ao_companion_setup, sizeof (ao_companion_setup), AO_COMPANION_SPI_BUS);
74         COMPANION_DESELECT();
75         return ((int16_t) ao_companion_setup.board_id ==
76                 (int16_t) (uint16_t) (~ao_companion_setup.board_id_inverse));
77 }
78
79 static void
80 ao_companion_get_data(void)
81 {
82         COMPANION_SELECT();
83         ao_companion_send_command(AO_COMPANION_FETCH);
84         ao_mutex_get(&ao_companion_mutex);
85         ao_spi_recv(&ao_companion_data, ao_companion_setup.channels * 2, AO_COMPANION_SPI_BUS);
86         ao_mutex_put(&ao_companion_mutex);
87         COMPANION_DESELECT();
88 }
89
90 static void
91 ao_companion_notify(void)
92 {
93         COMPANION_SELECT();
94         ao_companion_send_command(AO_COMPANION_NOTIFY);
95         COMPANION_DESELECT();
96 }
97
98 void
99 ao_companion(void)
100 {
101         uint8_t i;
102         while (!ao_flight_number)
103                 ao_sleep(&ao_flight_number);
104         for (i = 0; i < 10; i++) {
105                 ao_delay(AO_SEC_TO_TICKS(1));
106                 if ((ao_companion_running = ao_companion_get_setup()))
107                     break;
108         }
109         while (ao_companion_running) {
110                 if (ao_sleep_for(&ao_flight_state, ao_companion_setup.update_period))
111                         ao_companion_get_data();
112                 else
113                         ao_companion_notify();
114         }
115         ao_exit();
116 }
117
118 void
119 ao_companion_status(void) __reentrant
120 {
121         uint8_t i;
122         printf("Companion running: %d\n", ao_companion_running);
123         if (!ao_companion_running)
124                 return;
125         printf("device: %d\n"
126                "update period: %d\n"
127                "channels: %d\n"
128                "data:",
129                ao_companion_setup.board_id,
130                ao_companion_setup.update_period,
131                ao_companion_setup.channels);
132         for(i = 0; i < ao_companion_setup.channels; i++)
133                 printf(" %5u", ao_companion_data[i]);
134         printf("\n");
135 }
136
137 __code struct ao_cmds ao_companion_cmds[] = {
138         { ao_companion_status,  "L\0Companion link status" },
139         { 0, NULL },
140 };
141
142 static __xdata struct ao_task ao_companion_task;
143
144 void
145 ao_companion_init(void)
146 {
147         ao_enable_output(AO_COMPANION_CS_PORT, AO_COMPANION_CS_PIN, AO_COMPANION_CS, 1);
148         ao_cmd_register(&ao_companion_cmds[0]);
149         ao_add_task(&ao_companion_task, ao_companion, "companion");
150 }