Remove drivers/pci/onboard. The only purpose was for option ROMs, which are
[coreboot.git] / src / northbridge / via / cn700 / vga.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007 Corey Osgood <corey.osgood@gmail.com>
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 /*
22  * Note: Some of the VGA control registers are located on the memory
23  * controller. Registers are set both in raminit.c and northbridge.c.
24  */
25
26 #include <console/console.h>
27 #include <arch/io.h>
28 #include <stdint.h>
29 #include <device/device.h>
30 #include <device/pci.h>
31 #include <device/pci_ids.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <bitops.h>
35 #include <cpu/cpu.h>
36 #include "chip.h"
37 #include "northbridge.h"
38 #include "cn700.h"
39 #include "vgachip.h"
40
41 void write_protect_vgabios(void)
42 {
43         /* Don't bother for now. */
44 }
45
46 static void vga_init(device_t dev)
47 {
48         u8 reg8;
49
50         print_debug("Copying BOCHS BIOS to 0xf000\n");
51         /*
52          * Copy BOCHS BIOS from 4G-CONFIG_ROM_SIZE-64k (in flash) to 0xf0000 (in RAM)
53          * This is for compatibility with the VGA ROM's BIOS callbacks.
54          */
55         memcpy(0xf0000, (0xffffffff - CONFIG_ROM_SIZE - 0xffff), 0x10000);
56
57         printk_debug("Initializing VGA\n");
58
59         /* Set memory rate to 200 MHz. */
60         outb(0x3d, CRTM_INDEX);
61         reg8 = inb(CRTM_DATA);
62         reg8 &= 0x0f;
63         reg8 |= (0x1 << 4);
64         outb(0x3d, CRTM_INDEX);
65         outb(reg8, CRTM_DATA);
66
67         /* Set framebuffer size. */
68         reg8 = (CONFIG_VIDEO_MB / 4);
69         outb(0x39, SR_INDEX);
70         outb(reg8, SR_DATA);
71
72         pci_write_config8(dev, 0x04, 0x07);
73         pci_write_config8(dev, 0x0d, 0x20);
74         pci_write_config32(dev, 0x10, 0xf4000008);
75         pci_write_config32(dev, 0x14, 0xfb000000);
76
77         printk_debug("INSTALL REAL-MODE IDT\n");
78         setup_realmode_idt();
79         printk_debug("DO THE VGA BIOS\n");
80         do_vgabios();
81         /* VGA seems to work without this, but crash & burn with it. */
82         // printk_debug("Enable VGA console\n");
83         // vga_enable_console();
84
85         /* It's not clear if these need to be programmed before or after
86          * the VGA BIOS runs. Try both, clean up later. */
87         /* Set memory rate to 200 MHz (again). */
88         outb(0x3d, CRTM_INDEX);
89         reg8 = inb(CRTM_DATA);
90         reg8 &= 0x0f;
91         reg8 |= (0x1 << 4);
92         outb(0x3d, CRTM_INDEX);
93         outb(reg8, CRTM_DATA);
94
95         /* Set framebuffer size (again). */
96         reg8 = (CONFIG_VIDEO_MB / 4);
97         outb(0x39, SR_INDEX);
98         outb(reg8, SR_DATA);
99
100         /* Clear the BOCHS BIOS out of memory, so it doesn't confuse Linux. */
101         memset(0xf0000, 0, 0x10000);
102 }
103
104 static const struct device_operations vga_operations = {
105         .read_resources   = pci_dev_read_resources,
106         .set_resources    = pci_dev_set_resources,
107         .enable_resources = pci_dev_enable_resources,
108         .init             = vga_init,
109         .ops_pci          = 0,
110 };
111
112 static const struct pci_driver vga_driver __pci_driver = {
113         .ops    = &vga_operations,
114         .vendor = PCI_VENDOR_ID_VIA,
115         .device = PCI_DEVICE_ID_VIA_CN700_VGA,
116 };