]> Git Repo - qemu.git/blame - hw/ide/piix.c
ppc/pnv: Introduce a POWER10 PnvChip and a powernv10 machine
[qemu.git] / hw / ide / piix.c
CommitLineData
4c3df0ec
JQ
1/*
2 * QEMU IDE Emulation: PCI PIIX3/4 support.
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2006 Openedhand Ltd.
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 */
dfc65f1f 25
53239262 26#include "qemu/osdep.h"
a9c94277 27#include "hw/pci/pci.h"
d6454270 28#include "migration/vmstate.h"
0b8fa32f 29#include "qemu/module.h"
b9fe8a7a 30#include "sysemu/block-backend.h"
78631611 31#include "sysemu/blockdev.h"
9c17d615 32#include "sysemu/dma.h"
4c3df0ec 33
a9c94277 34#include "hw/ide/pci.h"
3eee2611 35#include "trace.h"
4c3df0ec 36
a8170e5e 37static uint64_t bmdma_read(void *opaque, hwaddr addr, unsigned size)
4c3df0ec
JQ
38{
39 BMDMAState *bm = opaque;
40 uint32_t val;
41
a9deb8c6
AK
42 if (size != 1) {
43 return ((uint64_t)1 << (size * 8)) - 1;
44 }
45
4c3df0ec
JQ
46 switch(addr & 3) {
47 case 0:
48 val = bm->cmd;
49 break;
50 case 2:
51 val = bm->status;
52 break;
53 default:
54 val = 0xff;
55 break;
56 }
3eee2611
JS
57
58 trace_bmdma_read(addr, val);
4c3df0ec
JQ
59 return val;
60}
61
a8170e5e 62static void bmdma_write(void *opaque, hwaddr addr,
a9deb8c6 63 uint64_t val, unsigned size)
4c3df0ec
JQ
64{
65 BMDMAState *bm = opaque;
a9deb8c6
AK
66
67 if (size != 1) {
68 return;
69 }
70
3eee2611
JS
71 trace_bmdma_write(addr, val);
72
4c3df0ec 73 switch(addr & 3) {
a9deb8c6 74 case 0:
0ed8b6f6
BS
75 bmdma_cmd_writeb(bm, val);
76 break;
4c3df0ec
JQ
77 case 2:
78 bm->status = (val & 0x60) | (bm->status & 1) | (bm->status & ~val & 0x06);
79 break;
80 }
81}
82
a348f108 83static const MemoryRegionOps piix_bmdma_ops = {
a9deb8c6
AK
84 .read = bmdma_read,
85 .write = bmdma_write,
86};
87
88static void bmdma_setup_bar(PCIIDEState *d)
4c3df0ec 89{
4c3df0ec
JQ
90 int i;
91
1437c94b 92 memory_region_init(&d->bmdma_bar, OBJECT(d), "piix-bmdma-container", 16);
4c3df0ec
JQ
93 for(i = 0;i < 2; i++) {
94 BMDMAState *bm = &d->bmdma[i];
4c3df0ec 95
1437c94b 96 memory_region_init_io(&bm->extra_io, OBJECT(d), &piix_bmdma_ops, bm,
a9deb8c6
AK
97 "piix-bmdma", 4);
98 memory_region_add_subregion(&d->bmdma_bar, i * 8, &bm->extra_io);
1437c94b
PB
99 memory_region_init_io(&bm->addr_ioport, OBJECT(d),
100 &bmdma_addr_ioport_ops, bm, "bmdma", 4);
a9deb8c6 101 memory_region_add_subregion(&d->bmdma_bar, i * 8 + 4, &bm->addr_ioport);
4c3df0ec
JQ
102 }
103}
104
ee358e91 105static void piix_ide_reset(DeviceState *dev)
4c3df0ec 106{
ee358e91 107 PCIIDEState *d = PCI_IDE(dev);
f6c11d56
AF
108 PCIDevice *pd = PCI_DEVICE(d);
109 uint8_t *pci_conf = pd->config;
4c3df0ec
JQ
110 int i;
111
4a643563
BS
112 for (i = 0; i < 2; i++) {
113 ide_bus_reset(&d->bus[i]);
4a643563 114 }
4c3df0ec 115
1e68f8c4
MT
116 /* TODO: this is the default. do not override. */
117 pci_conf[PCI_COMMAND] = 0x00;
118 /* TODO: this is the default. do not override. */
119 pci_conf[PCI_COMMAND + 1] = 0x00;
120 /* TODO: use pci_set_word */
121 pci_conf[PCI_STATUS] = PCI_STATUS_FAST_BACK;
122 pci_conf[PCI_STATUS + 1] = PCI_STATUS_DEVSEL_MEDIUM >> 8;
4c3df0ec
JQ
123 pci_conf[0x20] = 0x01; /* BMIBA: 20-23h */
124}
125
61d9d6b0 126static void pci_piix_init_ports(PCIIDEState *d) {
4a91d3b3 127 static const struct {
61d9d6b0
SH
128 int iobase;
129 int iobase2;
130 int isairq;
131 } port_info[] = {
132 {0x1f0, 0x3f6, 14},
133 {0x170, 0x376, 15},
134 };
4a91d3b3 135 int i;
61d9d6b0
SH
136
137 for (i = 0; i < 2; i++) {
c6baf942 138 ide_bus_new(&d->bus[i], sizeof(d->bus[i]), DEVICE(d), i, 2);
4a91d3b3
RH
139 ide_init_ioport(&d->bus[i], NULL, port_info[i].iobase,
140 port_info[i].iobase2);
48a18b3c 141 ide_init2(&d->bus[i], isa_get_irq(NULL, port_info[i].isairq));
61d9d6b0 142
a9deb8c6 143 bmdma_init(&d->bus[i], &d->bmdma[i], d);
61d9d6b0 144 d->bmdma[i].bus = &d->bus[i];
f878c916 145 ide_register_restart_cb(&d->bus[i]);
61d9d6b0
SH
146 }
147}
148
9af21dbe 149static void pci_piix_ide_realize(PCIDevice *dev, Error **errp)
4c3df0ec 150{
f6c11d56
AF
151 PCIIDEState *d = PCI_IDE(dev);
152 uint8_t *pci_conf = dev->config;
4c3df0ec 153
1e68f8c4 154 pci_conf[PCI_CLASS_PROG] = 0x80; // legacy ATA mode
4c3df0ec 155
a9deb8c6 156 bmdma_setup_bar(d);
f6c11d56 157 pci_register_bar(dev, 4, PCI_BASE_ADDRESS_SPACE_IO, &d->bmdma_bar);
4c3df0ec 158
02a9594b 159 vmstate_register(DEVICE(dev), 0, &vmstate_ide_pci, d);
4c3df0ec 160
61d9d6b0 161 pci_piix_init_ports(d);
4c3df0ec
JQ
162}
163
ae4d2eb2 164int pci_piix3_xen_ide_unplug(DeviceState *dev, bool aux)
679f4f8b 165{
679f4f8b
SS
166 PCIIDEState *pci_ide;
167 DriveInfo *di;
d4f9e806 168 int i;
6cd38783 169 IDEDevice *idedev;
679f4f8b 170
f6c11d56 171 pci_ide = PCI_IDE(dev);
679f4f8b 172
ae4d2eb2 173 for (i = aux ? 1 : 0; i < 4; i++) {
679f4f8b 174 di = drive_get_by_index(IF_IDE, i);
f9e8fda4 175 if (di != NULL && !di->media_cd) {
b9fe8a7a 176 BlockBackend *blk = blk_by_legacy_dinfo(di);
4be74634 177 DeviceState *ds = blk_get_attached_dev(blk);
49137bf6
JS
178
179 blk_drain(blk);
180 blk_flush(blk);
181
679f4f8b 182 if (ds) {
4be74634 183 blk_detach_dev(blk, ds);
679f4f8b 184 }
4be74634 185 pci_ide->bus[di->bus].ifs[di->unit].blk = NULL;
6cd38783
SS
186 if (!(i % 2)) {
187 idedev = pci_ide->bus[di->bus].master;
188 } else {
189 idedev = pci_ide->bus[di->bus].slave;
190 }
191 idedev->conf.blk = NULL;
d1fc684f 192 monitor_remove_blk(blk);
b9fe8a7a 193 blk_unref(blk);
679f4f8b
SS
194 }
195 }
02a9594b 196 qdev_reset_all(DEVICE(dev));
679f4f8b
SS
197 return 0;
198}
199
200PCIDevice *pci_piix3_xen_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
201{
202 PCIDevice *dev;
203
204 dev = pci_create_simple(bus, devfn, "piix3-ide-xen");
679f4f8b
SS
205 pci_ide_create_devs(dev, hd_table);
206 return dev;
207}
208
f90c2bcd 209static void pci_piix_ide_exitfn(PCIDevice *dev)
a9deb8c6 210{
f6c11d56 211 PCIIDEState *d = PCI_IDE(dev);
a9deb8c6
AK
212 unsigned i;
213
214 for (i = 0; i < 2; ++i) {
215 memory_region_del_subregion(&d->bmdma_bar, &d->bmdma[i].extra_io);
a9deb8c6 216 memory_region_del_subregion(&d->bmdma_bar, &d->bmdma[i].addr_ioport);
a9deb8c6 217 }
a9deb8c6
AK
218}
219
4c3df0ec
JQ
220/* hd_table must contain 4 block drivers */
221/* NOTE: for the PIIX3, the IRQs and IOports are hardcoded */
57c88866 222PCIDevice *pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
4c3df0ec
JQ
223{
224 PCIDevice *dev;
225
556cd098 226 dev = pci_create_simple(bus, devfn, "piix3-ide");
4c3df0ec 227 pci_ide_create_devs(dev, hd_table);
57c88866 228 return dev;
4c3df0ec
JQ
229}
230
231/* hd_table must contain 4 block drivers */
232/* NOTE: for the PIIX4, the IRQs and IOports are hardcoded */
57c88866 233PCIDevice *pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
4c3df0ec
JQ
234{
235 PCIDevice *dev;
236
556cd098 237 dev = pci_create_simple(bus, devfn, "piix4-ide");
4c3df0ec 238 pci_ide_create_devs(dev, hd_table);
57c88866 239 return dev;
4c3df0ec
JQ
240}
241
40021f08
AL
242static void piix3_ide_class_init(ObjectClass *klass, void *data)
243{
39bffca2 244 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
245 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
246
ee358e91 247 dc->reset = piix_ide_reset;
9af21dbe 248 k->realize = pci_piix_ide_realize;
40021f08
AL
249 k->exit = pci_piix_ide_exitfn;
250 k->vendor_id = PCI_VENDOR_ID_INTEL;
251 k->device_id = PCI_DEVICE_ID_INTEL_82371SB_1;
252 k->class_id = PCI_CLASS_STORAGE_IDE;
125ee0ed 253 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
2897ae02 254 dc->hotpluggable = false;
40021f08
AL
255}
256
8c43a6f0 257static const TypeInfo piix3_ide_info = {
39bffca2 258 .name = "piix3-ide",
f6c11d56 259 .parent = TYPE_PCI_IDE,
39bffca2 260 .class_init = piix3_ide_class_init,
e855761c
AL
261};
262
8c43a6f0 263static const TypeInfo piix3_ide_xen_info = {
39bffca2 264 .name = "piix3-ide-xen",
f6c11d56 265 .parent = TYPE_PCI_IDE,
0f844582 266 .class_init = piix3_ide_class_init,
e855761c
AL
267};
268
40021f08
AL
269static void piix4_ide_class_init(ObjectClass *klass, void *data)
270{
39bffca2 271 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
272 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
273
ee358e91 274 dc->reset = piix_ide_reset;
9af21dbe 275 k->realize = pci_piix_ide_realize;
40021f08
AL
276 k->exit = pci_piix_ide_exitfn;
277 k->vendor_id = PCI_VENDOR_ID_INTEL;
278 k->device_id = PCI_DEVICE_ID_INTEL_82371AB;
279 k->class_id = PCI_CLASS_STORAGE_IDE;
125ee0ed 280 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
2897ae02 281 dc->hotpluggable = false;
40021f08
AL
282}
283
8c43a6f0 284static const TypeInfo piix4_ide_info = {
39bffca2 285 .name = "piix4-ide",
f6c11d56 286 .parent = TYPE_PCI_IDE,
39bffca2 287 .class_init = piix4_ide_class_init,
4c3df0ec
JQ
288};
289
83f7d43a 290static void piix_ide_register_types(void)
4c3df0ec 291{
39bffca2
AL
292 type_register_static(&piix3_ide_info);
293 type_register_static(&piix3_ide_xen_info);
294 type_register_static(&piix4_ide_info);
4c3df0ec 295}
83f7d43a
AF
296
297type_init(piix_ide_register_types)
This page took 0.726347 seconds and 4 git commands to generate.