summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82371eb/i82371eb.c
diff options
context:
space:
mode:
authorKeith Hui <buurin@gmail.com>2020-01-27 18:05:45 -0500
committerPatrick Georgi <pgeorgi@google.com>2020-03-03 07:42:48 +0000
commit2b9004de602f98a404b17584ab3e1451f165c1f4 (patch)
tree795d3d31b4eb18f0fd032a0f818d56c9534cf56c /src/southbridge/intel/i82371eb/i82371eb.c
parent3fa3bf97e514f046ee9c3d77af4b1a4f8fd07edb (diff)
downloadcoreboot-2b9004de602f98a404b17584ab3e1451f165c1f4.tar.xz
i82371eb: Drop support for older PIIX chips
All boards using this code use i82371eb (that shares PCI ID with i82371ab). Dropping the code lightens compressed ramstage by a few dozen bytes. Change-Id: Iab1e83b8f5fff44a33619c7925e5448169a2a87c Signed-off-by: Keith Hui <buurin@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38598 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/i82371eb/i82371eb.c')
-rw-r--r--src/southbridge/intel/i82371eb/i82371eb.c19
1 files changed, 2 insertions, 17 deletions
diff --git a/src/southbridge/intel/i82371eb/i82371eb.c b/src/southbridge/intel/i82371eb/i82371eb.c
index 898cdffc25..02812ce40c 100644
--- a/src/southbridge/intel/i82371eb/i82371eb.c
+++ b/src/southbridge/intel/i82371eb/i82371eb.c
@@ -14,22 +14,9 @@
* GNU General Public License for more details.
*/
-/* Note: This code supports the 82371FB/SB/MX/AB/EB/MB and 82437MX. */
+/* Note: This code supports the 82371AB/EB/MB. */
/* Datasheets:
- * - Name: 82371FB (PIIX) AND 82371SB (PIIX3) PCI ISA IDE XCELERATOR
- * - URL: http://www.intel.com/design/intarch/datashts/290550.htm
- * - PDF: http://download.intel.com/design/intarch/datashts/29055002.pdf
- * - Date: April 1997
- * - Order Number: 290550-002
- *
- * - Name: 82371FB (PIIX) and 82371SB (PIIX3) PCI ISA IDE Xcelerator
- * Specification Update
- * - URL: http://www.intel.com/design/chipsets/specupdt/297658.htm
- * - PDF: http://download.intel.com/design/chipsets/specupdt/29765801.pdf
- * - Date: March 1998
- * - Order Number: 297658-004
- *
* - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
* (applies to 82371AB/EB/MB, a.k.a. PIIX4/PIIX4E/PIIX4M)
* - URL: http://www.intel.com/design/intarch/datashts/290562.htm
@@ -44,10 +31,8 @@
* - Order Number: 297738-017
*/
-/* TODO: List the other datasheets. */
-
#include <device/device.h>
const struct chip_operations southbridge_intel_i82371eb_ops = {
- CHIP_NAME("Intel 82371FB/SB/MX/AB/EB/MB Southbridge")
+ CHIP_NAME("Intel 82371AB/EB/MB Southbridge")
};