blob: 40eb7d25b1754369768c86b34e010b526960b9ff [file] [log] [blame]
Stefan Reinauer1a08f582009-10-28 16:52:48 +00001/*
Uwe Hermann2d2f0c12009-10-28 17:36:11 +00002 * This file is part of the coreboot project.
Stefan Reinauer1a08f582009-10-28 16:52:48 +00003 *
Uwe Hermann2d2f0c12009-10-28 17:36:11 +00004 * Copyright (C) 2009 coresystems GmbH
Stefan Reinauer1a08f582009-10-28 16:52:48 +00005 *
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; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Stefan Reinauer1a08f582009-10-28 16:52:48 +000014 */
15
Uwe Hermann2d2f0c12009-10-28 17:36:11 +000016/* RAM driver for the SMSC LPC47M15X Super I/O chip */
17
Stefan Reinauer1a08f582009-10-28 16:52:48 +000018#include <device/device.h>
19#include <device/pnp.h>
Nico Huber1c811282013-06-15 20:33:44 +020020#include <superio/conf_mode.h>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000021#include <pc80/keyboard.h>
Elyes HAOUAS2329a252019-05-15 22:11:18 +020022
Stefan Reinauer1a08f582009-10-28 16:52:48 +000023#include "lpc47m15x.h"
24
Zheng Bao9db833b2009-12-28 09:59:44 +000025/* Forward declarations */
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110026static void enable_dev(struct device *dev);
27static void lpc47m15x_init(struct device *dev);
Stefan Reinauer1a08f582009-10-28 16:52:48 +000028
Stefan Reinauer1a08f582009-10-28 16:52:48 +000029struct chip_operations superio_smsc_lpc47m15x_ops = {
30 CHIP_NAME("SMSC LPC47M15x/192/997 Super I/O")
31 .enable_dev = enable_dev
32};
33
34static struct device_operations ops = {
35 .read_resources = pnp_read_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +020036 .set_resources = pnp_set_resources,
37 .enable_resources = pnp_enable_resources,
38 .enable = pnp_alt_enable,
Stefan Reinauer1a08f582009-10-28 16:52:48 +000039 .init = lpc47m15x_init,
Nico Huber1c811282013-06-15 20:33:44 +020040 .ops_pnp_mode = &pnp_conf_mode_55_aa,
Stefan Reinauer1a08f582009-10-28 16:52:48 +000041};
42
43static struct pnp_info pnp_dev_info[] = {
Felix Heldb0d868e2018-07-06 23:39:00 +020044 { NULL, LPC47M15X_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
45 { NULL, LPC47M15X_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
46 { NULL, LPC47M15X_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
47 { NULL, LPC47M15X_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
48 { NULL, LPC47M15X_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1,
49 0x07ff, 0x07ff, },
Stefan Reinauer1a08f582009-10-28 16:52:48 +000050};
51
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110052static void enable_dev(struct device *dev)
Stefan Reinauer1a08f582009-10-28 16:52:48 +000053{
Felix Heldb0d868e2018-07-06 23:39:00 +020054 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Stefan Reinauer1a08f582009-10-28 16:52:48 +000055}
56
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110057static void lpc47m15x_init(struct device *dev)
Stefan Reinauer1a08f582009-10-28 16:52:48 +000058{
Stefan Reinauer1a08f582009-10-28 16:52:48 +000059
60 if (!dev->enabled)
61 return;
Zheng Bao9db833b2009-12-28 09:59:44 +000062
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +010063 switch (dev->path.pnp.device) {
Stefan Reinauer1a08f582009-10-28 16:52:48 +000064 case LPC47M15X_KBC:
Timothy Pearson448e3862015-11-24 14:12:01 -060065 pc_keyboard_init(NO_AUX_DEVICE);
Stefan Reinauer1a08f582009-10-28 16:52:48 +000066 break;
67 }
68}