sdhci-pci.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * SDHCI device on PCI
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the
  6. * Free Software Foundation; either version 2 of the License, or (at your
  7. * option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. * See the GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along
  15. * with this program; if not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include "qemu/osdep.h"
  18. #include "qapi/error.h"
  19. #include "qemu/module.h"
  20. #include "hw/qdev-properties.h"
  21. #include "hw/sd/sdhci.h"
  22. #include "sdhci-internal.h"
  23. static Property sdhci_pci_properties[] = {
  24. DEFINE_SDHCI_COMMON_PROPERTIES(SDHCIState),
  25. DEFINE_PROP_END_OF_LIST(),
  26. };
  27. static void sdhci_pci_realize(PCIDevice *dev, Error **errp)
  28. {
  29. ERRP_GUARD();
  30. SDHCIState *s = PCI_SDHCI(dev);
  31. sdhci_initfn(s);
  32. sdhci_common_realize(s, errp);
  33. if (*errp) {
  34. return;
  35. }
  36. dev->config[PCI_CLASS_PROG] = 0x01; /* Standard Host supported DMA */
  37. dev->config[PCI_INTERRUPT_PIN] = 0x01; /* interrupt pin A */
  38. s->irq = pci_allocate_irq(dev);
  39. s->dma_as = pci_get_address_space(dev);
  40. pci_register_bar(dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->iomem);
  41. }
  42. static void sdhci_pci_exit(PCIDevice *dev)
  43. {
  44. SDHCIState *s = PCI_SDHCI(dev);
  45. sdhci_common_unrealize(s);
  46. sdhci_uninitfn(s);
  47. }
  48. static void sdhci_pci_class_init(ObjectClass *klass, void *data)
  49. {
  50. DeviceClass *dc = DEVICE_CLASS(klass);
  51. PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
  52. k->realize = sdhci_pci_realize;
  53. k->exit = sdhci_pci_exit;
  54. k->vendor_id = PCI_VENDOR_ID_REDHAT;
  55. k->device_id = PCI_DEVICE_ID_REDHAT_SDHCI;
  56. k->class_id = PCI_CLASS_SYSTEM_SDHCI;
  57. device_class_set_props(dc, sdhci_pci_properties);
  58. sdhci_common_class_init(klass, data);
  59. }
  60. static const TypeInfo sdhci_pci_info = {
  61. .name = TYPE_PCI_SDHCI,
  62. .parent = TYPE_PCI_DEVICE,
  63. .instance_size = sizeof(SDHCIState),
  64. .class_init = sdhci_pci_class_init,
  65. .interfaces = (InterfaceInfo[]) {
  66. { INTERFACE_CONVENTIONAL_PCI_DEVICE },
  67. { },
  68. },
  69. };
  70. static void sdhci_pci_register_type(void)
  71. {
  72. type_register_static(&sdhci_pci_info);
  73. }
  74. type_init(sdhci_pci_register_type)