blob: 3e48614ddf8c822a964352f43c3e2756110b8d4b [file] [log] [blame]
Uwe Hermannd436a4b2007-05-03 08:50:37 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannd436a4b2007-05-03 08:50:37 +00003 *
4 * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
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
Paul Menzela46a7122013-02-23 18:37:27 +010018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Uwe Hermannd436a4b2007-05-03 08:50:37 +000019 */
20
Uwe Hermann9da69f82007-11-30 02:08:26 +000021/* Note: This code supports the 82371FB/SB/MX/AB/EB/MB and 82437MX. */
22
23/* Datasheets:
24 * - Name: 82371FB (PIIX) AND 82371SB (PIIX3) PCI ISA IDE XCELERATOR
25 * - URL: http://www.intel.com/design/intarch/datashts/290550.htm
26 * - PDF: http://download.intel.com/design/intarch/datashts/29055002.pdf
27 * - Date: April 1997
28 * - Order Number: 290550-002
29 *
30 * - Name: 82371FB (PIIX) and 82371SB (PIIX3) PCI ISA IDE Xcelerator
31 * Specification Update
32 * - URL: http://www.intel.com/design/chipsets/specupdt/297658.htm
33 * - PDF: http://download.intel.com/design/chipsets/specupdt/29765801.pdf
34 * - Date: March 1998
35 * - Order Number: 297658-004
36 *
Uwe Hermann4cb85532007-05-27 21:43:58 +000037 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
Uwe Hermann9da69f82007-11-30 02:08:26 +000038 * (applies to 82371AB/EB/MB, a.k.a. PIIX4/PIIX4E/PIIX4M)
Uwe Hermann4cb85532007-05-27 21:43:58 +000039 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
40 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
Uwe Hermann9da69f82007-11-30 02:08:26 +000041 * - Date: April 1997
Uwe Hermann4cb85532007-05-27 21:43:58 +000042 * - Order Number: 290562-001
Uwe Hermann9da69f82007-11-30 02:08:26 +000043 *
44 * - Name: 82371AB/EB/MB (PIIX4/PIIX4E/PIIX4M) Specification Update
45 * - URL: http://www.intel.com/design/chipsets/specupdt/297738.htm
46 * - PDF: http://www.intel.com/design/chipsets/specupdt/29773817.pdf
47 * - Date: January 2002
48 * - Order Number: 297738-017
Uwe Hermann4cb85532007-05-27 21:43:58 +000049 */
50
Uwe Hermann9da69f82007-11-30 02:08:26 +000051/* TODO: List the other datasheets. */
52
Uwe Hermannd436a4b2007-05-03 08:50:37 +000053#include <device/device.h>
54#include "i82371eb.h"
55
Uwe Hermann9da69f82007-11-30 02:08:26 +000056void i82371eb_enable(struct device *dev)
Uwe Hermannd436a4b2007-05-03 08:50:37 +000057{
Uwe Hermann9da69f82007-11-30 02:08:26 +000058 /* TODO: Nothing to do? */
Uwe Hermannd436a4b2007-05-03 08:50:37 +000059}
60
Uwe Hermann9da69f82007-11-30 02:08:26 +000061const struct chip_operations southbridge_intel_i82371eb_ops = {
62 CHIP_NAME("Intel 82371FB/SB/MX/AB/EB/MB Southbridge")
Uwe Hermannd436a4b2007-05-03 08:50:37 +000063 .enable_dev = i82371eb_enable,
64};