blob: 5bc4f6e35b03066570127f524d31c668f2a2158c [file] [log] [blame]
Frank Vibransd0a8ebf2011-02-14 18:52:15 +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; 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.
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000015 */
16
17#include <arch/io.h>
18#include <device/device.h>
19#include <device/pnp.h>
Nico Huber1c811282013-06-15 20:33:44 +020020#include <superio/conf_mode.h>
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000021#include <console/console.h>
22#include <stdlib.h>
Edward O'Callaghandef00be2014-04-30 05:01:52 +100023#include <pc80/keyboard.h>
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000024#include "f81865f.h"
25
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110026static void f81865f_init(struct device *dev)
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000027{
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000028
29 if (!dev->enabled)
30 return;
31
32 switch (dev->path.pnp.device) {
33 /* TODO: Might potentially need code for HWM or FDC etc. */
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000034 case F81865F_KBC:
Timothy Pearson448e3862015-11-24 14:12:01 -060035 pc_keyboard_init(NO_AUX_DEVICE);
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000036 break;
37 }
38}
39
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000040static struct device_operations ops = {
41 .read_resources = pnp_read_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +020042 .set_resources = pnp_set_resources,
43 .enable_resources = pnp_enable_resources,
44 .enable = pnp_alt_enable,
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000045 .init = f81865f_init,
Nico Huber1c811282013-06-15 20:33:44 +020046 .ops_pnp_mode = &pnp_conf_mode_8787_aa,
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000047};
48
49static struct pnp_info pnp_dev_info[] = {
50 /* TODO: Some of the 0x7f8 etc. values may not be correct. */
Samuel Holland7daac912017-06-06 22:55:01 -050051 { &ops, F81865F_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
52 { &ops, F81865F_SP1, PNP_IO0 | PNP_IRQ0, 0x7f8, },
53 { &ops, F81865F_SP2, PNP_IO0 | PNP_IRQ0, 0x7f8, },
54 { &ops, F81865F_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, 0x07ff, },
55 { &ops, F81865F_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
56 { &ops, F81865F_HWM, PNP_IO0 | PNP_IRQ0, 0xff8, },
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000057 { &ops, F81865F_GPIO, PNP_IRQ0, },
58 { &ops, F81865F_PME, },
59};
60
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110061static void enable_dev(struct device *dev)
Frank Vibransd0a8ebf2011-02-14 18:52:15 +000062{
63 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
64}
65
66struct chip_operations superio_fintek_f81865f_ops = {
67 CHIP_NAME("Fintek F81865F Super I/O")
68 .enable_dev = enable_dev
69};