blob: bca4067e2217b727c8ab356d2940d324a61d2f0f [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.
Frank Vibrans7b904d82011-02-14 19:00:13 +000014 */
15
16/* RAM driver for the SMSC KBC1100 Super I/O chip */
17
18#include <arch/io.h>
19#include <device/device.h>
20#include <device/pnp.h>
Nico Huber1c811282013-06-15 20:33:44 +020021#include <superio/conf_mode.h>
Frank Vibrans7b904d82011-02-14 19:00:13 +000022#include <console/console.h>
23#include <device/smbus.h>
24#include <string.h>
Frank Vibrans7b904d82011-02-14 19:00:13 +000025#include <pc80/keyboard.h>
26#include <stdlib.h>
Frank Vibrans7b904d82011-02-14 19:00:13 +000027#include "kbc1100.h"
28
29/* Forward declarations */
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110030static void enable_dev(struct device *dev);
31static void kbc1100_init(struct device *dev);
Frank Vibrans7b904d82011-02-14 19:00:13 +000032
Frank Vibrans7b904d82011-02-14 19:00:13 +000033struct chip_operations superio_smsc_kbc1100_ops = {
Arthur Heymans12d01032017-08-01 21:51:10 +020034 CHIP_NAME("SMSC KBC1100 Super I/O")
35 .enable_dev = enable_dev
Frank Vibrans7b904d82011-02-14 19:00:13 +000036};
37
38static struct device_operations ops = {
Arthur Heymans12d01032017-08-01 21:51:10 +020039 .read_resources = pnp_read_resources,
40 .set_resources = pnp_set_resources,
41 .enable_resources = pnp_enable_resources,
42 .enable = pnp_alt_enable,
43 .init = kbc1100_init,
44 .ops_pnp_mode = &pnp_conf_mode_55_aa,
Frank Vibrans7b904d82011-02-14 19:00:13 +000045};
46
47static struct pnp_info pnp_dev_info[] = {
Felix Heldb0d868e2018-07-06 23:39:00 +020048 { NULL, KBC1100_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1,
49 0x7ff, 0x7ff, },
Frank Vibrans7b904d82011-02-14 19:00:13 +000050};
51
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110052static void enable_dev(struct device *dev)
Frank Vibrans7b904d82011-02-14 19:00:13 +000053{
Felix Heldb0d868e2018-07-06 23:39:00 +020054 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Frank Vibrans7b904d82011-02-14 19:00:13 +000055}
56
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110057static void kbc1100_init(struct device *dev)
Frank Vibrans7b904d82011-02-14 19:00:13 +000058{
Arthur Heymans12d01032017-08-01 21:51:10 +020059 struct resource *res0, *res1;
Frank Vibrans7b904d82011-02-14 19:00:13 +000060
Arthur Heymans12d01032017-08-01 21:51:10 +020061 if (!dev->enabled)
62 return;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070063
Arthur Heymans12d01032017-08-01 21:51:10 +020064 switch (dev->path.pnp.device) {
65 case KBC1100_KBC:
66 res0 = find_resource(dev, PNP_IDX_IO0);
67 res1 = find_resource(dev, PNP_IDX_IO1);
68 pc_keyboard_init(NO_AUX_DEVICE);
69 break;
70 }
Frank Vibrans7b904d82011-02-14 19:00:13 +000071}