blob: 2e944569b5be3da8d02e5182ee21c0b4cd9a8573 [file] [log] [blame]
Bin Menga65b25d2015-05-07 21:34:08 +08001/*
2 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <pci.h>
Bin Meng9c4f5412015-05-11 07:36:30 +08009#include <pci_rom.h>
Bin Mengcc7debc2015-05-24 00:12:33 +080010#include <asm/pci.h>
Bin Meng0fcb7ac2015-05-25 22:36:26 +080011#include <asm/arch/device.h>
Bin Mengcc7debc2015-05-24 00:12:33 +080012#include <asm/arch/qemu.h>
Bin Menga65b25d2015-05-07 21:34:08 +080013
14DECLARE_GLOBAL_DATA_PTR;
15
Bin Menga8ebf282015-07-22 01:21:13 -070016static bool i440fx;
17
Bin Menga65b25d2015-05-07 21:34:08 +080018void board_pci_setup_hose(struct pci_controller *hose)
19{
20 hose->first_busno = 0;
21 hose->last_busno = 0;
22
23 /* PCI memory space */
24 pci_set_region(hose->regions + 0,
25 CONFIG_PCI_MEM_BUS,
26 CONFIG_PCI_MEM_PHYS,
27 CONFIG_PCI_MEM_SIZE,
28 PCI_REGION_MEM);
29
30 /* PCI IO space */
31 pci_set_region(hose->regions + 1,
32 CONFIG_PCI_IO_BUS,
33 CONFIG_PCI_IO_PHYS,
34 CONFIG_PCI_IO_SIZE,
35 PCI_REGION_IO);
36
37 pci_set_region(hose->regions + 2,
38 CONFIG_PCI_PREF_BUS,
39 CONFIG_PCI_PREF_PHYS,
40 CONFIG_PCI_PREF_SIZE,
41 PCI_REGION_PREFETCH);
42
43 pci_set_region(hose->regions + 3,
44 0,
45 0,
46 gd->ram_size,
47 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
48
49 hose->region_count = 4;
50}
51
52int board_pci_post_scan(struct pci_controller *hose)
53{
Bin Meng9c4f5412015-05-11 07:36:30 +080054 int ret = 0;
Bin Menge7cd0702015-07-22 01:21:11 -070055 u16 device, xbcs;
Bin Mengcc7debc2015-05-24 00:12:33 +080056 int pam, i;
Bin Meng4be2f422015-05-25 22:36:27 +080057 pci_dev_t vga;
58 ulong start;
Bin Meng9c4f5412015-05-11 07:36:30 +080059
Bin Mengcc7debc2015-05-24 00:12:33 +080060 /*
61 * i440FX and Q35 chipset have different PAM register offset, but with
62 * the same bitfield layout. Here we determine the offset based on its
63 * PCI device ID.
64 */
65 device = x86_pci_read_config16(PCI_BDF(0, 0, 0), PCI_DEVICE_ID);
Bin Menga8ebf282015-07-22 01:21:13 -070066 i440fx = (device == PCI_DEVICE_ID_INTEL_82441);
67 pam = i440fx ? I440FX_PAM : Q35_PAM;
Bin Mengcc7debc2015-05-24 00:12:33 +080068
69 /*
70 * Initialize Programmable Attribute Map (PAM) Registers
71 *
72 * Configure legacy segments C/D/E/F to system RAM
73 */
74 for (i = 0; i < PAM_NUM; i++)
75 x86_pci_write_config8(PCI_BDF(0, 0, 0), pam + i, PAM_RW);
76
Bin Menga8ebf282015-07-22 01:21:13 -070077 if (i440fx) {
Bin Meng0fcb7ac2015-05-25 22:36:26 +080078 /*
79 * Enable legacy IDE I/O ports decode
80 *
81 * Note: QEMU always decode legacy IDE I/O port on PIIX chipset.
82 * However Linux ata_piix driver does sanity check on these two
83 * registers to see whether legacy ports decode is turned on.
84 * This is to make Linux ata_piix driver happy.
85 */
86 x86_pci_write_config16(PIIX_IDE, IDE0_TIM, IDE_DECODE_EN);
87 x86_pci_write_config16(PIIX_IDE, IDE1_TIM, IDE_DECODE_EN);
Bin Menge7cd0702015-07-22 01:21:11 -070088
89 /* Enable I/O APIC */
90 xbcs = x86_pci_read_config16(PIIX_ISA, XBCS);
91 xbcs |= APIC_EN;
92 x86_pci_write_config16(PIIX_ISA, XBCS, xbcs);
Bin Meng9830d2e2015-07-22 01:21:14 -070093 } else {
94 /* Configure PCIe ECAM base address */
95 x86_pci_write_config32(PCI_BDF(0, 0, 0), PCIEX_BAR,
96 CONFIG_PCIE_ECAM_BASE | BAR_EN);
Bin Meng0fcb7ac2015-05-25 22:36:26 +080097 }
98
Bin Meng4be2f422015-05-25 22:36:27 +080099 /*
100 * QEMU emulated graphic card shows in the PCI configuration space with
101 * PCI vendor id and device id as an artificial pair 0x1234:0x1111.
102 * It is on PCI bus 0, function 0, but device number is not consistent
103 * for the two x86 targets it supports. For i440FX and PIIX chipset
104 * board, it shows as device 2, while for Q35 and ICH9 chipset board,
105 * it shows as device 1.
106 */
Bin Menga8ebf282015-07-22 01:21:13 -0700107 vga = i440fx ? I440FX_VGA : Q35_VGA;
Bin Meng4be2f422015-05-25 22:36:27 +0800108 start = get_timer(0);
109 ret = pci_run_vga_bios(vga, NULL, PCI_ROM_USE_NATIVE);
110 debug("BIOS ran in %lums\n", get_timer(start));
111
Bin Meng9c4f5412015-05-11 07:36:30 +0800112 return ret;
Bin Menga65b25d2015-05-07 21:34:08 +0800113}
Bin Menga8ebf282015-07-22 01:21:13 -0700114
115#ifdef CONFIG_GENERATE_MP_TABLE
116int mp_determine_pci_dstirq(int bus, int dev, int func, int pirq)
117{
118 u8 irq;
119
120 if (i440fx) {
121 /*
122 * Not like most x86 platforms, the PIRQ[A-D] on PIIX3 are not
123 * connected to I/O APIC INTPIN#16-19. Instead they are routed
124 * to an irq number controled by the PIRQ routing register.
125 */
126 irq = x86_pci_read_config8(PCI_BDF(bus, dev, func),
127 PCI_INTERRUPT_LINE);
128 } else {
129 /*
130 * ICH9's PIRQ[A-H] are not consecutive numbers from 0 to 7.
131 * PIRQ[A-D] still maps to [0-3] but PIRQ[E-H] maps to [8-11].
132 */
133 irq = pirq < 8 ? pirq + 16 : pirq + 12;
134 }
135
136 return irq;
137}
138#endif