2 * QEMU I/O port 0x92 (System Control Port A, to handle Fast Gate A20)
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * SPDX-License-Identifier: MIT
9 #include "qemu/osdep.h"
10 #include "sysemu/runstate.h"
11 #include "migration/vmstate.h"
13 #include "hw/i386/pc.h"
16 #define PORT92(obj) OBJECT_CHECK(Port92State, (obj), TYPE_PORT92)
18 typedef struct Port92State
{
26 static void port92_write(void *opaque
, hwaddr addr
, uint64_t val
,
29 Port92State
*s
= opaque
;
30 int oldval
= s
->outport
;
32 trace_port92_write(val
);
34 qemu_set_irq(s
->a20_out
, (val
>> 1) & 1);
35 if ((val
& 1) && !(oldval
& 1)) {
36 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET
);
40 static uint64_t port92_read(void *opaque
, hwaddr addr
,
43 Port92State
*s
= opaque
;
47 trace_port92_read(ret
);
52 static const VMStateDescription vmstate_port92_isa
= {
55 .minimum_version_id
= 1,
56 .fields
= (VMStateField
[]) {
57 VMSTATE_UINT8(outport
, Port92State
),
62 static void port92_reset(DeviceState
*d
)
64 Port92State
*s
= PORT92(d
);
69 static const MemoryRegionOps port92_ops
= {
71 .write
= port92_write
,
76 .endianness
= DEVICE_LITTLE_ENDIAN
,
79 static void port92_initfn(Object
*obj
)
81 Port92State
*s
= PORT92(obj
);
83 memory_region_init_io(&s
->io
, OBJECT(s
), &port92_ops
, s
, "port92", 1);
87 qdev_init_gpio_out_named(DEVICE(obj
), &s
->a20_out
, PORT92_A20_LINE
, 1);
90 static void port92_realizefn(DeviceState
*dev
, Error
**errp
)
92 ISADevice
*isadev
= ISA_DEVICE(dev
);
93 Port92State
*s
= PORT92(dev
);
95 isa_register_ioport(isadev
, &s
->io
, 0x92);
98 static void port92_class_initfn(ObjectClass
*klass
, void *data
)
100 DeviceClass
*dc
= DEVICE_CLASS(klass
);
102 dc
->realize
= port92_realizefn
;
103 dc
->reset
= port92_reset
;
104 dc
->vmsd
= &vmstate_port92_isa
;
106 * Reason: unlike ordinary ISA devices, this one needs additional
107 * wiring: its A20 output line needs to be wired up with
108 * qdev_connect_gpio_out_named().
110 dc
->user_creatable
= false;
113 static const TypeInfo port92_info
= {
115 .parent
= TYPE_ISA_DEVICE
,
116 .instance_size
= sizeof(Port92State
),
117 .instance_init
= port92_initfn
,
118 .class_init
= port92_class_initfn
,
121 static void port92_register_types(void)
123 type_register_static(&port92_info
);
126 type_init(port92_register_types
)