C and other Super I/O cosmetic fixes.
[coreboot.git] / src / superio / smsc / lpc47n217 / lpc47n217_early_serial.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2005 Digital Design Corporation
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 /* Pre-RAM driver for SMSC LPC47N217 Super I/O chip. */
22
23 #include <arch/romcc_io.h>
24 #include <assert.h>
25 #include "lpc47n217.h"
26
27 static void pnp_enter_conf_state(device_t dev)
28 {
29         u16 port = dev >> 8;
30         outb(0x55, port);
31 }
32
33 static void pnp_exit_conf_state(device_t dev)
34 {
35         u16 port = dev >> 8;
36         outb(0xaa, port);
37 }
38
39 /**
40  * Program the base I/O port for the specified logical device.
41  *
42  * @param dev High 8 bits = Super I/O port, low 8 bits = logical device number.
43  * @param iobase Base I/O port for the logical device.
44  */
45 void lpc47n217_pnp_set_iobase(device_t dev, u16 iobase)
46 {
47         /* LPC47N217 requires base ports to be a multiple of 4. */
48         ASSERT(!(iobase & 0x3));
49
50         switch(dev & 0xFF) {
51         case LPC47N217_PP:
52                 pnp_write_config(dev, 0x23, (iobase >> 2) & 0xff);
53                 break;
54         case LPC47N217_SP1:
55                 pnp_write_config(dev, 0x24, (iobase >> 2) & 0xff);
56                 break;
57         case LPC47N217_SP2:
58                 pnp_write_config(dev, 0x25, (iobase >> 2) & 0xff);
59                 break;
60         default:
61                 break;
62         }
63 }
64
65 /**
66  * Enable or disable the specified logical device.
67  *
68  * Technically, a full disable requires setting the device's base I/O port
69  * below 0x100. We don't do that here, because we don't have access to a data
70  * structure that specifies what the 'real' base port is (when asked to enable
71  * the device). Also the function is used only to disable the device while its
72  * true base port is programmed (see lpc47n217_enable_serial() below).
73  *
74  * @param dev High 8 bits = Super I/O port, low 8 bits = logical device number.
75  * @param enable 0 to disable, anythig else to enable.
76  */
77 void lpc47n217_pnp_set_enable(device_t dev, int enable)
78 {
79         u8 power_register = 0, power_mask = 0, current_power, new_power;
80
81         switch(dev & 0xFF) {
82         case LPC47N217_PP:
83                 power_register = 0x01;
84                 power_mask = 0x04;
85                 break;
86         case LPC47N217_SP1:
87                 power_register = 0x02;
88                 power_mask = 0x08;
89                 break;
90         case LPC47N217_SP2:
91                 power_register = 0x02;
92                 power_mask = 0x80;
93                 break;
94         default:
95                 return;
96         }
97
98         current_power = pnp_read_config(dev, power_register);
99         new_power = current_power & ~power_mask; /* Disable by default. */
100         if (enable)
101                 new_power |= power_mask;         /* Enable. */
102         pnp_write_config(dev, power_register, new_power);
103 }
104
105 /**
106  * Configure the base I/O port of the specified serial device and enable the
107  * serial device.
108  *
109  * @param dev High 8 bits = Super I/O port, low 8 bits = logical device number.
110  * @param iobase Processor I/O port address to assign to this serial device.
111  */
112 static void lpc47n217_enable_serial(device_t dev, u16 iobase)
113 {
114         /*
115          * NOTE: Cannot use pnp_set_XXX() here because they assume chip
116          * support for logical devices, which the LPC47N217 doesn't have.
117          */
118         pnp_enter_conf_state(dev);
119         lpc47n217_pnp_set_enable(dev, 0);
120         lpc47n217_pnp_set_iobase(dev, iobase);
121         lpc47n217_pnp_set_enable(dev, 1);
122         pnp_exit_conf_state(dev);
123 }