blob: c59343df91075d4757fdae4c28f758399acd1231 [file] [log] [blame]
Uwe Hermann6798b472010-10-07 16:24:28 +00001/*
2 * This file is part of the coreboot project.
3 *
Uwe Hermann42b1c432010-12-09 18:09:14 +00004 * Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
Uwe Hermann6798b472010-10-07 16:24:28 +00005 *
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.
Uwe Hermann6798b472010-10-07 16:24:28 +000015 */
16
Uwe Hermann42b1c432010-12-09 18:09:14 +000017#include <stdint.h>
18#include <arch/io.h>
Uwe Hermann42b1c432010-12-09 18:09:14 +000019#include <device/pci_ids.h>
20#include "i82371eb.h"
21
Keith Huib9c1a4e2017-09-04 15:47:40 -040022static void bootblock_southbridge_init(void)
Uwe Hermann42b1c432010-12-09 18:09:14 +000023{
24 u16 reg16;
Edward O'Callaghan9a817ef2014-10-26 10:12:15 +110025 pci_devfn_t dev;
Uwe Hermann42b1c432010-12-09 18:09:14 +000026
27 /*
28 * Note: The Intel 82371AB/EB/MB ISA device can be on different
29 * PCI bus:device.function locations on different boards.
30 * Examples we encountered: 00:07.0, 00:04.0, or 00:14.0.
31 * But scanning for the PCI IDs (instead of hardcoding
32 * bus/device/function numbers) works on all boards.
33 */
34 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_INTEL,
35 PCI_DEVICE_ID_INTEL_82371AB_ISA), 0);
36
37 /* Enable access to the whole ROM, disable ROM write access. */
38 reg16 = pci_read_config16(dev, XBCS);
Keith Huib9c1a4e2017-09-04 15:47:40 -040039 reg16 |= LOWER_BIOS_ENABLE | EXT_BIOS_ENABLE | EXT_BIOS_ENABLE_1MB;
Uwe Hermann42b1c432010-12-09 18:09:14 +000040 reg16 &= ~(WRITE_PROTECT_ENABLE); /* Disable ROM write access. */
41 pci_write_config16(dev, XBCS, reg16);
42}