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