2 * QEMU IDE Emulation: PCI cmd646 support.
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2006 Openedhand Ltd.
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:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
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
30 #include "block_int.h"
34 #include <hw/ide/pci.h>
38 #define MRDMODE_INTR_CH0 0x04
39 #define MRDMODE_INTR_CH1 0x08
40 #define MRDMODE_BLK_CH0 0x10
41 #define MRDMODE_BLK_CH1 0x20
42 #define UDIDETCR0 0x73
43 #define UDIDETCR1 0x7B
45 static void cmd646_update_irq(PCIIDEState *d);
47 static void ide_map(PCIDevice *pci_dev, int region_num,
48 pcibus_t addr, pcibus_t size, int type)
50 PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, pci_dev);
53 if (region_num <= 3) {
54 bus = &d->bus[(region_num >> 1)];
56 register_ioport_read(addr + 2, 1, 1, ide_status_read, bus);
57 register_ioport_write(addr + 2, 1, 1, ide_cmd_write, bus);
59 register_ioport_write(addr, 8, 1, ide_ioport_write, bus);
60 register_ioport_read(addr, 8, 1, ide_ioport_read, bus);
63 register_ioport_write(addr, 2, 2, ide_data_writew, bus);
64 register_ioport_read(addr, 2, 2, ide_data_readw, bus);
65 register_ioport_write(addr, 4, 4, ide_data_writel, bus);
66 register_ioport_read(addr, 4, 4, ide_data_readl, bus);
71 static uint32_t bmdma_readb_common(PCIIDEState *pci_dev, BMDMAState *bm,
81 val = pci_dev->dev.config[MRDMODE];
87 if (bm == &pci_dev->bmdma[0]) {
88 val = pci_dev->dev.config[UDIDETCR0];
90 val = pci_dev->dev.config[UDIDETCR1];
98 printf("bmdma: readb 0x%02x : 0x%02x\n", addr, val);
103 static uint32_t bmdma_readb_0(void *opaque, uint32_t addr)
105 PCIIDEState *pci_dev = opaque;
106 BMDMAState *bm = &pci_dev->bmdma[0];
108 return bmdma_readb_common(pci_dev, bm, addr);
111 static uint32_t bmdma_readb_1(void *opaque, uint32_t addr)
113 PCIIDEState *pci_dev = opaque;
114 BMDMAState *bm = &pci_dev->bmdma[1];
116 return bmdma_readb_common(pci_dev, bm, addr);
119 static void bmdma_writeb_common(PCIIDEState *pci_dev, BMDMAState *bm,
120 uint32_t addr, uint32_t val)
123 printf("bmdma: writeb 0x%02x : 0x%02x\n", addr, val);
127 pci_dev->dev.config[MRDMODE] =
128 (pci_dev->dev.config[MRDMODE] & ~0x30) | (val & 0x30);
129 cmd646_update_irq(pci_dev);
132 bm->status = (val & 0x60) | (bm->status & 1) | (bm->status & ~val & 0x06);
135 if (bm == &pci_dev->bmdma[0])
136 pci_dev->dev.config[UDIDETCR0] = val;
138 pci_dev->dev.config[UDIDETCR1] = val;
143 static void bmdma_writeb_0(void *opaque, uint32_t addr, uint32_t val)
145 PCIIDEState *pci_dev = opaque;
146 BMDMAState *bm = &pci_dev->bmdma[0];
148 bmdma_writeb_common(pci_dev, bm, addr, val);
151 static void bmdma_writeb_1(void *opaque, uint32_t addr, uint32_t val)
153 PCIIDEState *pci_dev = opaque;
154 BMDMAState *bm = &pci_dev->bmdma[1];
156 bmdma_writeb_common(pci_dev, bm, addr, val);
159 static void bmdma_map(PCIDevice *pci_dev, int region_num,
160 pcibus_t addr, pcibus_t size, int type)
162 PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, pci_dev);
165 for(i = 0;i < 2; i++) {
166 BMDMAState *bm = &d->bmdma[i];
167 d->bus[i].bmdma = bm;
169 qemu_add_vm_change_state_handler(ide_dma_restart_cb, bm);
171 register_ioport_write(addr, 1, 1, bmdma_cmd_writeb, bm);
174 register_ioport_write(addr + 1, 3, 1, bmdma_writeb_0, d);
175 register_ioport_read(addr, 4, 1, bmdma_readb_0, d);
177 register_ioport_write(addr + 1, 3, 1, bmdma_writeb_1, d);
178 register_ioport_read(addr, 4, 1, bmdma_readb_1, d);
181 register_ioport_write(addr + 4, 4, 1, bmdma_addr_writeb, bm);
182 register_ioport_read(addr + 4, 4, 1, bmdma_addr_readb, bm);
183 register_ioport_write(addr + 4, 4, 2, bmdma_addr_writew, bm);
184 register_ioport_read(addr + 4, 4, 2, bmdma_addr_readw, bm);
185 register_ioport_write(addr + 4, 4, 4, bmdma_addr_writel, bm);
186 register_ioport_read(addr + 4, 4, 4, bmdma_addr_readl, bm);
191 /* XXX: call it also when the MRDMODE is changed from the PCI config
193 static void cmd646_update_irq(PCIIDEState *d)
196 pci_level = ((d->dev.config[MRDMODE] & MRDMODE_INTR_CH0) &&
197 !(d->dev.config[MRDMODE] & MRDMODE_BLK_CH0)) ||
198 ((d->dev.config[MRDMODE] & MRDMODE_INTR_CH1) &&
199 !(d->dev.config[MRDMODE] & MRDMODE_BLK_CH1));
200 qemu_set_irq(d->dev.irq[0], pci_level);
203 /* the PCI irq level is the logical OR of the two channels */
204 static void cmd646_set_irq(void *opaque, int channel, int level)
206 PCIIDEState *d = opaque;
209 irq_mask = MRDMODE_INTR_CH0 << channel;
211 d->dev.config[MRDMODE] |= irq_mask;
213 d->dev.config[MRDMODE] &= ~irq_mask;
214 cmd646_update_irq(d);
217 static void cmd646_reset(void *opaque)
219 PCIIDEState *d = opaque;
222 for (i = 0; i < 2; i++) {
223 ide_bus_reset(&d->bus[i]);
224 ide_dma_reset(&d->bmdma[i]);
228 /* CMD646 PCI IDE controller */
229 static int pci_cmd646_ide_initfn(PCIDevice *dev)
231 PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev);
232 uint8_t *pci_conf = d->dev.config;
235 pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_CMD);
236 pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_CMD_646);
238 pci_conf[PCI_REVISION_ID] = 0x07; // IDE controller revision
239 pci_conf[PCI_CLASS_PROG] = 0x8f;
241 pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
242 pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
244 pci_conf[0x51] = 0x04; // enable IDE0
246 /* XXX: if not enabled, really disable the seconday IDE controller */
247 pci_conf[0x51] |= 0x08; /* enable IDE1 */
250 pci_register_bar(dev, 0, 0x8, PCI_BASE_ADDRESS_SPACE_IO, ide_map);
251 pci_register_bar(dev, 1, 0x4, PCI_BASE_ADDRESS_SPACE_IO, ide_map);
252 pci_register_bar(dev, 2, 0x8, PCI_BASE_ADDRESS_SPACE_IO, ide_map);
253 pci_register_bar(dev, 3, 0x4, PCI_BASE_ADDRESS_SPACE_IO, ide_map);
254 pci_register_bar(dev, 4, 0x10, PCI_BASE_ADDRESS_SPACE_IO, bmdma_map);
256 /* TODO: RST# value should be 0 */
257 pci_conf[PCI_INTERRUPT_PIN] = 0x01; // interrupt on pin 1
259 irq = qemu_allocate_irqs(cmd646_set_irq, d, 2);
260 ide_bus_new(&d->bus[0], &d->dev.qdev);
261 ide_bus_new(&d->bus[1], &d->dev.qdev);
262 ide_init2(&d->bus[0], NULL, NULL, irq[0]);
263 ide_init2(&d->bus[1], NULL, NULL, irq[1]);
265 vmstate_register(0, &vmstate_ide_pci, d);
266 qemu_register_reset(cmd646_reset, d);
270 void pci_cmd646_ide_init(PCIBus *bus, DriveInfo **hd_table,
271 int secondary_ide_enabled)
275 dev = pci_create(bus, -1, "cmd646-ide");
276 qdev_prop_set_uint32(&dev->qdev, "secondary", secondary_ide_enabled);
277 qdev_init_nofail(&dev->qdev);
279 pci_ide_create_devs(dev, hd_table);
282 static PCIDeviceInfo cmd646_ide_info[] = {
284 .qdev.name = "cmd646-ide",
285 .qdev.size = sizeof(PCIIDEState),
286 .init = pci_cmd646_ide_initfn,
287 .qdev.props = (Property[]) {
288 DEFINE_PROP_UINT32("secondary", PCIIDEState, secondary, 0),
289 DEFINE_PROP_END_OF_LIST(),
296 static void cmd646_ide_register(void)
298 pci_qdev_register_many(cmd646_ide_info);
300 device_init(cmd646_ide_register);