mb/asrock: Add Asrock Industrial IMB-1222 motherboard
[coreboot.git] / src / mainboard / emulation / qemu-i440fx / mainboard.c
blob7debf8c308d01049d568da30a3829e9a70d32d86
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[] = {
9 11, 10, 10, 11,
10 11, 10, 10, 11,
13 #define D0F0_PAM(x) (0x59 + (x)) /* 0-6 */
15 static void qemu_nb_init(struct device *dev)
17 /* Map memory at 0xc0000 - 0xfffff */
18 int i;
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);
29 if (d)
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,
48 .init = qemu_nb_init,