Please bear with me - another rename checkin. This qualifies as trivial, no
[coreboot.git] / src / superio / ite / it8712f / it8712f_early_serial.c
index dc6b2664942ebb5cf0af2f04555b16e45aeb7cd4..7839732787bdec4317acef44d4bcedfc410dbd66 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the LinuxBIOS project.
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
  *
@@ -26,7 +26,7 @@
 #define SIO_INDEX                    SIO_BASE
 #define SIO_DATA                     SIO_BASE+1
 
-/* Global Configuration Registers. */
+/* Global configuration registers. */
 #define IT8712F_CONFIG_REG_CC        0x02 /* Configure Control (write-only). */
 #define IT8712F_CONFIG_REG_LDN       0x07 /* Logical Device Number. */
 #define IT8712F_CONFIG_REG_CONFIGSEL 0x22 /* Configuration Select. */
@@ -36,7 +36,7 @@
 #define IT8712F_CONFIGURATION_PORT   0x2e /* Write-only. */
 
 /* The content of IT8712F_CONFIG_REG_LDN (index 0x07) must be set to the
* LDN the register belongs to, before you can access the register. */
  LDN the register belongs to, before you can access the register. */
 static void it8712f_sio_write(uint8_t ldn, uint8_t index, uint8_t value)
 {
        outb(IT8712F_CONFIG_REG_LDN, SIO_BASE);
@@ -45,7 +45,7 @@ static void it8712f_sio_write(uint8_t ldn, uint8_t index, uint8_t value)
        outb(value, SIO_DATA);
 }
 
-/* Enable the peripheral devices on the IT8712F Super IO chip. */
+/* Enable the peripheral devices on the IT8712F Super I/O chip. */
 static void it8712f_enable_serial(device_t dev, unsigned iobase)
 {
        /* (1) Enter the configuration state (MB PnP mode). */
@@ -61,29 +61,21 @@ static void it8712f_enable_serial(device_t dev, unsigned iobase)
        /* (2) Modify the data of configuration registers. */
 
        /* Select the chip to configure (if there's more than one).
-         * Set bit 7 to select JP3=1, clear bit 7 to select JP3=0.
-         * If this register is not written, both chips are configured. */
+           Set bit 7 to select JP3=1, clear bit 7 to select JP3=0.
+           If this register is not written, both chips are configured. */
        /* it8712f_sio_write(0x00, IT8712F_CONFIG_REG_CONFIGSEL, 0x00); */
 
-       /* Enable all devices. */
-       it8712f_sio_write(IT8712F_FDC,  0x30, 0x1); /* Floppy */
+       /* Enable serial port(s). */
        it8712f_sio_write(IT8712F_SP1,  0x30, 0x1); /* Serial port 1 */
        it8712f_sio_write(IT8712F_SP2,  0x30, 0x1); /* Serial port 2 */
-       it8712f_sio_write(IT8712F_PP,   0x30, 0x1); /* Parallel port */
-       it8712f_sio_write(IT8712F_EC,   0x30, 0x1); /* Environment controller */
-       it8712f_sio_write(IT8712F_KBCK, 0x30, 0x1); /* Keyboard */
-       it8712f_sio_write(IT8712F_KBCM, 0x30, 0x1); /* Mouse */
-       it8712f_sio_write(IT8712F_MIDI, 0x30, 0x1); /* MIDI port */
-       it8712f_sio_write(IT8712F_GAME, 0x30, 0x1); /* GAME port */
-       it8712f_sio_write(IT8712F_IR,   0x30, 0x1); /* Consumer IR */
 
-       /* Select 24MHz/48MHz CLKIN (set/clear bit 0). TODO: Needed? */
-       /* it8712f_sio_write(0x00, IT8712F_CONFIG_REG_CLOCKSEL, 0x00); */
+       /* Select 24MHz CLKIN (set bit 0). */
+       it8712f_sio_write(0x00, IT8712F_CONFIG_REG_CLOCKSEL, 0x01);
 
        /* Clear software suspend mode (clear bit 0). TODO: Needed? */
        /* it8712f_sio_write(0x00, IT8712F_CONFIG_REG_SWSUSP, 0x00); */
 
        /* (3) Exit the configuration state (MB PnP mode). */
-       it8712f_sio_write(0x00, IT8712F_CONFIG_REG_CC, 0x02); 
+       it8712f_sio_write(0x00, IT8712F_CONFIG_REG_CC, 0x02);
 }