4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * split out ioport related stuffs from vl.c.
28 #include "qemu/osdep.h"
30 #include "exec/ioport.h"
31 #include "exec/memory.h"
32 #include "exec/address-spaces.h"
35 struct MemoryRegionPortioList
{
40 MemoryRegionPortio
*ports
;
43 #define TYPE_MEMORY_REGION_PORTIO_LIST "memory-region-portio-list"
44 OBJECT_DECLARE_SIMPLE_TYPE(MemoryRegionPortioList
, MEMORY_REGION_PORTIO_LIST
)
46 static uint64_t unassigned_io_read(void *opaque
, hwaddr addr
, unsigned size
)
51 static void unassigned_io_write(void *opaque
, hwaddr addr
, uint64_t val
,
56 const MemoryRegionOps unassigned_io_ops
= {
57 .read
= unassigned_io_read
,
58 .write
= unassigned_io_write
,
59 .endianness
= DEVICE_NATIVE_ENDIAN
,
62 void cpu_outb(uint32_t addr
, uint8_t val
)
64 trace_cpu_out(addr
, 'b', val
);
65 address_space_write(&address_space_io
, addr
, MEMTXATTRS_UNSPECIFIED
,
69 void cpu_outw(uint32_t addr
, uint16_t val
)
73 trace_cpu_out(addr
, 'w', val
);
75 address_space_write(&address_space_io
, addr
, MEMTXATTRS_UNSPECIFIED
,
79 void cpu_outl(uint32_t addr
, uint32_t val
)
83 trace_cpu_out(addr
, 'l', val
);
85 address_space_write(&address_space_io
, addr
, MEMTXATTRS_UNSPECIFIED
,
89 uint8_t cpu_inb(uint32_t addr
)
93 address_space_read(&address_space_io
, addr
, MEMTXATTRS_UNSPECIFIED
,
95 trace_cpu_in(addr
, 'b', val
);
99 uint16_t cpu_inw(uint32_t addr
)
104 address_space_read(&address_space_io
, addr
, MEMTXATTRS_UNSPECIFIED
, buf
, 2);
106 trace_cpu_in(addr
, 'w', val
);
110 uint32_t cpu_inl(uint32_t addr
)
115 address_space_read(&address_space_io
, addr
, MEMTXATTRS_UNSPECIFIED
, buf
, 4);
117 trace_cpu_in(addr
, 'l', val
);
121 void portio_list_init(PortioList
*piolist
,
123 const MemoryRegionPortio
*callbacks
,
124 void *opaque
, const char *name
)
128 while (callbacks
[n
].size
) {
132 piolist
->ports
= callbacks
;
134 piolist
->regions
= g_new0(MemoryRegion
*, n
);
135 piolist
->address_space
= NULL
;
136 piolist
->opaque
= opaque
;
137 piolist
->owner
= owner
;
138 piolist
->name
= name
;
139 piolist
->flush_coalesced_mmio
= false;
142 void portio_list_set_flush_coalesced(PortioList
*piolist
)
144 piolist
->flush_coalesced_mmio
= true;
147 void portio_list_destroy(PortioList
*piolist
)
149 MemoryRegionPortioList
*mrpio
;
152 for (i
= 0; i
< piolist
->nr
; ++i
) {
153 mrpio
= container_of(piolist
->regions
[i
], MemoryRegionPortioList
, mr
);
154 object_unparent(OBJECT(&mrpio
->mr
));
157 g_free(piolist
->regions
);
160 static const MemoryRegionPortio
*find_portio(MemoryRegionPortioList
*mrpio
,
161 uint64_t offset
, unsigned size
,
164 const MemoryRegionPortio
*mrp
;
166 for (mrp
= mrpio
->ports
; mrp
->size
; ++mrp
) {
167 if (offset
>= mrp
->offset
&& offset
< mrp
->offset
+ mrp
->len
&&
169 (write
? (bool)mrp
->write
: (bool)mrp
->read
)) {
176 static uint64_t portio_read(void *opaque
, hwaddr addr
, unsigned size
)
178 MemoryRegionPortioList
*mrpio
= opaque
;
179 const MemoryRegionPortio
*mrp
= find_portio(mrpio
, addr
, size
, false);
182 data
= ((uint64_t)1 << (size
* 8)) - 1;
184 data
= mrp
->read(mrpio
->portio_opaque
, mrp
->base
+ addr
);
185 } else if (size
== 2) {
186 mrp
= find_portio(mrpio
, addr
, 1, false);
188 data
= mrp
->read(mrpio
->portio_opaque
, mrp
->base
+ addr
);
189 if (addr
+ 1 < mrp
->offset
+ mrp
->len
) {
190 data
|= mrp
->read(mrpio
->portio_opaque
, mrp
->base
+ addr
+ 1) << 8;
199 static void portio_write(void *opaque
, hwaddr addr
, uint64_t data
,
202 MemoryRegionPortioList
*mrpio
= opaque
;
203 const MemoryRegionPortio
*mrp
= find_portio(mrpio
, addr
, size
, true);
206 mrp
->write(mrpio
->portio_opaque
, mrp
->base
+ addr
, data
);
207 } else if (size
== 2) {
208 mrp
= find_portio(mrpio
, addr
, 1, true);
210 mrp
->write(mrpio
->portio_opaque
, mrp
->base
+ addr
, data
& 0xff);
211 if (addr
+ 1 < mrp
->offset
+ mrp
->len
) {
212 mrp
->write(mrpio
->portio_opaque
, mrp
->base
+ addr
+ 1, data
>> 8);
218 static const MemoryRegionOps portio_ops
= {
220 .write
= portio_write
,
221 .endianness
= DEVICE_LITTLE_ENDIAN
,
222 .valid
.unaligned
= true,
223 .impl
.unaligned
= true,
226 static void portio_list_add_1(PortioList
*piolist
,
227 const MemoryRegionPortio
*pio_init
,
228 unsigned count
, unsigned start
,
229 unsigned off_low
, unsigned off_high
)
231 MemoryRegionPortioList
*mrpio
;
236 /* Copy the sub-list and null-terminate it. */
237 mrpio
= MEMORY_REGION_PORTIO_LIST(
238 object_new(TYPE_MEMORY_REGION_PORTIO_LIST
));
239 mrpio
->portio_opaque
= piolist
->opaque
;
240 mrpio
->ports
= g_malloc0(sizeof(MemoryRegionPortio
) * (count
+ 1));
241 memcpy(mrpio
->ports
, pio_init
, sizeof(MemoryRegionPortio
) * count
);
242 memset(mrpio
->ports
+ count
, 0, sizeof(MemoryRegionPortio
));
244 /* Adjust the offsets to all be zero-based for the region. */
245 for (i
= 0; i
< count
; ++i
) {
246 mrpio
->ports
[i
].offset
-= off_low
;
247 mrpio
->ports
[i
].base
= start
+ off_low
;
251 * The MemoryRegion owner is the MemoryRegionPortioList since that manages
252 * the lifecycle via the refcount
254 memory_region_init_io(&mrpio
->mr
, OBJECT(mrpio
), &portio_ops
, mrpio
,
255 piolist
->name
, off_high
- off_low
);
257 /* Reparent the MemoryRegion to the piolist owner */
258 object_ref(&mrpio
->mr
);
259 object_unparent(OBJECT(&mrpio
->mr
));
260 if (!piolist
->owner
) {
261 owner
= container_get(qdev_get_machine(), "/unattached");
263 owner
= piolist
->owner
;
265 name
= g_strdup_printf("%s[*]", piolist
->name
);
266 object_property_add_child(owner
, name
, OBJECT(&mrpio
->mr
));
269 if (piolist
->flush_coalesced_mmio
) {
270 memory_region_set_flush_coalesced(&mrpio
->mr
);
272 memory_region_add_subregion(piolist
->address_space
,
273 start
+ off_low
, &mrpio
->mr
);
274 piolist
->regions
[piolist
->nr
] = &mrpio
->mr
;
278 void portio_list_add(PortioList
*piolist
,
279 MemoryRegion
*address_space
,
282 const MemoryRegionPortio
*pio
, *pio_start
= piolist
->ports
;
283 unsigned int off_low
, off_high
, off_last
, count
;
285 piolist
->address_space
= address_space
;
287 /* Handle the first entry specially. */
288 off_last
= off_low
= pio_start
->offset
;
289 off_high
= off_low
+ pio_start
->len
+ pio_start
->size
- 1;
292 for (pio
= pio_start
+ 1; pio
->size
!= 0; pio
++, count
++) {
293 /* All entries must be sorted by offset. */
294 assert(pio
->offset
>= off_last
);
295 off_last
= pio
->offset
;
297 /* If we see a hole, break the region. */
298 if (off_last
> off_high
) {
299 portio_list_add_1(piolist
, pio_start
, count
, start
, off_low
,
301 /* ... and start collecting anew. */
304 off_high
= off_low
+ pio
->len
+ pio_start
->size
- 1;
306 } else if (off_last
+ pio
->len
> off_high
) {
307 off_high
= off_last
+ pio
->len
+ pio_start
->size
- 1;
311 /* There will always be an open sub-list. */
312 portio_list_add_1(piolist
, pio_start
, count
, start
, off_low
, off_high
);
315 void portio_list_del(PortioList
*piolist
)
317 MemoryRegionPortioList
*mrpio
;
320 for (i
= 0; i
< piolist
->nr
; ++i
) {
321 mrpio
= container_of(piolist
->regions
[i
], MemoryRegionPortioList
, mr
);
322 memory_region_del_subregion(piolist
->address_space
, &mrpio
->mr
);
326 static void memory_region_portio_list_finalize(Object
*obj
)
328 MemoryRegionPortioList
*mrpio
= MEMORY_REGION_PORTIO_LIST(obj
);
330 object_unref(&mrpio
->mr
);
331 g_free(mrpio
->ports
);
334 static const TypeInfo memory_region_portio_list_info
= {
335 .parent
= TYPE_OBJECT
,
336 .name
= TYPE_MEMORY_REGION_PORTIO_LIST
,
337 .instance_size
= sizeof(MemoryRegionPortioList
),
338 .instance_finalize
= memory_region_portio_list_finalize
,
341 static void ioport_register_types(void)
343 type_register_static(&memory_region_portio_list_info
);
346 type_init(ioport_register_types
)