diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-04-02 16:57:32 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-04-02 16:57:32 +0000 |
commit | 23d1e35d4d2fd25c710c5b54bfe171d8d2db0cea (patch) | |
tree | 8b180cda2a8eafc38ee2d2895392cf218e5b0761 /src/superio/ite/it8673f | |
parent | cbef76ecf3b991a17549f36b09e73d0a103e6f13 (diff) | |
download | coreboot-23d1e35d4d2fd25c710c5b54bfe171d8d2db0cea.tar.xz |
The *_early_serial.c pre-RAM code should do just that -- enable the serial
port(s), and nothing else. The code in superio.c will initialize the
rest when RAM is available...
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2579 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/ite/it8673f')
-rw-r--r-- | src/superio/ite/it8673f/it8673f_early_serial.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/superio/ite/it8673f/it8673f_early_serial.c b/src/superio/ite/it8673f/it8673f_early_serial.c index b032c1fb8b..c9c576d8fb 100644 --- a/src/superio/ite/it8673f/it8673f_early_serial.c +++ b/src/superio/ite/it8673f/it8673f_early_serial.c @@ -77,13 +77,8 @@ static void it8673f_enable_serial(device_t dev, unsigned iobase) /* (2) Modify the data of configuration registers. */ /* Enable all devices. */ - it8673f_sio_write(IT8673F_FDC, 0x30, 0x1); /* Floppy */ it8673f_sio_write(IT8673F_SP1, 0x30, 0x1); /* Serial port 1 */ it8673f_sio_write(IT8673F_SP2, 0x30, 0x1); /* Serial port 2 */ - it8673f_sio_write(IT8673F_PP, 0x30, 0x1); /* Parallel port */ - it8673f_sio_write(IT8673F_FAN, 0x30, 0x1); /* Fan controller */ - it8673f_sio_write(IT8673F_KBCK, 0x30, 0x1); /* Keyboard */ - it8673f_sio_write(IT8673F_KBCM, 0x30, 0x1); /* Mouse */ /* Select 24MHz CLKIN (clear bit 0). */ it8673f_sio_write(0x00, IT8673F_CONFIG_REG_CLOCKSEL, 0x00); |