blob: 44efba95343fa3d08b6f17d67fdde60950ea1c36 [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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
Stefan Reinauerd56981f2007-10-22 10:07:46 +000021#include <console/console.h>
Stefan Reinauer4a3bb762004-06-28 11:57:31 +000022#include <device/device.h>
Stefan Reinauerd56981f2007-10-22 10:07:46 +000023#include <device/pci.h>
24#include <device/pci_ids.h>
25#include <device/pci_ops.h>
Stefan Reinauer65e9bc12009-03-13 17:00:46 +000026#include <pc80/keyboard.h>
Stefan Reinauerd56981f2007-10-22 10:07:46 +000027#include <arch/io.h>
Stefan Reinauer4a3bb762004-06-28 11:57:31 +000028
Ronald G. Minnich rminnich4a8523a2009-04-07 02:18:13 +000029/* not sure how these are routed in qemu */
30static const unsigned char enetIrqs[4] = { 11, 0, 0, 0 };
31
Kevin O'Connor31b2e8f2010-09-06 20:20:47 +000032static void qemu_nb_init(device_t dev)
Stefan Reinauerd56981f2007-10-22 10:07:46 +000033{
Kevin O'Connor31b2e8f2010-09-06 20:20:47 +000034 /* Map memory at 0xc0000 - 0xfffff */
35 int i;
36 uint8_t v = pci_read_config8(dev, 0x59);
37 v |= 0x30;
38 pci_write_config8(dev, 0x59, v);
39 for (i=0; i<6; i++)
40 pci_write_config8(dev, 0x5a + i, 0x33);
Aaron Lwe2342f8b2008-05-06 15:02:22 +000041
Stefan Reinauer65e9bc12009-03-13 17:00:46 +000042 /* This sneaked in here, because Qemu does not
43 * emulate a SuperIO chip
44 */
Stefan Reinauer740b5872010-02-23 20:31:37 +000045 pc_keyboard_init(0);
Ronald G. Minnich rminnich4a8523a2009-04-07 02:18:13 +000046
Stefan Reinauer14e22772010-04-27 06:56:47 +000047 /* The PIRQ table is not working well for interrupt routing purposes.
48 * so we'll just set the IRQ directly.
Stefan Reinauer597ff872013-01-07 13:21:22 -080049 */
50 printk(BIOS_INFO, "Setting up ethernet...\n");
Ronald G. Minnich rminnich4a8523a2009-04-07 02:18:13 +000051 pci_assign_irqs(0, 3, enetIrqs);
Stefan Reinauerd56981f2007-10-22 10:07:46 +000052}
53
Kevin O'Connor31b2e8f2010-09-06 20:20:47 +000054static struct device_operations nb_operations = {
55 .read_resources = pci_dev_read_resources,
56 .set_resources = pci_dev_set_resources,
57 .enable_resources = pci_dev_enable_resources,
58 .init = qemu_nb_init,
59 .ops_pci = 0,
60};
61
62static const struct pci_driver nb_driver __pci_driver = {
63 .ops = &nb_operations,
64 .vendor = 0x8086,
65 .device = 0x1237,
66};
67
68static void qemu_init(device_t dev)
69{
70 /* The VGA OPROM already lives at 0xc0000,
71 * force coreboot to use it.
72 */
73 dev->on_mainboard = 1;
74
75 /* Now do the usual initialization */
76 pci_dev_init(dev);
77}
78
Stefan Reinauerd56981f2007-10-22 10:07:46 +000079static struct device_operations vga_operations = {
80 .read_resources = pci_dev_read_resources,
81 .set_resources = pci_dev_set_resources,
82 .enable_resources = pci_dev_enable_resources,
Ronald G. Minnich rminnich4a8523a2009-04-07 02:18:13 +000083 .init = qemu_init,
Stefan Reinauerd56981f2007-10-22 10:07:46 +000084 .ops_pci = 0,
85};
86
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +000087static const struct pci_driver vga_driver __pci_driver = {
Stefan Reinauerd56981f2007-10-22 10:07:46 +000088 .ops = &vga_operations,
89 .vendor = 0x1013,
90 .device = 0x00b8,
91};
92