]> git.proxmox.com Git - mirror_qemu.git/blob - hw/ide/piix.c
Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging
[mirror_qemu.git] / hw / ide / piix.c
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 */
25
26 #include <hw/hw.h>
27 #include <hw/i386/pc.h>
28 #include <hw/pci/pci.h>
29 #include <hw/isa/isa.h>
30 #include "sysemu/blockdev.h"
31 #include "sysemu/sysemu.h"
32 #include "sysemu/dma.h"
33
34 #include <hw/ide/pci.h>
35
36 static uint64_t bmdma_read(void *opaque, hwaddr addr, unsigned size)
37 {
38 BMDMAState *bm = opaque;
39 uint32_t val;
40
41 if (size != 1) {
42 return ((uint64_t)1 << (size * 8)) - 1;
43 }
44
45 switch(addr & 3) {
46 case 0:
47 val = bm->cmd;
48 break;
49 case 2:
50 val = bm->status;
51 break;
52 default:
53 val = 0xff;
54 break;
55 }
56 #ifdef DEBUG_IDE
57 printf("bmdma: readb 0x%02x : 0x%02x\n", (uint8_t)addr, val);
58 #endif
59 return val;
60 }
61
62 static void bmdma_write(void *opaque, hwaddr addr,
63 uint64_t val, unsigned size)
64 {
65 BMDMAState *bm = opaque;
66
67 if (size != 1) {
68 return;
69 }
70
71 #ifdef DEBUG_IDE
72 printf("bmdma: writeb 0x%02x : 0x%02x\n", (uint8_t)addr, (uint8_t)val);
73 #endif
74 switch(addr & 3) {
75 case 0:
76 bmdma_cmd_writeb(bm, val);
77 break;
78 case 2:
79 bm->status = (val & 0x60) | (bm->status & 1) | (bm->status & ~val & 0x06);
80 break;
81 }
82 }
83
84 static const MemoryRegionOps piix_bmdma_ops = {
85 .read = bmdma_read,
86 .write = bmdma_write,
87 };
88
89 static void bmdma_setup_bar(PCIIDEState *d)
90 {
91 int i;
92
93 memory_region_init(&d->bmdma_bar, OBJECT(d), "piix-bmdma-container", 16);
94 for(i = 0;i < 2; i++) {
95 BMDMAState *bm = &d->bmdma[i];
96
97 memory_region_init_io(&bm->extra_io, OBJECT(d), &piix_bmdma_ops, bm,
98 "piix-bmdma", 4);
99 memory_region_add_subregion(&d->bmdma_bar, i * 8, &bm->extra_io);
100 memory_region_init_io(&bm->addr_ioport, OBJECT(d),
101 &bmdma_addr_ioport_ops, bm, "bmdma", 4);
102 memory_region_add_subregion(&d->bmdma_bar, i * 8 + 4, &bm->addr_ioport);
103 }
104 }
105
106 static void piix3_reset(void *opaque)
107 {
108 PCIIDEState *d = opaque;
109 PCIDevice *pd = PCI_DEVICE(d);
110 uint8_t *pci_conf = pd->config;
111 int i;
112
113 for (i = 0; i < 2; i++) {
114 ide_bus_reset(&d->bus[i]);
115 }
116
117 /* TODO: this is the default. do not override. */
118 pci_conf[PCI_COMMAND] = 0x00;
119 /* TODO: this is the default. do not override. */
120 pci_conf[PCI_COMMAND + 1] = 0x00;
121 /* TODO: use pci_set_word */
122 pci_conf[PCI_STATUS] = PCI_STATUS_FAST_BACK;
123 pci_conf[PCI_STATUS + 1] = PCI_STATUS_DEVSEL_MEDIUM >> 8;
124 pci_conf[0x20] = 0x01; /* BMIBA: 20-23h */
125 }
126
127 static void pci_piix_init_ports(PCIIDEState *d) {
128 static const struct {
129 int iobase;
130 int iobase2;
131 int isairq;
132 } port_info[] = {
133 {0x1f0, 0x3f6, 14},
134 {0x170, 0x376, 15},
135 };
136 int i;
137
138 for (i = 0; i < 2; i++) {
139 ide_bus_new(&d->bus[i], sizeof(d->bus[i]), DEVICE(d), i, 2);
140 ide_init_ioport(&d->bus[i], NULL, port_info[i].iobase,
141 port_info[i].iobase2);
142 ide_init2(&d->bus[i], isa_get_irq(NULL, port_info[i].isairq));
143
144 bmdma_init(&d->bus[i], &d->bmdma[i], d);
145 d->bmdma[i].bus = &d->bus[i];
146 qemu_add_vm_change_state_handler(d->bus[i].dma->ops->restart_cb,
147 &d->bmdma[i].dma);
148 }
149 }
150
151 static int pci_piix_ide_initfn(PCIDevice *dev)
152 {
153 PCIIDEState *d = PCI_IDE(dev);
154 uint8_t *pci_conf = dev->config;
155
156 pci_conf[PCI_CLASS_PROG] = 0x80; // legacy ATA mode
157
158 qemu_register_reset(piix3_reset, d);
159
160 bmdma_setup_bar(d);
161 pci_register_bar(dev, 4, PCI_BASE_ADDRESS_SPACE_IO, &d->bmdma_bar);
162
163 vmstate_register(DEVICE(dev), 0, &vmstate_ide_pci, d);
164
165 pci_piix_init_ports(d);
166
167 return 0;
168 }
169
170 int pci_piix3_xen_ide_unplug(DeviceState *dev)
171 {
172 PCIIDEState *pci_ide;
173 DriveInfo *di;
174 int i = 0;
175
176 pci_ide = PCI_IDE(dev);
177
178 for (; i < 3; i++) {
179 di = drive_get_by_index(IF_IDE, i);
180 if (di != NULL && !di->media_cd) {
181 DeviceState *ds = bdrv_get_attached_dev(di->bdrv);
182 if (ds) {
183 bdrv_detach_dev(di->bdrv, ds);
184 }
185 pci_ide->bus[di->bus].ifs[di->unit].bs = NULL;
186 drive_del(di);
187 }
188 }
189 qdev_reset_all(DEVICE(dev));
190 return 0;
191 }
192
193 PCIDevice *pci_piix3_xen_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
194 {
195 PCIDevice *dev;
196
197 dev = pci_create_simple(bus, devfn, "piix3-ide-xen");
198 pci_ide_create_devs(dev, hd_table);
199 return dev;
200 }
201
202 static void pci_piix_ide_exitfn(PCIDevice *dev)
203 {
204 PCIIDEState *d = PCI_IDE(dev);
205 unsigned i;
206
207 for (i = 0; i < 2; ++i) {
208 memory_region_del_subregion(&d->bmdma_bar, &d->bmdma[i].extra_io);
209 memory_region_del_subregion(&d->bmdma_bar, &d->bmdma[i].addr_ioport);
210 }
211 }
212
213 /* hd_table must contain 4 block drivers */
214 /* NOTE: for the PIIX3, the IRQs and IOports are hardcoded */
215 PCIDevice *pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
216 {
217 PCIDevice *dev;
218
219 dev = pci_create_simple(bus, devfn, "piix3-ide");
220 pci_ide_create_devs(dev, hd_table);
221 return dev;
222 }
223
224 /* hd_table must contain 4 block drivers */
225 /* NOTE: for the PIIX4, the IRQs and IOports are hardcoded */
226 PCIDevice *pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
227 {
228 PCIDevice *dev;
229
230 dev = pci_create_simple(bus, devfn, "piix4-ide");
231 pci_ide_create_devs(dev, hd_table);
232 return dev;
233 }
234
235 static void piix3_ide_class_init(ObjectClass *klass, void *data)
236 {
237 DeviceClass *dc = DEVICE_CLASS(klass);
238 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
239
240 k->init = pci_piix_ide_initfn;
241 k->exit = pci_piix_ide_exitfn;
242 k->vendor_id = PCI_VENDOR_ID_INTEL;
243 k->device_id = PCI_DEVICE_ID_INTEL_82371SB_1;
244 k->class_id = PCI_CLASS_STORAGE_IDE;
245 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
246 dc->hotpluggable = false;
247 }
248
249 static const TypeInfo piix3_ide_info = {
250 .name = "piix3-ide",
251 .parent = TYPE_PCI_IDE,
252 .class_init = piix3_ide_class_init,
253 };
254
255 static void piix3_ide_xen_class_init(ObjectClass *klass, void *data)
256 {
257 DeviceClass *dc = DEVICE_CLASS(klass);
258 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
259
260 k->init = pci_piix_ide_initfn;
261 k->vendor_id = PCI_VENDOR_ID_INTEL;
262 k->device_id = PCI_DEVICE_ID_INTEL_82371SB_1;
263 k->class_id = PCI_CLASS_STORAGE_IDE;
264 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
265 }
266
267 static const TypeInfo piix3_ide_xen_info = {
268 .name = "piix3-ide-xen",
269 .parent = TYPE_PCI_IDE,
270 .class_init = piix3_ide_xen_class_init,
271 };
272
273 static void piix4_ide_class_init(ObjectClass *klass, void *data)
274 {
275 DeviceClass *dc = DEVICE_CLASS(klass);
276 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
277
278 k->init = pci_piix_ide_initfn;
279 k->exit = pci_piix_ide_exitfn;
280 k->vendor_id = PCI_VENDOR_ID_INTEL;
281 k->device_id = PCI_DEVICE_ID_INTEL_82371AB;
282 k->class_id = PCI_CLASS_STORAGE_IDE;
283 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
284 dc->hotpluggable = false;
285 }
286
287 static const TypeInfo piix4_ide_info = {
288 .name = "piix4-ide",
289 .parent = TYPE_PCI_IDE,
290 .class_init = piix4_ide_class_init,
291 };
292
293 static void piix_ide_register_types(void)
294 {
295 type_register_static(&piix3_ide_info);
296 type_register_static(&piix3_ide_xen_info);
297 type_register_static(&piix4_ide_info);
298 }
299
300 type_init(piix_ide_register_types)