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