e9cfdac0c65332ed3b9c54cfef4ced8b4ab49503
[coreboot.git] / src / northbridge / intel / i82830 / vga.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2009 Joseph Smith <joe@settoplinux.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
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
21 #include <console/console.h>
22 #include <arch/io.h>
23 #include <stdint.h>
24 #include <device/device.h>
25 #include <device/pci.h>
26 #include <device/pci_ids.h>
27
28 static void vga_init(device_t dev) {
29
30         printk_info("Starting Graphics Initialization\n");
31         pci_dev_init(dev);
32         printk_info("Graphics Initialization Complete\n");
33         /* Future TV-OUT code will be called from here. */
34 }
35
36 static const struct device_operations vga_operations = {
37         .read_resources   = pci_dev_read_resources,
38         .set_resources    = pci_dev_set_resources,
39         .enable_resources = pci_dev_enable_resources,
40         .init             = vga_init,
41         .scan_bus         = 0,
42         .enable           = 0,
43         .ops_pci          = 0,
44 };
45
46 static const struct pci_driver vga_driver __pci_driver = {
47         .ops    = &vga_operations,
48         .vendor = PCI_VENDOR_ID_INTEL,
49         .device = 0x3577,
50 };