blob: 28975a2bbb42ae97a35de3ec7339a4ad4f0fe179 [file] [log] [blame]
Uwe Hermann1410c2d2007-05-29 10:37:52 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermann1410c2d2007-05-29 10:37:52 +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 Hermann1410c2d2007-05-29 10:37:52 +000015 */
Stefan Reinauerd34758f2006-08-04 07:45:45 +000016
Uwe Hermann1410c2d2007-05-29 10:37:52 +000017#ifndef SOUTHBRIDGE_INTEL_I82371EB_CHIP_H
18#define SOUTHBRIDGE_INTEL_I82371EB_CHIP_H
Stefan Reinauerd34758f2006-08-04 07:45:45 +000019
Uwe Hermann1410c2d2007-05-29 10:37:52 +000020#include <device/device.h>
21
Uwe Hermann1410c2d2007-05-29 10:37:52 +000022struct southbridge_intel_i82371eb_config {
23 int ide0_enable:1;
Uwe Hermann9da69f82007-11-30 02:08:26 +000024 int ide0_drive0_udma33_enable:1;
25 int ide0_drive1_udma33_enable:1;
Uwe Hermann1410c2d2007-05-29 10:37:52 +000026 int ide1_enable:1;
Uwe Hermann9da69f82007-11-30 02:08:26 +000027 int ide1_drive0_udma33_enable:1;
28 int ide1_drive1_udma33_enable:1;
29 int ide_legacy_enable:1;
Uwe Hermann1410c2d2007-05-29 10:37:52 +000030 int usb_enable:1;
Tobias Diedriche87c38e2010-11-27 09:40:16 +000031 /* acpi */
32 u32 gpo; /* gpio output default */
33 u8 lid_polarity;
34 u8 thrm_polarity;
Uwe Hermann1410c2d2007-05-29 10:37:52 +000035};
36
Uwe Hermann9da69f82007-11-30 02:08:26 +000037#endif /* SOUTHBRIDGE_INTEL_I82371EB_CHIP_H */