blob: 9c0a196c212a5d28433fc169f1edeb91dff9f62e [file] [log] [blame]
Frank Vibrans7b904d82011-02-14 19:00:13 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
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; 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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Frank Vibrans7b904d82011-02-14 19:00:13 +000018 */
19
20/* RAM driver for the SMSC KBC1100 Super I/O chip */
21
22#include <arch/io.h>
23#include <device/device.h>
24#include <device/pnp.h>
Nico Huber1c811282013-06-15 20:33:44 +020025#include <superio/conf_mode.h>
Frank Vibrans7b904d82011-02-14 19:00:13 +000026#include <console/console.h>
27#include <device/smbus.h>
28#include <string.h>
Frank Vibrans7b904d82011-02-14 19:00:13 +000029#include <pc80/keyboard.h>
30#include <stdlib.h>
Frank Vibrans7b904d82011-02-14 19:00:13 +000031#include "kbc1100.h"
32
33/* Forward declarations */
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110034static void enable_dev(struct device *dev);
35static void kbc1100_init(struct device *dev);
Frank Vibrans7b904d82011-02-14 19:00:13 +000036
Frank Vibrans7b904d82011-02-14 19:00:13 +000037struct chip_operations superio_smsc_kbc1100_ops = {
38 CHIP_NAME("SMSC KBC1100 Super I/O")
39 .enable_dev = enable_dev
40};
41
42static struct device_operations ops = {
43 .read_resources = pnp_read_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +020044 .set_resources = pnp_set_resources,
45 .enable_resources = pnp_enable_resources,
46 .enable = pnp_alt_enable,
Frank Vibrans7b904d82011-02-14 19:00:13 +000047 .init = kbc1100_init,
Nico Huber1c811282013-06-15 20:33:44 +020048 .ops_pnp_mode = &pnp_conf_mode_55_aa,
Frank Vibrans7b904d82011-02-14 19:00:13 +000049};
50
51static struct pnp_info pnp_dev_info[] = {
52 { &ops, KBC1100_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, { 0x7ff, 0 }, { 0x7ff, 0x4}, },
53};
54
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110055static void enable_dev(struct device *dev)
Frank Vibrans7b904d82011-02-14 19:00:13 +000056{
57 pnp_enable_devices(dev, &pnp_ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
58}
59
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110060static void kbc1100_init(struct device *dev)
Frank Vibrans7b904d82011-02-14 19:00:13 +000061{
Frank Vibrans7b904d82011-02-14 19:00:13 +000062 struct resource *res0, *res1;
63
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070064
65
Frank Vibrans7b904d82011-02-14 19:00:13 +000066 if (!dev->enabled) {
67 return;
68 }
69
70 switch(dev->path.pnp.device) {
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070071
Frank Vibrans7b904d82011-02-14 19:00:13 +000072 case KBC1100_KBC:
73 res0 = find_resource(dev, PNP_IDX_IO0);
74 res1 = find_resource(dev, PNP_IDX_IO1);
Edward O'Callaghandef00be2014-04-30 05:01:52 +100075 pc_keyboard_init();
Frank Vibrans7b904d82011-02-14 19:00:13 +000076 break;
77 }
78}