misc: Point to correct simavr include dirs
[simavr] / simavr / sim / avr_ioport.h
1 /*
2         avr_ioport.h
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 #ifndef __AVR_IOPORT_H__
23 #define __AVR_IOPORT_H__
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #include "sim_avr.h"
30
31 enum {
32         IOPORT_IRQ_PIN0 = 0,
33         IOPORT_IRQ_PIN1,IOPORT_IRQ_PIN2,IOPORT_IRQ_PIN3,IOPORT_IRQ_PIN4,
34         IOPORT_IRQ_PIN5,IOPORT_IRQ_PIN6,IOPORT_IRQ_PIN7,
35         IOPORT_IRQ_PIN_ALL,
36         IOPORT_IRQ_DIRECTION_ALL,
37         IOPORT_IRQ_COUNT
38 };
39
40 #define AVR_IOPORT_OUTPUT 0x100
41
42 // add port name (uppercase) to get the real IRQ
43 #define AVR_IOCTL_IOPORT_GETIRQ(_name) AVR_IOCTL_DEF('i','o','g',(_name))
44
45
46 // this ioctl takes a avr_regbit_t, compares the register address
47 // to PORT/PIN/DDR and return the corresponding IRQ(s) if it matches
48 typedef struct avr_ioport_getirq_t {
49         avr_regbit_t bit;       // bit wanted
50         avr_irq_t * irq[8];     // result, terminated by NULL if < 8
51 } avr_ioport_getirq_t;
52
53 #define AVR_IOCTL_IOPORT_GETIRQ_REGBIT AVR_IOCTL_DEF('i','o','g','r')
54
55 /*
56  * ioctl used to get a port state.
57  *
58  * for (int i = 'A'; i <= 'F'; i++) {
59  *      avr_ioport_state_t state;
60  *      if (avr_ioctl(AVR_IOCTL_IOPORT_GETSTATE(i), &state) == 0)
61  *              printf("PORT%c %02x DDR %02x PIN %02x\n",
62  *                      state.name, state.port, state.ddr, state.pin);
63  * }
64  */
65 typedef struct avr_ioport_state_t {
66         unsigned long name : 7,
67                 port : 8, ddr : 8, pin : 8;
68 } avr_ioport_state_t;
69
70 // add port name (uppercase) to get the port state
71 #define AVR_IOCTL_IOPORT_GETSTATE(_name) AVR_IOCTL_DEF('i','o','s',(_name))
72
73 /**
74  * pin structure
75  */
76 typedef struct avr_iopin_t {
77         uint16_t port : 8;                      ///< port e.g. 'B'
78         uint16_t pin : 8;               ///< pin number
79 } avr_iopin_t;
80 #define AVR_IOPIN(_port, _pin)  { .port = _port, .pin = _pin }
81
82 /*
83  * Definition for an IO port
84  */
85 typedef struct avr_ioport_t {
86         avr_io_t        io;
87         char name;
88         avr_io_addr_t r_port;
89         avr_io_addr_t r_ddr;
90         avr_io_addr_t r_pin;
91
92         avr_int_vector_t pcint; // PCINT vector
93         avr_io_addr_t r_pcint;          // pcint 8 pins mask
94 } avr_ioport_t;
95
96 void avr_ioport_init(avr_t * avr, avr_ioport_t * port);
97
98
99 #ifdef __cplusplus
100 };
101 #endif
102
103 #endif /* __AVR_IOPORT_H__ */