blob: e710a45fc5b86fd57df1943fc48bbb5b320ae03a [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.
Marc Jones43882f12010-09-10 22:13:34 +000016 */
17
Marc Jones43882f12010-09-10 22:13:34 +000018#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>
Marc Jones43882f12010-09-10 22:13:34 +000022#include <console/console.h>
23#include <stdlib.h>
Marc Jones43882f12010-09-10 22:13:34 +000024#include "f71859.h"
25
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110026static void f71859_init(struct device *dev)
Marc Jones43882f12010-09-10 22:13:34 +000027{
Marc Jones43882f12010-09-10 22:13:34 +000028 if (!dev->enabled)
29 return;
30
Marc Jones43882f12010-09-10 22:13:34 +000031 /* TODO: Might potentially need code for HWM or FDC etc. */
Marc Jones43882f12010-09-10 22:13:34 +000032}
33
Marc Jones43882f12010-09-10 22:13:34 +000034static 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,
Marc Jones43882f12010-09-10 22:13:34 +000039 .init = f71859_init,
Nico Huber1c811282013-06-15 20:33:44 +020040 .ops_pnp_mode = &pnp_conf_mode_8787_aa,
Marc Jones43882f12010-09-10 22:13:34 +000041};
42
43static struct pnp_info pnp_dev_info[] = {
Uwe Hermanna69d9782010-11-15 19:35:14 +000044 /* TODO: Some of the 0x07f8 etc. values may not be correct. */
45 { &ops, F71859_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
Marc Jones43882f12010-09-10 22:13:34 +000046};
47
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110048static void enable_dev(struct device *dev)
Marc Jones43882f12010-09-10 22:13:34 +000049{
50 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
51}
52
53struct chip_operations superio_fintek_f71859_ops = {
54 CHIP_NAME("Fintek F71859 Super I/O")
55 .enable_dev = enable_dev
56};