qemu.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <pci.h>
  8. #include <qfw.h>
  9. #include <asm/irq.h>
  10. #include <asm/post.h>
  11. #include <asm/processor.h>
  12. #include <asm/arch/device.h>
  13. #include <asm/arch/qemu.h>
  14. static bool i440fx;
  15. #ifdef CONFIG_QFW
  16. /* on x86, the qfw registers are all IO ports */
  17. #define FW_CONTROL_PORT 0x510
  18. #define FW_DATA_PORT 0x511
  19. #define FW_DMA_PORT_LOW 0x514
  20. #define FW_DMA_PORT_HIGH 0x518
  21. static void qemu_x86_fwcfg_read_entry_pio(uint16_t entry,
  22. uint32_t size, void *address)
  23. {
  24. uint32_t i = 0;
  25. uint8_t *data = address;
  26. /*
  27. * writting FW_CFG_INVALID will cause read operation to resume at
  28. * last offset, otherwise read will start at offset 0
  29. *
  30. * Note: on platform where the control register is IO port, the
  31. * endianness is little endian.
  32. */
  33. if (entry != FW_CFG_INVALID)
  34. outw(cpu_to_le16(entry), FW_CONTROL_PORT);
  35. /* the endianness of data register is string-preserving */
  36. while (size--)
  37. data[i++] = inb(FW_DATA_PORT);
  38. }
  39. static void qemu_x86_fwcfg_read_entry_dma(struct fw_cfg_dma_access *dma)
  40. {
  41. /* the DMA address register is big endian */
  42. outl(cpu_to_be32((uint32_t)dma), FW_DMA_PORT_HIGH);
  43. while (be32_to_cpu(dma->control) & ~FW_CFG_DMA_ERROR)
  44. __asm__ __volatile__ ("pause");
  45. }
  46. static struct fw_cfg_arch_ops fwcfg_x86_ops = {
  47. .arch_read_pio = qemu_x86_fwcfg_read_entry_pio,
  48. .arch_read_dma = qemu_x86_fwcfg_read_entry_dma
  49. };
  50. #endif
  51. static void enable_pm_piix(void)
  52. {
  53. u8 en;
  54. u16 cmd;
  55. /* Set the PM I/O base */
  56. pci_write_config32(PIIX_PM, PMBA, CONFIG_ACPI_PM1_BASE | 1);
  57. /* Enable access to the PM I/O space */
  58. pci_read_config16(PIIX_PM, PCI_COMMAND, &cmd);
  59. cmd |= PCI_COMMAND_IO;
  60. pci_write_config16(PIIX_PM, PCI_COMMAND, cmd);
  61. /* PM I/O Space Enable (PMIOSE) */
  62. pci_read_config8(PIIX_PM, PMREGMISC, &en);
  63. en |= PMIOSE;
  64. pci_write_config8(PIIX_PM, PMREGMISC, en);
  65. }
  66. static void enable_pm_ich9(void)
  67. {
  68. /* Set the PM I/O base */
  69. pci_write_config32(ICH9_PM, PMBA, CONFIG_ACPI_PM1_BASE | 1);
  70. }
  71. static void qemu_chipset_init(void)
  72. {
  73. u16 device, xbcs;
  74. int pam, i;
  75. /*
  76. * i440FX and Q35 chipset have different PAM register offset, but with
  77. * the same bitfield layout. Here we determine the offset based on its
  78. * PCI device ID.
  79. */
  80. pci_read_config16(PCI_BDF(0, 0, 0), PCI_DEVICE_ID, &device);
  81. i440fx = (device == PCI_DEVICE_ID_INTEL_82441);
  82. pam = i440fx ? I440FX_PAM : Q35_PAM;
  83. /*
  84. * Initialize Programmable Attribute Map (PAM) Registers
  85. *
  86. * Configure legacy segments C/D/E/F to system RAM
  87. */
  88. for (i = 0; i < PAM_NUM; i++)
  89. pci_write_config8(PCI_BDF(0, 0, 0), pam + i, PAM_RW);
  90. if (i440fx) {
  91. /*
  92. * Enable legacy IDE I/O ports decode
  93. *
  94. * Note: QEMU always decode legacy IDE I/O port on PIIX chipset.
  95. * However Linux ata_piix driver does sanity check on these two
  96. * registers to see whether legacy ports decode is turned on.
  97. * This is to make Linux ata_piix driver happy.
  98. */
  99. pci_write_config16(PIIX_IDE, IDE0_TIM, IDE_DECODE_EN);
  100. pci_write_config16(PIIX_IDE, IDE1_TIM, IDE_DECODE_EN);
  101. /* Enable I/O APIC */
  102. pci_read_config16(PIIX_ISA, XBCS, &xbcs);
  103. xbcs |= APIC_EN;
  104. pci_write_config16(PIIX_ISA, XBCS, xbcs);
  105. enable_pm_piix();
  106. } else {
  107. /* Configure PCIe ECAM base address */
  108. pci_write_config32(PCI_BDF(0, 0, 0), PCIEX_BAR,
  109. CONFIG_PCIE_ECAM_BASE | BAR_EN);
  110. enable_pm_ich9();
  111. }
  112. #ifdef CONFIG_QFW
  113. qemu_fwcfg_init(&fwcfg_x86_ops);
  114. #endif
  115. }
  116. int arch_cpu_init(void)
  117. {
  118. post_code(POST_CPU_INIT);
  119. return x86_cpu_init_f();
  120. }
  121. #ifndef CONFIG_EFI_STUB
  122. int print_cpuinfo(void)
  123. {
  124. post_code(POST_CPU_INFO);
  125. return default_print_cpuinfo();
  126. }
  127. #endif
  128. void reset_cpu(ulong addr)
  129. {
  130. /* cold reset */
  131. x86_full_reset();
  132. }
  133. int arch_early_init_r(void)
  134. {
  135. qemu_chipset_init();
  136. return 0;
  137. }
  138. #ifdef CONFIG_GENERATE_MP_TABLE
  139. int mp_determine_pci_dstirq(int bus, int dev, int func, int pirq)
  140. {
  141. u8 irq;
  142. if (i440fx) {
  143. /*
  144. * Not like most x86 platforms, the PIRQ[A-D] on PIIX3 are not
  145. * connected to I/O APIC INTPIN#16-19. Instead they are routed
  146. * to an irq number controled by the PIRQ routing register.
  147. */
  148. pci_read_config8(PCI_BDF(bus, dev, func),
  149. PCI_INTERRUPT_LINE, &irq);
  150. } else {
  151. /*
  152. * ICH9's PIRQ[A-H] are not consecutive numbers from 0 to 7.
  153. * PIRQ[A-D] still maps to [0-3] but PIRQ[E-H] maps to [8-11].
  154. */
  155. irq = pirq < 8 ? pirq + 16 : pirq + 12;
  156. }
  157. return irq;
  158. }
  159. #endif