blob: 1ff3cda2b425dde3bc5c85bccf5f018201c8f313 [file] [log] [blame]
Morgan Tsai1602dd52007-10-29 21:00:14 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Morgan Tsai1602dd52007-10-29 21:00:14 +00003 *
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 * Copyright (C) 2007 Silicon Integrated Systems Corp. (SiS)
9 * Written by Morgan Tsai <my_tsai@sis.com> for SiS.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 */
25
Uwe Hermannb9c224e2010-12-16 19:57:54 +000026#include <stdint.h>
27#include <arch/io.h>
28#include <arch/romcc_io.h>
29#include <device/pci_ids.h>
30#include "sis966.h"
Morgan Tsai1602dd52007-10-29 21:00:14 +000031
32static void sis966_enable_rom(void)
33{
34 device_t addr;
Morgan Tsai218c2652007-11-02 16:09:58 +000035
Uwe Hermannb9c224e2010-12-16 19:57:54 +000036 /* Enable 4MB ROM access at 0xFFC00000 - 0xFFFFFFFF. */
37 addr = pci_locate_device(PCI_ID(PCI_VENDOR_ID_SIS,
38 PCI_DEVICE_ID_SIS_SIS966_LPC), 0);
Morgan Tsai1602dd52007-10-29 21:00:14 +000039
Uwe Hermannb9c224e2010-12-16 19:57:54 +000040 /* Set the 4MB enable bit(s). */
Morgan Tsai1602dd52007-10-29 21:00:14 +000041 pci_write_config8(addr, 0x40, pci_read_config8(addr, 0x40) | 0x11);
42}
Uwe Hermannb9c224e2010-12-16 19:57:54 +000043
44static void bootblock_southbridge_init(void)
45{
46 sis966_enable_rom();
47}