i2ctest: Collapsed both i2ctests into one
[simavr] / simavr / sim / sim_io.c
1 /*
2         sim_io.c
3
4         Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
5
6         This file is part of simavr.
7
8         simavr is free software: you can redistribute it and/or modify
9         it under the terms of the GNU General Public License as published by
10         the Free Software Foundation, either version 3 of the License, or
11         (at your option) any later version.
12
13         simavr is distributed in the hope that it will be useful,
14         but WITHOUT ANY WARRANTY; without even the implied warranty of
15         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16         GNU General Public License for more details.
17
18         You should have received a copy of the GNU General Public License
19         along with simavr.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <ctype.h>
27 #include <stdint.h>
28 #include "sim_io.h"
29
30 int
31 avr_ioctl(
32                 avr_t *avr,
33                 uint32_t ctl,
34                 void * io_param)
35 {
36         avr_io_t * port = avr->io_port;
37         int res = -1;
38         while (port && res == -1) {
39                 if (port->ioctl)
40                         res = port->ioctl(port, ctl, io_param);
41                 port = port->next;
42         }
43         return res;
44 }
45
46 void
47 avr_register_io(
48                 avr_t *avr,
49                 avr_io_t * io)
50 {
51         io->next = avr->io_port;
52         io->avr = avr;
53         avr->io_port = io;
54 }
55
56 void
57 avr_register_io_read(
58                 avr_t *avr,
59                 avr_io_addr_t addr,
60                 avr_io_read_t readp,
61                 void * param)
62 {
63         avr_io_addr_t a = AVR_DATA_TO_IO(addr);
64         if (avr->io[a].r.param || avr->io[a].r.c) {
65                 if (avr->io[a].r.param != param || avr->io[a].r.c != readp) {
66                         fprintf(stderr,
67                                         "Error: avr_register_io_read(): Already registered, refusing to override.\n");
68                         fprintf(stderr,
69                                         "Error: avr_register_io_read(%04x : %p/%p): %p/%p\n", a,
70                                         avr->io[a].r.c, avr->io[a].r.param, readp, param);
71                         abort();
72                 }
73         }
74         avr->io[a].r.param = param;
75         avr->io[a].r.c = readp;
76 }
77
78 static void
79 _avr_io_mux_write(
80                 avr_t * avr,
81                 avr_io_addr_t addr,
82                 uint8_t v,
83                 void * param)
84 {
85         int io = (intptr_t)param;
86         for (int i = 0; i < avr->io_shared_io[io].used; i++) {
87                 avr_io_write_t c = avr->io_shared_io[io].io[i].c;
88                 if (c)
89                         c(avr, addr, v, avr->io_shared_io[io].io[i].param);
90         }
91 }
92
93 void
94 avr_register_io_write(
95                 avr_t *avr,
96                 avr_io_addr_t addr,
97                 avr_io_write_t writep,
98                 void * param)
99 {
100         avr_io_addr_t a = AVR_DATA_TO_IO(addr);
101
102         /*
103          * Verifying that some other piece of code is not installed to watch write
104          * on this address. If there is, this code installs a "dispatcher" callback
105          * instead to handle multiple clients, otherwise, it continues as usual
106          */
107         if (avr->io[a].w.param || avr->io[a].w.c) {
108                 if (avr->io[a].w.param != param || avr->io[a].w.c != writep) {
109                         // if the muxer not already installed, allocate a new slot
110                         if (avr->io[a].w.c != _avr_io_mux_write) {
111                                 int no = avr->io_shared_io_count++;
112                                 if (avr->io_shared_io_count > 4) {
113                                         fprintf(stderr,
114                                                         "Error: avr_register_io_write(): Too many shared IO registers.\n");
115                                         abort();
116                                 }
117                                 fprintf(stderr,
118                                                 "Note: avr_register_io_write(%04x): Installing muxer on register.\n", addr);
119                                 avr->io_shared_io[no].used = 1;
120                                 avr->io_shared_io[no].io[0].param = avr->io[a].w.param;
121                                 avr->io_shared_io[no].io[0].c = avr->io[a].w.c;
122                                 avr->io[a].w.param = (void*)(intptr_t)no;
123                                 avr->io[a].w.c = _avr_io_mux_write;
124                         }
125                         int no = (intptr_t)avr->io[a].w.param;
126                         int d = avr->io_shared_io[no].used++;
127                         if (avr->io_shared_io[no].used > 4) {
128                                 fprintf(stderr,
129                                                 "Error: avr_register_io_write(): Too many callbacks on %04x.\n", addr);
130                                 abort();
131                         }
132                         avr->io_shared_io[no].io[d].param = param;
133                         avr->io_shared_io[no].io[d].c = writep;
134                 }
135         }
136
137         avr->io[a].w.param = param;
138         avr->io[a].w.c = writep;
139 }
140
141 avr_irq_t *
142 avr_io_getirq(
143                 avr_t * avr,
144                 uint32_t ctl,
145                 int index)
146 {
147         avr_io_t * port = avr->io_port;
148         while (port) {
149                 if (port->irq && port->irq_ioctl_get == ctl && port->irq_count > index)
150                         return port->irq + index;
151                 port = port->next;
152         }
153         return NULL;
154         
155 }
156
157 avr_irq_t *
158 avr_iomem_getirq(
159                 avr_t * avr,
160                 avr_io_addr_t addr,
161                 int index)
162 {
163         avr_io_addr_t a = AVR_DATA_TO_IO(addr);
164         if (avr->io[a].irq == NULL) {
165                 avr->io[a].irq = avr_alloc_irq(&avr->irq_pool, 0, 9, NULL);
166                 // mark the pin ones as filtered, so they only are raised when changing
167                 for (int i = 0; i < 8; i++)
168                         avr->io[a].irq[i].flags |= IRQ_FLAG_FILTERED;
169         }
170         return index < 9 ? avr->io[a].irq + index : NULL;
171 }
172
173 avr_irq_t *
174 avr_io_setirqs(
175                 avr_io_t * io,
176                 uint32_t ctl,
177                 int count,
178                 avr_irq_t * irqs )
179 {
180         // allocate this module's IRQ
181         io->irq_count = count;
182
183         if (!irqs) {
184                 const char ** irq_names = NULL;
185
186                 if (io->irq_names) {
187                         irq_names = malloc(count * sizeof(char*));
188                         memset(irq_names, 0, count * sizeof(char*));
189                         char buf[64];
190                         for (int i = 0; i < count; i++) {
191                                 /*
192                                  * this bit takes the io module 'kind' ("port")
193                                  * the IRQ name ("=0") and the last character of the ioctl ('p','o','r','A')
194                                  * to create a full name "=porta.0"
195                                  */
196                                 char * dst = buf;
197                                 // copy the 'flags' of the name out
198                                 const char * kind = io->irq_names[i];
199                                 while (!isalpha(*kind))
200                                         *dst++ = *kind++;
201                                 // add avr name
202 //                              strcpy(dst, io->avr->mmcu);
203                                 strcpy(dst, "avr");
204                                 dst += strlen(dst);
205                                 *dst ++ = '.';
206                                 // add module 'kind'
207                                 strcpy(dst, io->kind);
208                                 dst += strlen(dst);
209                                 // add port name, if any
210                                 if ((ctl & 0xff) > ' ')
211                                         *dst ++ = tolower(ctl & 0xff);
212                                 *dst ++ = '.';
213                                 // add the rest of the irq name
214                                 strcpy(dst, kind);
215                                 dst += strlen(dst);
216                                 *dst = 0;
217
218 //                              printf("%s\n", buf);
219                                 irq_names[i] = strdup(buf);
220                         }
221                 }
222                 irqs = avr_alloc_irq(&io->avr->irq_pool, 0,
223                                                 count, irq_names);
224                 if (irq_names) {
225                         for (int i = 0; i < count; i++)
226                                 free((char*)irq_names[i]);
227                         free((char*)irq_names);
228                 }
229         }
230
231         io->irq = irqs;
232         io->irq_ioctl_get = ctl;
233         return io->irq;
234 }
235
236 static void
237 avr_deallocate_io(
238                 avr_io_t * io)
239 {
240         if (io->dealloc)
241                 io->dealloc(io);
242         avr_free_irq(io->irq, io->irq_count);
243         io->irq_count = 0;
244         io->irq_ioctl_get = 0;
245         io->avr = NULL;
246         io->next = NULL;
247 }
248
249 void
250 avr_deallocate_ios(
251                 avr_t * avr)
252 {
253         avr_io_t * port = avr->io_port;
254         while (port) {
255                 avr_io_t * next = port->next;
256                 avr_deallocate_io(port);
257                 port = next;
258         }
259         avr->io_port = NULL;
260 }