Creator: Li-Ta Lo <ollie@lanl.gov> emulator update x96emu update from Paulo git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1954 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
22 lines
535 B
C
22 lines
535 B
C
#ifndef _SOUTHBRIDGE_VIA_VT8231
|
|
#define _SOUTHBRIDGE_VIA_VT8231
|
|
|
|
extern struct chip_operations southbridge_via_vt8231_ops;
|
|
|
|
struct southbridge_via_vt8231_config {
|
|
/* PCI function enables */
|
|
/* i.e. so that pci scan bus will find them. */
|
|
/* I am putting in IDE as an example but obviously this needs
|
|
* to be more complete!
|
|
*/
|
|
int enable_ide;
|
|
/* enables of functions of devices */
|
|
int enable_usb;
|
|
int enable_native_ide;
|
|
int enable_com_ports;
|
|
int enable_keyboard;
|
|
int enable_nvram;
|
|
};
|
|
|
|
#endif /* _SOUTHBRIDGE_VIA_VT8231 */
|