xref: /openbmc/qemu/include/exec/ioport.h (revision 2c9b15ca)
1 /*
2  * defines ioport related functions
3  *
4  *  Copyright (c) 2003 Fabrice Bellard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 /**************************************************************************
21  * IO ports API
22  */
23 
24 #ifndef IOPORT_H
25 #define IOPORT_H
26 
27 #include "qemu-common.h"
28 #include "exec/memory.h"
29 
30 typedef uint32_t pio_addr_t;
31 #define FMT_pioaddr     PRIx32
32 
33 #define MAX_IOPORTS     (64 * 1024)
34 #define IOPORTS_MASK    (MAX_IOPORTS - 1)
35 
36 typedef struct MemoryRegionPortio {
37     uint32_t offset;
38     uint32_t len;
39     unsigned size;
40     uint32_t (*read)(void *opaque, uint32_t address);
41     void (*write)(void *opaque, uint32_t address, uint32_t data);
42     uint32_t base; /* private field */
43 } MemoryRegionPortio;
44 
45 #define PORTIO_END_OF_LIST() { }
46 
47 void cpu_outb(pio_addr_t addr, uint8_t val);
48 void cpu_outw(pio_addr_t addr, uint16_t val);
49 void cpu_outl(pio_addr_t addr, uint32_t val);
50 uint8_t cpu_inb(pio_addr_t addr);
51 uint16_t cpu_inw(pio_addr_t addr);
52 uint32_t cpu_inl(pio_addr_t addr);
53 
54 typedef struct PortioList {
55     const struct MemoryRegionPortio *ports;
56     struct MemoryRegion *address_space;
57     unsigned nr;
58     struct MemoryRegion **regions;
59     void *opaque;
60     const char *name;
61 } PortioList;
62 
63 void portio_list_init(PortioList *piolist,
64                       const struct MemoryRegionPortio *callbacks,
65                       void *opaque, const char *name);
66 void portio_list_destroy(PortioList *piolist);
67 void portio_list_add(PortioList *piolist,
68                      struct MemoryRegion *address_space,
69                      uint32_t addr);
70 void portio_list_del(PortioList *piolist);
71 
72 #endif /* IOPORT_H */
73