Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 30c7c43 | 2019-11-14 12:57:34 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 8 | #include <init.h> |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 9 | #include <pci.h> |
Miao Yan | 1868659 | 2016-05-22 19:37:17 -0700 | [diff] [blame] | 10 | #include <qfw.h> |
Asherah Connor | 5b0b43e | 2021-03-19 18:21:40 +1100 | [diff] [blame] | 11 | #include <dm/platdata.h> |
Bin Meng | 5c56422 | 2015-06-03 09:20:06 +0800 | [diff] [blame] | 12 | #include <asm/irq.h> |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 13 | #include <asm/post.h> |
| 14 | #include <asm/processor.h> |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 15 | #include <asm/arch/device.h> |
| 16 | #include <asm/arch/qemu.h> |
| 17 | |
| 18 | static bool i440fx; |
| 19 | |
Asherah Connor | 5b0b43e | 2021-03-19 18:21:40 +1100 | [diff] [blame] | 20 | #if CONFIG_IS_ENABLED(QFW_PIO) |
| 21 | U_BOOT_DRVINFO(x86_qfw_pio) = { |
| 22 | .name = "qfw_pio", |
Miao Yan | 2e82e74 | 2016-05-22 19:37:15 -0700 | [diff] [blame] | 23 | }; |
| 24 | #endif |
| 25 | |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 26 | static void enable_pm_piix(void) |
| 27 | { |
| 28 | u8 en; |
| 29 | u16 cmd; |
| 30 | |
| 31 | /* Set the PM I/O base */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 32 | pci_write_config32(PIIX_PM, PMBA, CONFIG_ACPI_PM1_BASE | 1); |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 33 | |
| 34 | /* Enable access to the PM I/O space */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 35 | pci_read_config16(PIIX_PM, PCI_COMMAND, &cmd); |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 36 | cmd |= PCI_COMMAND_IO; |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 37 | pci_write_config16(PIIX_PM, PCI_COMMAND, cmd); |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 38 | |
| 39 | /* PM I/O Space Enable (PMIOSE) */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 40 | pci_read_config8(PIIX_PM, PMREGMISC, &en); |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 41 | en |= PMIOSE; |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 42 | pci_write_config8(PIIX_PM, PMREGMISC, en); |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | static void enable_pm_ich9(void) |
| 46 | { |
| 47 | /* Set the PM I/O base */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 48 | pci_write_config32(ICH9_PM, PMBA, CONFIG_ACPI_PM1_BASE | 1); |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 49 | } |
| 50 | |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 51 | static void qemu_chipset_init(void) |
| 52 | { |
| 53 | u16 device, xbcs; |
| 54 | int pam, i; |
| 55 | |
| 56 | /* |
| 57 | * i440FX and Q35 chipset have different PAM register offset, but with |
| 58 | * the same bitfield layout. Here we determine the offset based on its |
| 59 | * PCI device ID. |
| 60 | */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 61 | pci_read_config16(PCI_BDF(0, 0, 0), PCI_DEVICE_ID, &device); |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 62 | i440fx = (device == PCI_DEVICE_ID_INTEL_82441); |
| 63 | pam = i440fx ? I440FX_PAM : Q35_PAM; |
| 64 | |
| 65 | /* |
| 66 | * Initialize Programmable Attribute Map (PAM) Registers |
| 67 | * |
| 68 | * Configure legacy segments C/D/E/F to system RAM |
| 69 | */ |
| 70 | for (i = 0; i < PAM_NUM; i++) |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 71 | pci_write_config8(PCI_BDF(0, 0, 0), pam + i, PAM_RW); |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 72 | |
| 73 | if (i440fx) { |
| 74 | /* |
| 75 | * Enable legacy IDE I/O ports decode |
| 76 | * |
| 77 | * Note: QEMU always decode legacy IDE I/O port on PIIX chipset. |
| 78 | * However Linux ata_piix driver does sanity check on these two |
| 79 | * registers to see whether legacy ports decode is turned on. |
| 80 | * This is to make Linux ata_piix driver happy. |
| 81 | */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 82 | pci_write_config16(PIIX_IDE, IDE0_TIM, IDE_DECODE_EN); |
| 83 | pci_write_config16(PIIX_IDE, IDE1_TIM, IDE_DECODE_EN); |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 84 | |
| 85 | /* Enable I/O APIC */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 86 | pci_read_config16(PIIX_ISA, XBCS, &xbcs); |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 87 | xbcs |= APIC_EN; |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 88 | pci_write_config16(PIIX_ISA, XBCS, xbcs); |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 89 | |
| 90 | enable_pm_piix(); |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 91 | } else { |
| 92 | /* Configure PCIe ECAM base address */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 93 | pci_write_config32(PCI_BDF(0, 0, 0), PCIEX_BAR, |
| 94 | CONFIG_PCIE_ECAM_BASE | BAR_EN); |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 95 | |
| 96 | enable_pm_ich9(); |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 97 | } |
| 98 | } |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 99 | |
Bin Meng | e760feb | 2017-01-18 03:32:55 -0800 | [diff] [blame] | 100 | #if !CONFIG_IS_ENABLED(SPL_X86_32BIT_INIT) |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 101 | int arch_cpu_init(void) |
| 102 | { |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 103 | post_code(POST_CPU_INIT); |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 104 | |
Masahiro Yamada | 0a8547a | 2016-09-06 22:17:36 +0900 | [diff] [blame] | 105 | return x86_cpu_init_f(); |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 106 | } |
Simon Glass | 76d1d02 | 2017-03-28 10:27:30 -0600 | [diff] [blame] | 107 | |
| 108 | int checkcpu(void) |
| 109 | { |
| 110 | return 0; |
| 111 | } |
| 112 | |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 113 | int print_cpuinfo(void) |
| 114 | { |
| 115 | post_code(POST_CPU_INFO); |
| 116 | return default_print_cpuinfo(); |
| 117 | } |
Simon Glass | eeae510 | 2015-08-04 12:34:03 -0600 | [diff] [blame] | 118 | #endif |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 119 | |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 120 | int arch_early_init_r(void) |
| 121 | { |
| 122 | qemu_chipset_init(); |
| 123 | |
| 124 | return 0; |
| 125 | } |
| 126 | |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 127 | #ifdef CONFIG_GENERATE_MP_TABLE |
| 128 | int mp_determine_pci_dstirq(int bus, int dev, int func, int pirq) |
| 129 | { |
| 130 | u8 irq; |
| 131 | |
| 132 | if (i440fx) { |
| 133 | /* |
| 134 | * Not like most x86 platforms, the PIRQ[A-D] on PIIX3 are not |
| 135 | * connected to I/O APIC INTPIN#16-19. Instead they are routed |
| 136 | * to an irq number controled by the PIRQ routing register. |
| 137 | */ |
Bin Meng | 6039200 | 2016-02-01 01:40:56 -0800 | [diff] [blame] | 138 | pci_read_config8(PCI_BDF(bus, dev, func), |
| 139 | PCI_INTERRUPT_LINE, &irq); |
Bin Meng | 4874859 | 2015-11-06 02:04:49 -0800 | [diff] [blame] | 140 | } else { |
| 141 | /* |
| 142 | * ICH9's PIRQ[A-H] are not consecutive numbers from 0 to 7. |
| 143 | * PIRQ[A-D] still maps to [0-3] but PIRQ[E-H] maps to [8-11]. |
| 144 | */ |
| 145 | irq = pirq < 8 ? pirq + 16 : pirq + 12; |
| 146 | } |
| 147 | |
| 148 | return irq; |
| 149 | } |
| 150 | #endif |