blob: 8eca710080c99edf83b8ef85a1ca2979e2a68d0b [file] [log] [blame]
Marc Jones43882f12010-09-10 22:13:34 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Marc Jones <marcj303@gmail.com>
5 * Copyright (C) 2008 Corey Osgood <corey.osgood@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Marc Jones43882f12010-09-10 22:13:34 +000020 */
21
Marc Jones43882f12010-09-10 22:13:34 +000022#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>
Marc Jones43882f12010-09-10 22:13:34 +000026#include <console/console.h>
27#include <stdlib.h>
Marc Jones43882f12010-09-10 22:13:34 +000028#include "f71859.h"
29
Marc Jones43882f12010-09-10 22:13:34 +000030static void f71859_init(device_t dev)
31{
Marc Jones43882f12010-09-10 22:13:34 +000032 if (!dev->enabled)
33 return;
34
Marc Jones43882f12010-09-10 22:13:34 +000035 /* TODO: Might potentially need code for HWM or FDC etc. */
Marc Jones43882f12010-09-10 22:13:34 +000036}
37
Marc Jones43882f12010-09-10 22:13:34 +000038static struct device_operations ops = {
39 .read_resources = pnp_read_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +020040 .set_resources = pnp_set_resources,
41 .enable_resources = pnp_enable_resources,
42 .enable = pnp_alt_enable,
Marc Jones43882f12010-09-10 22:13:34 +000043 .init = f71859_init,
Nico Huber1c811282013-06-15 20:33:44 +020044 .ops_pnp_mode = &pnp_conf_mode_8787_aa,
Marc Jones43882f12010-09-10 22:13:34 +000045};
46
47static struct pnp_info pnp_dev_info[] = {
Uwe Hermanna69d9782010-11-15 19:35:14 +000048 /* TODO: Some of the 0x07f8 etc. values may not be correct. */
49 { &ops, F71859_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
Marc Jones43882f12010-09-10 22:13:34 +000050};
51
52static void enable_dev(device_t dev)
53{
54 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
55}
56
57struct chip_operations superio_fintek_f71859_ops = {
58 CHIP_NAME("Fintek F71859 Super I/O")
59 .enable_dev = enable_dev
60};