1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/device.h>
4 #include <device/pci.h>
5 #include <device/pci_ops.h>
6 #include <pc80/keyboard.h>
8 static const unsigned char qemu_i440fx_irqs
[] = {
13 #define D0F0_PAM(x) (0x59 + (x)) /* 0-6 */
15 static void qemu_nb_init(struct device
*dev
)
17 /* Map memory at 0xc0000 - 0xfffff */
19 pci_or_config8(dev
, D0F0_PAM(0), 0x30);
20 for (i
= 1; i
<= 6; i
++)
21 pci_write_config8(dev
, D0F0_PAM(i
), 0x33);
23 /* This sneaked in here, because Qemu does not emulate a SuperIO chip. */
24 pc_keyboard_init(NO_AUX_DEVICE
);
26 /* setup IRQ routing */
27 for (i
= 0; i
< 32; i
++) {
28 struct device
*d
= pcidev_on_root(i
, 0);
30 pci_assign_irqs(d
, qemu_i440fx_irqs
+ (i
% 4));
34 static void qemu_nb_read_resources(struct device
*dev
)
36 pci_dev_read_resources(dev
);
38 if (CONFIG(ARCH_RAMSTAGE_X86_64
)) {
39 /* Reserve page tables in DRAM. FIXME: Remove once x86_64 page tables reside in CBMEM */
40 reserved_ram_range(dev
, 0, CONFIG_ARCH_X86_64_PGTBL_LOC
, 6 * 0x1000);
44 struct device_operations nb_operations
= {
45 .read_resources
= qemu_nb_read_resources
,
46 .set_resources
= pci_dev_set_resources
,
47 .enable_resources
= pci_dev_enable_resources
,