aboutsummaryrefslogtreecommitdiff
path: root/src/superio/NSC/pc87417/chip.h
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2005-10-19 17:35:18 +0000
committerRonald G. Minnich <rminnich@gmail.com>2005-10-19 17:35:18 +0000
commit1cf26a88841765e7b9477e922199476a92ac4fa4 (patch)
treea5d331d8c33018afdb943d3d8fb169faab568b29 /src/superio/NSC/pc87417/chip.h
parent20d943d9f982f777ac7d97bce56367fc4a2e6a95 (diff)
We are adding this obsolete, deprecated part to support the momentum
apache board. We're not filling in all the support, since it appears nobody uses this part. If you really need parallel port support, add it. We hope to remove this part in future if the only board using it moves to a newer part. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2055 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/NSC/pc87417/chip.h')
-rw-r--r--src/superio/NSC/pc87417/chip.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/superio/NSC/pc87417/chip.h b/src/superio/NSC/pc87417/chip.h
new file mode 100644
index 0000000000..65cc051353
--- /dev/null
+++ b/src/superio/NSC/pc87417/chip.h
@@ -0,0 +1,16 @@
+#ifndef SIO_COM1
+#define SIO_COM1_BASE 0x3F8
+#endif
+#ifndef SIO_COM2
+#define SIO_COM2_BASE 0x2F8
+#endif
+
+extern struct chip_operations superio_NSC_pc87417_ops;
+
+#include <pc80/keyboard.h>
+#include <uart8250.h>
+
+struct superio_NSC_pc87417_config {
+ struct uart8250 com1, com2;
+ struct pc_keyboard keyboard;
+};