blob: 898cdffc2576f7c9b4d1e9f9c6710fdd921d24dc [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.
Uwe Hermannd436a4b2007-05-03 08:50:37 +000015 */
16
Patrick Georgi17dda3a2020-03-03 17:05:25 +000017/* Note: This code supports the 82371FB/SB/MX/AB/EB/MB and 82437MX. */
Uwe Hermann9da69f82007-11-30 02:08:26 +000018
19/* Datasheets:
Patrick Georgi17dda3a2020-03-03 17:05:25 +000020 * - Name: 82371FB (PIIX) AND 82371SB (PIIX3) PCI ISA IDE XCELERATOR
21 * - URL: http://www.intel.com/design/intarch/datashts/290550.htm
22 * - PDF: http://download.intel.com/design/intarch/datashts/29055002.pdf
23 * - Date: April 1997
24 * - Order Number: 290550-002
25 *
26 * - Name: 82371FB (PIIX) and 82371SB (PIIX3) PCI ISA IDE Xcelerator
27 * Specification Update
28 * - URL: http://www.intel.com/design/chipsets/specupdt/297658.htm
29 * - PDF: http://download.intel.com/design/chipsets/specupdt/29765801.pdf
30 * - Date: March 1998
31 * - Order Number: 297658-004
32 *
Uwe Hermann4cb85532007-05-27 21:43:58 +000033 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
Uwe Hermann9da69f82007-11-30 02:08:26 +000034 * (applies to 82371AB/EB/MB, a.k.a. PIIX4/PIIX4E/PIIX4M)
Uwe Hermann4cb85532007-05-27 21:43:58 +000035 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
36 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
Uwe Hermann9da69f82007-11-30 02:08:26 +000037 * - Date: April 1997
Uwe Hermann4cb85532007-05-27 21:43:58 +000038 * - Order Number: 290562-001
Uwe Hermann9da69f82007-11-30 02:08:26 +000039 *
40 * - Name: 82371AB/EB/MB (PIIX4/PIIX4E/PIIX4M) Specification Update
41 * - URL: http://www.intel.com/design/chipsets/specupdt/297738.htm
42 * - PDF: http://www.intel.com/design/chipsets/specupdt/29773817.pdf
43 * - Date: January 2002
44 * - Order Number: 297738-017
Uwe Hermann4cb85532007-05-27 21:43:58 +000045 */
46
Patrick Georgi17dda3a2020-03-03 17:05:25 +000047/* TODO: List the other datasheets. */
48
Uwe Hermannd436a4b2007-05-03 08:50:37 +000049#include <device/device.h>
Uwe Hermannd436a4b2007-05-03 08:50:37 +000050
Uwe Hermann9da69f82007-11-30 02:08:26 +000051const struct chip_operations southbridge_intel_i82371eb_ops = {
Patrick Georgi17dda3a2020-03-03 17:05:25 +000052 CHIP_NAME("Intel 82371FB/SB/MX/AB/EB/MB Southbridge")
Uwe Hermannd436a4b2007-05-03 08:50:37 +000053};