blob: 678d0c542331d58f4b07c6ef22624cbe3191f543 [file] [log] [blame]
Stefan Reinauerabaf71a2006-08-29 00:45:42 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermanna4c56c32006-11-01 14:31:00 +00003 *
Stefan Reinauerabaf71a2006-08-29 00:45:42 +00004 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
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
Patrick Georgib890a122015-03-26 15:17:45 +010018 * Foundation, Inc.
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000019 */
20
Jon Dufresne39b13f42006-12-01 09:41:11 +000021#include <device/device.h>
22#include <device/pnp.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000023#include <stdlib.h>
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000024#include "it8661f.h"
25
Uwe Hermannf228a6c2010-11-10 00:08:42 +000026/* TODO: Add pnp_enter_ext_func_mode() etc. and wrap functions. */
27
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110028static void init(struct device *dev)
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000029{
Uwe Hermann5c6bae22010-11-08 15:16:30 +000030 if (!dev->enabled)
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000031 return;
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000032
Stefan Reinauer2b34db82009-02-28 20:10:20 +000033 switch (dev->path.pnp.device) {
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000034 case IT8661F_FDC: /* TODO. */
35 break;
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000036 case IT8661F_PP: /* TODO. */
37 break;
38 case IT8661F_IR: /* TODO. */
39 break;
40 }
41}
42
43static struct device_operations ops = {
44 .read_resources = pnp_read_resources,
45 .set_resources = pnp_set_resources,
46 .enable_resources = pnp_enable_resources,
47 .enable = pnp_enable,
48 .init = init,
49};
50
51/* TODO: FDC, PP, IR, GPIO. */
52static struct pnp_info pnp_dev_info[] = {
Uwe Hermanna69d9782010-11-15 19:35:14 +000053 { &ops, IT8661F_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
54 { &ops, IT8661F_SP2, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, {0x07f8, 0}, },
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000055};
56
57static void enable_dev(struct device *dev)
58{
59 pnp_enable_devices(dev, &pnp_ops,
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000060 ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000061}
62
Uwe Hermannf28674e2006-11-01 12:52:49 +000063struct chip_operations superio_ite_it8661f_ops = {
Uwe Hermanna7aa29b2006-11-05 18:50:49 +000064 CHIP_NAME("ITE IT8661F Super I/O")
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000065 .enable_dev = enable_dev,
66};