Zheng Bao | 9db833b | 2009-12-28 09:59:44 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the coreboot project. |
| 3 | * |
| 4 | * Copyright (C) 2000 AG Electronics Ltd. |
| 5 | * Copyright (C) 2003-2004 Linux Networx |
Uwe Hermann | 340fa93 | 2010-11-10 14:53:36 +0000 | [diff] [blame] | 6 | * Copyright (C) 2004 Tyan |
Zheng Bao | 9db833b | 2009-12-28 09:59:44 +0000 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
Zheng Bao | 9db833b | 2009-12-28 09:59:44 +0000 | [diff] [blame] | 17 | */ |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 18 | |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 19 | #include <device/device.h> |
| 20 | #include <device/pnp.h> |
Nico Huber | 1c81128 | 2013-06-15 20:33:44 +0200 | [diff] [blame] | 21 | #include <superio/conf_mode.h> |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 22 | #include <pc80/keyboard.h> |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 23 | #include "w83627thg.h" |
| 24 | |
Edward O'Callaghan | f21bdc3 | 2014-10-21 07:43:41 +1100 | [diff] [blame] | 25 | static void w83627thg_init(struct device *dev) |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 26 | { |
Uwe Hermann | 340fa93 | 2010-11-10 14:53:36 +0000 | [diff] [blame] | 27 | |
| 28 | if (!dev->enabled) |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 29 | return; |
Uwe Hermann | 340fa93 | 2010-11-10 14:53:36 +0000 | [diff] [blame] | 30 | |
Elyes HAOUAS | 0ce41f1 | 2018-11-13 10:03:31 +0100 | [diff] [blame] | 31 | switch (dev->path.pnp.device) { |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 32 | case W83627THG_KBC: |
Timothy Pearson | 448e386 | 2015-11-24 14:12:01 -0600 | [diff] [blame] | 33 | pc_keyboard_init(NO_AUX_DEVICE); |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 34 | break; |
| 35 | } |
| 36 | } |
| 37 | |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 38 | static struct device_operations ops = { |
| 39 | .read_resources = pnp_read_resources, |
Nico Huber | 0b2ee93 | 2013-06-15 19:58:35 +0200 | [diff] [blame] | 40 | .set_resources = pnp_set_resources, |
| 41 | .enable_resources = pnp_enable_resources, |
| 42 | .enable = pnp_enable, |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 43 | .init = w83627thg_init, |
Nico Huber | 1c81128 | 2013-06-15 20:33:44 +0200 | [diff] [blame] | 44 | .ops_pnp_mode = &pnp_conf_mode_8787_aa, |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | static struct pnp_info pnp_dev_info[] = { |
Felix Held | 8c85880 | 2018-07-06 20:22:08 +0200 | [diff] [blame] | 48 | { NULL, W83627THG_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, }, |
| 49 | { NULL, W83627THG_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, }, |
| 50 | { NULL, W83627THG_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, }, |
| 51 | { NULL, W83627THG_SP2, PNP_IO0 | PNP_IRQ0 | PNP_MSC1, 0x07f8, }, |
| 52 | { NULL, W83627THG_KBC, |
| 53 | PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1 | PNP_MSC0, |
| 54 | 0x07ff, 0x07ff, }, |
| 55 | { NULL, W83627THG_GAME_MIDI_GPIO1, PNP_IO0 | PNP_IO1 | PNP_IRQ0, |
| 56 | 0x07ff, 0x07fe, }, |
| 57 | { NULL, W83627THG_GPIO2, }, |
| 58 | { NULL, W83627THG_GPIO3, PNP_EN | PNP_MSC0 | PNP_MSC1, }, |
| 59 | { NULL, W83627THG_ACPI, PNP_IRQ0, }, |
| 60 | { NULL, W83627THG_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, }, |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
Edward O'Callaghan | f21bdc3 | 2014-10-21 07:43:41 +1100 | [diff] [blame] | 63 | static void enable_dev(struct device *dev) |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 64 | { |
Uwe Hermann | 340fa93 | 2010-11-10 14:53:36 +0000 | [diff] [blame] | 65 | pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info); |
Stefan Reinauer | b70d199 | 2008-10-29 04:45:28 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | struct chip_operations superio_winbond_w83627thg_ops = { |
| 69 | CHIP_NAME("Winbond W83627THG Super I/O") |
| 70 | .enable_dev = enable_dev, |
| 71 | }; |