aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/nvidia/ck804/chip.h
blob: 4c8d7b10bc2fce86b3250f4263f4b71d0eb7580d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CK804_CHIP_H
#define CK804_CHIP_H

struct southbridge_nvidia_ck804_config
{
	unsigned int usb1_hc_reset : 1;
	unsigned int ide0_enable : 1;
	unsigned int ide1_enable : 1;
	unsigned int sata0_enable : 1;
	unsigned int sata1_enable : 1;
	unsigned long nic_rom_address;
	unsigned long raid_rom_address;
	unsigned int mac_eeprom_smbus;
	unsigned int mac_eeprom_addr;
};
struct chip_operations;
extern struct chip_operations southbridge_nvidia_ck804_ops;

#endif /* CK804_CHIP_H */