]> Git Repo - qemu.git/blame - hw/isa/piix4.c
piix4: Add the Reset Control Register
[qemu.git] / hw / isa / piix4.c
CommitLineData
823e675a
JQ
1/*
2 * QEMU PIIX4 PCI Bridge Emulation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5790b757 5 * Copyright (c) 2018 Hervé Poussineau
823e675a
JQ
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
25
b6a0aa05 26#include "qemu/osdep.h"
0d09e41a 27#include "hw/i386/pc.h"
83c9f4ca 28#include "hw/pci/pci.h"
0d09e41a 29#include "hw/isa/isa.h"
83c9f4ca 30#include "hw/sysbus.h"
d6454270 31#include "migration/vmstate.h"
5790b757
HP
32#include "sysemu/reset.h"
33#include "sysemu/runstate.h"
823e675a
JQ
34
35PCIDevice *piix4_dev;
36
1fc7cee0
JQ
37typedef struct PIIX4State {
38 PCIDevice dev;
5790b757
HP
39
40 /* Reset Control Register */
41 MemoryRegion rcr_mem;
42 uint8_t rcr;
1fc7cee0
JQ
43} PIIX4State;
44
acff3e48
GA
45#define TYPE_PIIX4_PCI_DEVICE "PIIX4"
46#define PIIX4_PCI_DEVICE(obj) \
47 OBJECT_CHECK(PIIX4State, (obj), TYPE_PIIX4_PCI_DEVICE)
48
fd52c20f 49static void piix4_isa_reset(DeviceState *dev)
823e675a 50{
fd52c20f 51 PIIX4State *d = PIIX4_PCI_DEVICE(dev);
1fc7cee0 52 uint8_t *pci_conf = d->dev.config;
823e675a
JQ
53
54 pci_conf[0x04] = 0x07; // master, memory and I/O
55 pci_conf[0x05] = 0x00;
56 pci_conf[0x06] = 0x00;
57 pci_conf[0x07] = 0x02; // PCI_status_devsel_medium
58 pci_conf[0x4c] = 0x4d;
59 pci_conf[0x4e] = 0x03;
60 pci_conf[0x4f] = 0x00;
61 pci_conf[0x60] = 0x0a; // PCI A -> IRQ 10
62 pci_conf[0x61] = 0x0a; // PCI B -> IRQ 10
63 pci_conf[0x62] = 0x0b; // PCI C -> IRQ 11
64 pci_conf[0x63] = 0x0b; // PCI D -> IRQ 11
65 pci_conf[0x69] = 0x02;
66 pci_conf[0x70] = 0x80;
67 pci_conf[0x76] = 0x0c;
68 pci_conf[0x77] = 0x0c;
69 pci_conf[0x78] = 0x02;
70 pci_conf[0x79] = 0x00;
71 pci_conf[0x80] = 0x00;
72 pci_conf[0x82] = 0x00;
73 pci_conf[0xa0] = 0x08;
74 pci_conf[0xa2] = 0x00;
75 pci_conf[0xa3] = 0x00;
76 pci_conf[0xa4] = 0x00;
77 pci_conf[0xa5] = 0x00;
78 pci_conf[0xa6] = 0x00;
79 pci_conf[0xa7] = 0x00;
80 pci_conf[0xa8] = 0x0f;
81 pci_conf[0xaa] = 0x00;
82 pci_conf[0xab] = 0x00;
83 pci_conf[0xac] = 0x00;
84 pci_conf[0xae] = 0x00;
85}
86
9039d78e
JQ
87static const VMStateDescription vmstate_piix4 = {
88 .name = "PIIX4",
89 .version_id = 2,
90 .minimum_version_id = 2,
d49805ae 91 .fields = (VMStateField[]) {
9039d78e
JQ
92 VMSTATE_PCI_DEVICE(dev, PIIX4State),
93 VMSTATE_END_OF_LIST()
94 }
95};
823e675a 96
5790b757
HP
97static void piix4_rcr_write(void *opaque, hwaddr addr, uint64_t val,
98 unsigned int len)
99{
100 PIIX4State *s = opaque;
101
102 if (val & 4) {
103 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
104 return;
105 }
106
107 s->rcr = val & 2; /* keep System Reset type only */
108}
109
110static uint64_t piix4_rcr_read(void *opaque, hwaddr addr, unsigned int len)
111{
112 PIIX4State *s = opaque;
113
114 return s->rcr;
115}
116
117static const MemoryRegionOps piix4_rcr_ops = {
118 .read = piix4_rcr_read,
119 .write = piix4_rcr_write,
120 .endianness = DEVICE_LITTLE_ENDIAN,
121 .impl = {
122 .min_access_size = 1,
123 .max_access_size = 1,
124 },
125};
126
9af21dbe 127static void piix4_realize(PCIDevice *dev, Error **errp)
823e675a 128{
5790b757 129 PIIX4State *s = PIIX4_PCI_DEVICE(dev);
823e675a 130
5790b757 131 if (!isa_bus_new(DEVICE(dev), pci_address_space(dev),
d10e5432
MA
132 pci_address_space_io(dev), errp)) {
133 return;
134 }
5790b757
HP
135
136 memory_region_init_io(&s->rcr_mem, OBJECT(dev), &piix4_rcr_ops, s,
137 "reset-control", 1);
138 memory_region_add_subregion_overlap(pci_address_space_io(dev),
139 RCR_IOPORT, &s->rcr_mem, 1);
140
141 piix4_dev = dev;
823e675a
JQ
142}
143
142e9787 144int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn)
823e675a
JQ
145{
146 PCIDevice *d;
147
fecb93c4 148 d = pci_create_simple_multifunction(bus, devfn, true, "PIIX4");
2ae0e48d 149 *isa_bus = ISA_BUS(qdev_get_child_bus(DEVICE(d), "isa.0"));
823e675a
JQ
150 return d->devfn;
151}
152
40021f08
AL
153static void piix4_class_init(ObjectClass *klass, void *data)
154{
39bffca2 155 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
156 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
157
9af21dbe 158 k->realize = piix4_realize;
40021f08
AL
159 k->vendor_id = PCI_VENDOR_ID_INTEL;
160 k->device_id = PCI_DEVICE_ID_INTEL_82371AB_0;
161 k->class_id = PCI_CLASS_BRIDGE_ISA;
fd52c20f 162 dc->reset = piix4_isa_reset;
39bffca2 163 dc->desc = "ISA bridge";
39bffca2 164 dc->vmsd = &vmstate_piix4;
81aab2ff
MA
165 /*
166 * Reason: part of PIIX4 southbridge, needs to be wired up,
167 * e.g. by mips_malta_init()
168 */
e90f2a8c 169 dc->user_creatable = false;
2897ae02 170 dc->hotpluggable = false;
40021f08
AL
171}
172
8c43a6f0 173static const TypeInfo piix4_info = {
acff3e48 174 .name = TYPE_PIIX4_PCI_DEVICE,
39bffca2
AL
175 .parent = TYPE_PCI_DEVICE,
176 .instance_size = sizeof(PIIX4State),
177 .class_init = piix4_class_init,
fd3b02c8
EH
178 .interfaces = (InterfaceInfo[]) {
179 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
180 { },
181 },
823e675a
JQ
182};
183
83f7d43a 184static void piix4_register_types(void)
823e675a 185{
39bffca2 186 type_register_static(&piix4_info);
823e675a 187}
83f7d43a
AF
188
189type_init(piix4_register_types)
This page took 0.736624 seconds and 4 git commands to generate.