I have Sun Ultra40 workstation. Southbridge is nVidia CrushK8-04/nforce
[coreboot.git] / src / southbridge / nvidia / ck804 / chip.h
1 #ifndef CK804_CHIP_H
2 #define CK804_CHIP_H
3
4 struct southbridge_nvidia_ck804_config
5 {
6         unsigned int usb1_hc_reset : 1;
7         unsigned int ide0_enable : 1;
8         unsigned int ide1_enable : 1;
9         unsigned int sata0_enable : 1;
10         unsigned int sata1_enable : 1;
11         unsigned long nic_rom_address;
12         unsigned long raid_rom_address;
13         unsigned int mac_eeprom_smbus;
14         unsigned int mac_eeprom_addr;
15 };
16 struct chip_operations;
17 extern struct chip_operations southbridge_nvidia_ck804_ops;
18
19 #endif /* CK804_CHIP_H */