blob: b2439bb1d429307173138c0ae6f4f11ca5145224 [file] [log] [blame]
Stefan Reinauer597ff872013-01-07 13:21:22 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2004 Stefan Reinauer <stefan.reinauer@coreboot.org>
5 * Copyright (C) 2010 Kevin O'Connor <kevin@koconnor.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinauer597ff872013-01-07 13:21:22 -080015 */
16
Stefan Reinauer4a3bb762004-06-28 11:57:31 +000017#include <device/device.h>
Stefan Reinauerd56981f2007-10-22 10:07:46 +000018#include <device/pci.h>
19#include <device/pci_ids.h>
20#include <device/pci_ops.h>
Stefan Reinauer65e9bc12009-03-13 17:00:46 +000021#include <pc80/keyboard.h>
Stefan Reinauerd56981f2007-10-22 10:07:46 +000022#include <arch/io.h>
Stefan Reinauer4a3bb762004-06-28 11:57:31 +000023
Gerd Hoffmann082d2a02013-05-29 14:59:36 +020024static const unsigned char qemu_i440fx_irqs[] = {
25 11, 10, 10, 11,
26 11, 10, 10, 11,
27};
Ronald G. Minnich rminnich4a8523a2009-04-07 02:18:13 +000028
Elyes HAOUAS5cb876c2018-06-08 18:31:43 +020029static void qemu_nb_init(struct device *dev)
Stefan Reinauerd56981f2007-10-22 10:07:46 +000030{
Kevin O'Connor31b2e8f2010-09-06 20:20:47 +000031 /* Map memory at 0xc0000 - 0xfffff */
32 int i;
33 uint8_t v = pci_read_config8(dev, 0x59);
34 v |= 0x30;
35 pci_write_config8(dev, 0x59, v);
Elyes HAOUAS6350a2e2016-09-16 20:49:38 +020036 for (i = 0; i < 6; i++)
Kevin O'Connor31b2e8f2010-09-06 20:20:47 +000037 pci_write_config8(dev, 0x5a + i, 0x33);
Aaron Lwe2342f8b2008-05-06 15:02:22 +000038
Stefan Reinauer65e9bc12009-03-13 17:00:46 +000039 /* This sneaked in here, because Qemu does not
40 * emulate a SuperIO chip
41 */
Timothy Pearson448e3862015-11-24 14:12:01 -060042 pc_keyboard_init(NO_AUX_DEVICE);
Ronald G. Minnich rminnich4a8523a2009-04-07 02:18:13 +000043
Gerd Hoffmann082d2a02013-05-29 14:59:36 +020044 /* setup IRQ routing */
45 for (i = 0; i < 32; i++)
46 pci_assign_irqs(0, i, qemu_i440fx_irqs + (i % 4));
Stefan Reinauerd56981f2007-10-22 10:07:46 +000047}
48
Kevin O'Connor31b2e8f2010-09-06 20:20:47 +000049static struct device_operations nb_operations = {
Gerd Hoffmann7fd1bee2013-06-17 10:03:17 +020050 .read_resources = pci_dev_read_resources,
51 .set_resources = pci_dev_set_resources,
52 .enable_resources = pci_dev_enable_resources,
53 .init = qemu_nb_init,
Kevin O'Connor31b2e8f2010-09-06 20:20:47 +000054 .ops_pci = 0,
55};
56
57static const struct pci_driver nb_driver __pci_driver = {
58 .ops = &nb_operations,
59 .vendor = 0x8086,
60 .device = 0x1237,
61};