piix.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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. #include "qemu/osdep.h"
  26. #include "hw/pci/pci.h"
  27. #include "migration/vmstate.h"
  28. #include "qemu/module.h"
  29. #include "sysemu/block-backend.h"
  30. #include "sysemu/blockdev.h"
  31. #include "sysemu/dma.h"
  32. #include "hw/ide/pci.h"
  33. #include "trace.h"
  34. static uint64_t bmdma_read(void *opaque, hwaddr addr, unsigned size)
  35. {
  36. BMDMAState *bm = opaque;
  37. uint32_t val;
  38. if (size != 1) {
  39. return ((uint64_t)1 << (size * 8)) - 1;
  40. }
  41. switch(addr & 3) {
  42. case 0:
  43. val = bm->cmd;
  44. break;
  45. case 2:
  46. val = bm->status;
  47. break;
  48. default:
  49. val = 0xff;
  50. break;
  51. }
  52. trace_bmdma_read(addr, val);
  53. return val;
  54. }
  55. static void bmdma_write(void *opaque, hwaddr addr,
  56. uint64_t val, unsigned size)
  57. {
  58. BMDMAState *bm = opaque;
  59. if (size != 1) {
  60. return;
  61. }
  62. trace_bmdma_write(addr, val);
  63. switch(addr & 3) {
  64. case 0:
  65. bmdma_cmd_writeb(bm, val);
  66. break;
  67. case 2:
  68. bm->status = (val & 0x60) | (bm->status & 1) | (bm->status & ~val & 0x06);
  69. break;
  70. }
  71. }
  72. static const MemoryRegionOps piix_bmdma_ops = {
  73. .read = bmdma_read,
  74. .write = bmdma_write,
  75. };
  76. static void bmdma_setup_bar(PCIIDEState *d)
  77. {
  78. int i;
  79. memory_region_init(&d->bmdma_bar, OBJECT(d), "piix-bmdma-container", 16);
  80. for(i = 0;i < 2; i++) {
  81. BMDMAState *bm = &d->bmdma[i];
  82. memory_region_init_io(&bm->extra_io, OBJECT(d), &piix_bmdma_ops, bm,
  83. "piix-bmdma", 4);
  84. memory_region_add_subregion(&d->bmdma_bar, i * 8, &bm->extra_io);
  85. memory_region_init_io(&bm->addr_ioport, OBJECT(d),
  86. &bmdma_addr_ioport_ops, bm, "bmdma", 4);
  87. memory_region_add_subregion(&d->bmdma_bar, i * 8 + 4, &bm->addr_ioport);
  88. }
  89. }
  90. static void piix_ide_reset(DeviceState *dev)
  91. {
  92. PCIIDEState *d = PCI_IDE(dev);
  93. PCIDevice *pd = PCI_DEVICE(d);
  94. uint8_t *pci_conf = pd->config;
  95. int i;
  96. for (i = 0; i < 2; i++) {
  97. ide_bus_reset(&d->bus[i]);
  98. }
  99. /* TODO: this is the default. do not override. */
  100. pci_conf[PCI_COMMAND] = 0x00;
  101. /* TODO: this is the default. do not override. */
  102. pci_conf[PCI_COMMAND + 1] = 0x00;
  103. /* TODO: use pci_set_word */
  104. pci_conf[PCI_STATUS] = PCI_STATUS_FAST_BACK;
  105. pci_conf[PCI_STATUS + 1] = PCI_STATUS_DEVSEL_MEDIUM >> 8;
  106. pci_conf[0x20] = 0x01; /* BMIBA: 20-23h */
  107. }
  108. static void pci_piix_init_ports(PCIIDEState *d) {
  109. static const struct {
  110. int iobase;
  111. int iobase2;
  112. int isairq;
  113. } port_info[] = {
  114. {0x1f0, 0x3f6, 14},
  115. {0x170, 0x376, 15},
  116. };
  117. int i;
  118. for (i = 0; i < 2; i++) {
  119. ide_bus_new(&d->bus[i], sizeof(d->bus[i]), DEVICE(d), i, 2);
  120. ide_init_ioport(&d->bus[i], NULL, port_info[i].iobase,
  121. port_info[i].iobase2);
  122. ide_init2(&d->bus[i], isa_get_irq(NULL, port_info[i].isairq));
  123. bmdma_init(&d->bus[i], &d->bmdma[i], d);
  124. d->bmdma[i].bus = &d->bus[i];
  125. ide_register_restart_cb(&d->bus[i]);
  126. }
  127. }
  128. static void pci_piix_ide_realize(PCIDevice *dev, Error **errp)
  129. {
  130. PCIIDEState *d = PCI_IDE(dev);
  131. uint8_t *pci_conf = dev->config;
  132. pci_conf[PCI_CLASS_PROG] = 0x80; // legacy ATA mode
  133. bmdma_setup_bar(d);
  134. pci_register_bar(dev, 4, PCI_BASE_ADDRESS_SPACE_IO, &d->bmdma_bar);
  135. vmstate_register(VMSTATE_IF(dev), 0, &vmstate_ide_pci, d);
  136. pci_piix_init_ports(d);
  137. }
  138. int pci_piix3_xen_ide_unplug(DeviceState *dev, bool aux)
  139. {
  140. PCIIDEState *pci_ide;
  141. DriveInfo *di;
  142. int i;
  143. IDEDevice *idedev;
  144. pci_ide = PCI_IDE(dev);
  145. for (i = aux ? 1 : 0; i < 4; i++) {
  146. di = drive_get_by_index(IF_IDE, i);
  147. if (di != NULL && !di->media_cd) {
  148. BlockBackend *blk = blk_by_legacy_dinfo(di);
  149. DeviceState *ds = blk_get_attached_dev(blk);
  150. blk_drain(blk);
  151. blk_flush(blk);
  152. if (ds) {
  153. blk_detach_dev(blk, ds);
  154. }
  155. pci_ide->bus[di->bus].ifs[di->unit].blk = NULL;
  156. if (!(i % 2)) {
  157. idedev = pci_ide->bus[di->bus].master;
  158. } else {
  159. idedev = pci_ide->bus[di->bus].slave;
  160. }
  161. idedev->conf.blk = NULL;
  162. monitor_remove_blk(blk);
  163. blk_unref(blk);
  164. }
  165. }
  166. qdev_reset_all(dev);
  167. return 0;
  168. }
  169. static void pci_piix_ide_exitfn(PCIDevice *dev)
  170. {
  171. PCIIDEState *d = PCI_IDE(dev);
  172. unsigned i;
  173. for (i = 0; i < 2; ++i) {
  174. memory_region_del_subregion(&d->bmdma_bar, &d->bmdma[i].extra_io);
  175. memory_region_del_subregion(&d->bmdma_bar, &d->bmdma[i].addr_ioport);
  176. }
  177. }
  178. /* NOTE: for the PIIX3, the IRQs and IOports are hardcoded */
  179. static void piix3_ide_class_init(ObjectClass *klass, void *data)
  180. {
  181. DeviceClass *dc = DEVICE_CLASS(klass);
  182. PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
  183. dc->reset = piix_ide_reset;
  184. k->realize = pci_piix_ide_realize;
  185. k->exit = pci_piix_ide_exitfn;
  186. k->vendor_id = PCI_VENDOR_ID_INTEL;
  187. k->device_id = PCI_DEVICE_ID_INTEL_82371SB_1;
  188. k->class_id = PCI_CLASS_STORAGE_IDE;
  189. set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
  190. dc->hotpluggable = false;
  191. }
  192. static const TypeInfo piix3_ide_info = {
  193. .name = "piix3-ide",
  194. .parent = TYPE_PCI_IDE,
  195. .class_init = piix3_ide_class_init,
  196. };
  197. static const TypeInfo piix3_ide_xen_info = {
  198. .name = "piix3-ide-xen",
  199. .parent = TYPE_PCI_IDE,
  200. .class_init = piix3_ide_class_init,
  201. };
  202. /* NOTE: for the PIIX4, the IRQs and IOports are hardcoded */
  203. static void piix4_ide_class_init(ObjectClass *klass, void *data)
  204. {
  205. DeviceClass *dc = DEVICE_CLASS(klass);
  206. PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
  207. dc->reset = piix_ide_reset;
  208. k->realize = pci_piix_ide_realize;
  209. k->exit = pci_piix_ide_exitfn;
  210. k->vendor_id = PCI_VENDOR_ID_INTEL;
  211. k->device_id = PCI_DEVICE_ID_INTEL_82371AB;
  212. k->class_id = PCI_CLASS_STORAGE_IDE;
  213. set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
  214. dc->hotpluggable = false;
  215. }
  216. static const TypeInfo piix4_ide_info = {
  217. .name = "piix4-ide",
  218. .parent = TYPE_PCI_IDE,
  219. .class_init = piix4_ide_class_init,
  220. };
  221. static void piix_ide_register_types(void)
  222. {
  223. type_register_static(&piix3_ide_info);
  224. type_register_static(&piix3_ide_xen_info);
  225. type_register_static(&piix4_ide_info);
  226. }
  227. type_init(piix_ide_register_types)