aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/via/vt8235/chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/southbridge/via/vt8235/chip.h')
-rw-r--r--src/southbridge/via/vt8235/chip.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/southbridge/via/vt8235/chip.h b/src/southbridge/via/vt8235/chip.h
new file mode 100644
index 0000000000..fe3d332675
--- /dev/null
+++ b/src/southbridge/via/vt8235/chip.h
@@ -0,0 +1,21 @@
+#ifndef _SOUTHBRIDGE_VIA_VT8231
+#define _SOUTHBRIDGE_VIA_VT8231
+
+extern struct chip_control southbridge_via_vt8231_control;
+
+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 */