aboutsummaryrefslogtreecommitdiff
path: root/src/superio/NSC/pc97307/superio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/superio/NSC/pc97307/superio.c')
-rw-r--r--src/superio/NSC/pc97307/superio.c29
1 files changed, 10 insertions, 19 deletions
diff --git a/src/superio/NSC/pc97307/superio.c b/src/superio/NSC/pc97307/superio.c
index 00117d8f32..100fa146d9 100644
--- a/src/superio/NSC/pc97307/superio.c
+++ b/src/superio/NSC/pc97307/superio.c
@@ -3,19 +3,7 @@
#include <arch/io.h>
#include <device/chip.h>
-
-#ifndef PNP_INDEX_REG
-#define PNP_INDEX_REG 0x15C
-#endif
-#ifndef PNP_DATA_REG
-#define PNP_DATA_REG 0x15D
-#endif
-#ifndef SIO_COM1
-#define SIO_COM1_BASE 0x3F8
-#endif
-#ifndef SIO_COM2
-#define SIO_COM2_BASE 0x2F8
-#endif
+#include "chip.h"
void pnp_output(char address, char data)
{
@@ -25,22 +13,25 @@ void pnp_output(char address, char data)
void sio_enable(struct chip *chip, enum chip_pass pass)
{
+
+ struct superio_NSC_pc97307_config *conf = (struct superio_NSC_pc97307_config *)chip->chip_info;
+
switch (pass) {
case CHIP_PRE_CONSOLE:
/* Enable Super IO Chip */
pnp_output(0x07, 6); /* LD 6 = UART1 */
pnp_output(0x30, 0); /* Dectivate */
- pnp_output(0x60, chip->control->defaultport >> 8); /* IO Base */
- pnp_output(0x61, chip->control->defaultport & 0xFF); /* IO Base */
+ pnp_output(0x60, conf->port >> 8); /* IO Base */
+ pnp_output(0x61, conf->port & 0xFF); /* IO Base */
pnp_output(0x30, 1); /* Activate */
break;
default:
/* nothing yet */
+ break;
}
}
-struct superio_control superio_NSC_pc97307_control = {
- enable: sio_enable,
- defaultport: SIO_COM1_BASE,
- name: "NSC 87307"
+struct chip_control superio_NSC_pc97307_control = {
+ enable: sio_enable,
+ name: "NSC 87307"
};