mb/google/nissa: Create pujjogatwin variant
[coreboot2.git] / src / superio / smsc / lpc47n217 / superio.c
blobc59ce2d7ca78dec490dd3f2790b7a1e1b7a0cfdb
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 /* RAM-based driver for SMSC LPC47N217 Super I/O chip. */
5 #include <arch/io.h>
6 #include <device/device.h>
7 #include <device/pnp.h>
8 #include <console/console.h>
9 #include <assert.h>
11 #include "lpc47n217.h"
13 /* Forward declarations */
14 static void enable_dev(struct device *dev);
15 static void lpc47n217_pnp_set_resources(struct device *dev);
16 static void lpc47n217_pnp_enable_resources(struct device *dev);
17 static void lpc47n217_pnp_enable(struct device *dev);
18 static void lpc47n217_init(struct device *dev);
19 static void lpc47n217_pnp_set_resource(struct device *dev, struct resource *resource);
20 static void lpc47n217_pnp_set_iobase(struct device *dev, u16 iobase);
21 static void lpc47n217_pnp_set_drq(struct device *dev, u8 drq);
22 static void lpc47n217_pnp_set_irq(struct device *dev, u8 irq);
23 static void lpc47n217_pnp_set_enable(struct device *dev, int enable);
24 static void pnp_enter_conf_state(struct device *dev);
25 static void pnp_exit_conf_state(struct device *dev);
27 struct chip_operations superio_smsc_lpc47n217_ops = {
28 .name = "SMSC LPC47N217 Super I/O",
29 .enable_dev = enable_dev,
32 static struct device_operations ops = {
33 .read_resources = pnp_read_resources,
34 .set_resources = lpc47n217_pnp_set_resources,
35 .enable_resources = lpc47n217_pnp_enable_resources,
36 .enable = lpc47n217_pnp_enable,
37 .init = lpc47n217_init,
40 static struct pnp_info pnp_dev_info[] = {
41 { NULL, LPC47N217_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
42 { NULL, LPC47N217_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
43 { NULL, LPC47N217_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, }
46 /**
47 * Create device structures and allocate resources to devices specified in the
48 * pnp_dev_info array (above).
50 * @param dev Pointer to structure describing a Super I/O device.
52 static void enable_dev(struct device *dev)
54 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
57 /**
58 * Configure the specified Super I/O device with the resources (I/O space,
59 * etc.) that have been allocate for it.
61 * NOTE: Cannot use pnp_set_resources() here because it assumes chip
62 * support for logical devices, which the LPC47N217 doesn't have.
64 * @param dev Pointer to structure describing a Super I/O device.
66 static void lpc47n217_pnp_set_resources(struct device *dev)
68 struct resource *res;
70 pnp_enter_conf_state(dev);
71 for (res = dev->resource_list; res; res = res->next)
72 lpc47n217_pnp_set_resource(dev, res);
73 /* dump_pnp_device(dev); */
74 pnp_exit_conf_state(dev);
78 * NOTE: Cannot use pnp_enable_resources() here because it assumes chip
79 * support for logical devices, which the LPC47N217 doesn't have.
81 static void lpc47n217_pnp_enable_resources(struct device *dev)
83 pnp_enter_conf_state(dev);
84 lpc47n217_pnp_set_enable(dev, 1);
85 pnp_exit_conf_state(dev);
89 * NOTE: Cannot use pnp_set_enable() here because it assumes chip
90 * support for logical devices, which the LPC47N217 doesn't have.
92 static void lpc47n217_pnp_enable(struct device *dev)
94 pnp_enter_conf_state(dev);
95 lpc47n217_pnp_set_enable(dev, !!dev->enabled);
96 pnp_exit_conf_state(dev);
99 /**
100 * Initialize the specified Super I/O device.
102 * Devices other than COM ports are ignored. For COM ports, we configure the
103 * baud rate.
105 * @param dev Pointer to structure describing a Super I/O device.
107 static void lpc47n217_init(struct device *dev)
109 if (!dev->enabled)
110 return;
113 static void lpc47n217_pnp_set_resource(struct device *dev, struct resource *resource)
115 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
116 printk(BIOS_ERR, "%s %02lx not allocated\n",
117 dev_path(dev), resource->index);
118 return;
121 /* Now store the resource. */
124 * NOTE: Cannot use pnp_set_XXX() here because they assume chip
125 * support for logical devices, which the LPC47N217 doesn't have.
127 if (resource->flags & IORESOURCE_IO) {
128 lpc47n217_pnp_set_iobase(dev, resource->base);
129 } else if (resource->flags & IORESOURCE_DRQ) {
130 lpc47n217_pnp_set_drq(dev, resource->base);
131 } else if (resource->flags & IORESOURCE_IRQ) {
132 lpc47n217_pnp_set_irq(dev, resource->base);
133 } else {
134 printk(BIOS_ERR, "%s %02lx unknown resource type\n",
135 dev_path(dev), resource->index);
136 return;
138 resource->flags |= IORESOURCE_STORED;
140 report_resource_stored(dev, resource, "");
143 static void lpc47n217_pnp_set_iobase(struct device *dev, u16 iobase)
145 ASSERT(!(iobase & 0x3));
147 switch (dev->path.pnp.device) {
148 case LPC47N217_PP:
149 pnp_write_config(dev, 0x23, (iobase >> 2) & 0xff);
150 break;
151 case LPC47N217_SP1:
152 pnp_write_config(dev, 0x24, (iobase >> 2) & 0xff);
153 break;
154 case LPC47N217_SP2:
155 pnp_write_config(dev, 0x25, (iobase >> 2) & 0xff);
156 break;
157 default:
158 BUG();
159 break;
163 static void lpc47n217_pnp_set_drq(struct device *dev, u8 drq)
165 const u8 PP_DMA_MASK = 0x0F;
166 const u8 PP_DMA_SELECTION_REGISTER = 0x26;
167 u8 current_config, new_config;
169 if (dev->path.pnp.device == LPC47N217_PP) {
170 current_config = pnp_read_config(dev,
171 PP_DMA_SELECTION_REGISTER);
172 ASSERT(!(drq & ~PP_DMA_MASK)); /* DRQ out of range? */
173 new_config = (current_config & ~PP_DMA_MASK) | drq;
174 pnp_write_config(dev, PP_DMA_SELECTION_REGISTER, new_config);
175 } else {
176 BUG();
180 static void lpc47n217_pnp_set_irq(struct device *dev, u8 irq)
182 u8 irq_config_register = 0, irq_config_mask = 0;
183 u8 current_config, new_config;
185 switch (dev->path.pnp.device) {
186 case LPC47N217_PP:
187 irq_config_register = 0x27;
188 irq_config_mask = 0x0F;
189 break;
190 case LPC47N217_SP1:
191 irq_config_register = 0x28;
192 irq_config_mask = 0xF0;
193 irq <<= 4;
194 break;
195 case LPC47N217_SP2:
196 irq_config_register = 0x28;
197 irq_config_mask = 0x0F;
198 break;
199 default:
200 BUG();
201 return;
204 ASSERT(!(irq & ~irq_config_mask)); /* IRQ out of range? */
206 current_config = pnp_read_config(dev, irq_config_register);
207 new_config = (current_config & ~irq_config_mask) | irq;
208 pnp_write_config(dev, irq_config_register, new_config);
211 static void lpc47n217_pnp_set_enable(struct device *dev, int enable)
213 u8 power_register = 0, power_mask = 0, current_power, new_power;
215 switch (dev->path.pnp.device) {
216 case LPC47N217_PP:
217 power_register = 0x01;
218 power_mask = 0x04;
219 break;
220 case LPC47N217_SP1:
221 power_register = 0x02;
222 power_mask = 0x08;
223 break;
224 case LPC47N217_SP2:
225 power_register = 0x02;
226 power_mask = 0x80;
227 break;
228 default:
229 BUG();
230 return;
233 current_power = pnp_read_config(dev, power_register);
234 new_power = current_power & ~power_mask; /* Disable by default. */
235 if (enable) {
236 struct resource* ioport_resource;
237 ioport_resource = find_resource(dev, PNP_IDX_IO0);
238 lpc47n217_pnp_set_iobase(dev, ioport_resource->base);
239 new_power |= power_mask; /* Enable. */
240 } else {
241 lpc47n217_pnp_set_iobase(dev, 0);
243 pnp_write_config(dev, power_register, new_power);
246 static void pnp_enter_conf_state(struct device *dev)
248 outb(0x55, dev->path.pnp.port);
251 static void pnp_exit_conf_state(struct device *dev)
253 outb(0xaa, dev->path.pnp.port);