559371173d6a3f602bbe4481c86ef85447ba3191
[coreboot.git] / src / southbridge / nvidia / ck804 / chip.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2004 Tyan Computer
5  * Written by Yinghai Lu <yhlu@tyan.com> for Tyan Computer.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of the License.
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
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #ifndef CK804_CHIP_H
22 #define CK804_CHIP_H
23
24 struct southbridge_nvidia_ck804_config {
25         unsigned int usb1_hc_reset : 1;
26         unsigned int ide0_enable : 1;
27         unsigned int ide1_enable : 1;
28         unsigned int sata0_enable : 1;
29         unsigned int sata1_enable : 1;
30         unsigned int mac_eeprom_smbus;
31         unsigned int mac_eeprom_addr;
32 };
33 struct chip_operations;
34 extern struct chip_operations southbridge_nvidia_ck804_ops;
35
36 #endif