Random ITE Super I/O fixes.
[coreboot.git] / src / superio / ite / it8712f / it8712f_early_serial.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <arch/romcc_io.h>
22 #include "it8712f.h"
23
24 /* The base address is 0x2e or 0x4e, depending on config bytes. */
25 #define SIO_BASE                     0x2e
26 #define SIO_INDEX                    SIO_BASE
27 #define SIO_DATA                     (SIO_BASE + 1)
28
29 /* Global configuration registers. */
30 #define IT8712F_CONFIG_REG_CC        0x02 /* Configure Control (write-only). */
31 #define IT8712F_CONFIG_REG_LDN       0x07 /* Logical Device Number. */
32 #define IT8712F_CONFIG_REG_CONFIGSEL 0x22 /* Configuration Select. */
33 #define IT8712F_CONFIG_REG_CLOCKSEL  0x23 /* Clock Selection. */
34 #define IT8712F_CONFIG_REG_SWSUSP    0x24 /* Software Suspend, Flash I/F. */
35 #define IT8712F_CONFIG_REG_MFC       0x2a /* Multi-function control */
36 #define IT8712F_CONFIG_REG_WATCHDOG  0x72 /* Watchdog control. */
37
38 static void it8712f_sio_write(u8 ldn, u8 index, u8 value)
39 {
40         outb(IT8712F_CONFIG_REG_LDN, SIO_BASE);
41         outb(ldn, SIO_DATA);
42         outb(index, SIO_BASE);
43         outb(value, SIO_DATA);
44 }
45
46 static void it8712f_enter_conf(void)
47 {
48         u16 port = 0x2e; /* TODO: Don't hardcode! */
49
50         outb(0x87, port);
51         outb(0x01, port);
52         outb(0x55, port);
53         outb((port == 0x4e) ? 0xaa : 0x55, port);
54 }
55
56 static void it8712f_exit_conf(void)
57 {
58         it8712f_sio_write(0x00, IT8712F_CONFIG_REG_CC, 0x02);
59 }
60
61 /* Select 24MHz CLKIN (48MHz is the default). */
62 void it8712f_24mhz_clkin(void)
63 {
64         it8712f_enter_conf();
65         it8712f_sio_write(0x00, IT8712F_CONFIG_REG_CLOCKSEL, 0x1);
66         it8712f_exit_conf();
67 }
68
69 /*
70  * We need to set enable 3VSBSW#, this was documented only in IT8712F_V0.9.2!
71  *
72  * LDN 7, reg 0x2a - needed for S3, or memory power will be cut off.
73  *
74  * Enable 3VSBSW#. (For System Suspend-to-RAM)
75  * 0: 3VSBSW# will be always inactive.
76  * 1: 3VSBSW# enabled. It will be (NOT SUSB#) NAND SUSC#.
77  */
78 void it8712f_enable_3vsbsw(void)
79 {
80         it8712f_enter_conf();
81         it8712f_sio_write(IT8712F_GPIO, IT8712F_CONFIG_REG_MFC, 0x80);
82         it8712f_exit_conf();
83 }
84
85 void it8712f_kill_watchdog(void)
86 {
87         it8712f_enter_conf();
88         it8712f_sio_write(IT8712F_GPIO, IT8712F_CONFIG_REG_WATCHDOG, 0x00);
89         it8712f_exit_conf();
90 }
91
92 /* Enable the serial port(s). */
93 void it8712f_enable_serial(device_t dev, u16 iobase)
94 {
95         /* (1) Enter the configuration state (MB PnP mode). */
96         it8712f_enter_conf();
97
98         /* (2) Modify the data of configuration registers. */
99
100         /*
101          * Select the chip to configure (if there's more than one).
102          * Set bit 7 to select JP3=1, clear bit 7 to select JP3=0.
103          * If this register is not written, both chips are configured.
104          */
105
106         /* it8712f_sio_write(0x00, IT8712F_CONFIG_REG_CONFIGSEL, 0x00); */
107
108         /* Enable serial port(s). */
109         it8712f_sio_write(IT8712F_SP1, 0x30, 0x1); /* Serial port 1 */
110         it8712f_sio_write(IT8712F_SP2, 0x30, 0x1); /* Serial port 2 */
111
112         /* Clear software suspend mode (clear bit 0). TODO: Needed? */
113         /* it8712f_sio_write(0x00, IT8712F_CONFIG_REG_SWSUSP, 0x00); */
114
115         /* (3) Exit the configuration state (MB PnP mode). */
116         it8712f_exit_conf();
117 }