Build fix, forgot to run abuild on the latest tree.
[coreboot.git] / src / southbridge / nvidia / mcp55 / enable_rom.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2004 Tyan Computer
5  * Written by Yinghai Lu <yhlu@tyan.com> for Tyan Computer.
6  * Copyright (C) 2006,2007 AMD
7  * Written by Yinghai Lu <yinghai.lu@amd.com> for AMD.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
22  */
23
24 #include <stdint.h>
25 #include <arch/io.h>
26 #include <arch/romcc_io.h>
27 #include "mcp55.h"
28
29 static void mcp55_enable_rom(void)
30 {
31         uint8_t byte;
32         uint16_t word;
33         device_t addr;
34
35         /* Enable 4MB rom access at 0xFFC00000 - 0xFFFFFFFF */
36 #if 0
37         /*      default MCP55 LPC single */
38         addr = pci_locate_device(PCI_ID(0x10de, 0x0367), 0);
39 #else
40 //      addr = pci_locate_device(PCI_ID(0x10de, 0x0360), 0);
41         addr = PCI_DEV(0, (MCP55_DEVN_BASE+1), 0);
42 #endif
43
44         /* Set the 4MB enable bit bit */
45         byte = pci_read_config8(addr, 0x88);
46         byte |= 0xff; //256K
47         pci_write_config8(addr, 0x88, byte);
48         byte = pci_read_config8(addr, 0x8c);
49         byte |= 0xff; //1M
50         pci_write_config8(addr, 0x8c, byte);
51         word = pci_read_config16(addr, 0x90);
52         word |= 0x7fff; //15M
53         pci_write_config16(addr, 0x90, word);
54 }