Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the coreboot project. |
| 3 | * |
Wang Qing Pei | 53a811e | 2010-08-22 20:02:27 +0000 | [diff] [blame] | 4 | * Copyright (C) 2007 Corey Osgood <corey@slightlyhackish.com> |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 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 |
Paul Menzel | a46a712 | 2013-02-23 18:37:27 +0100 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 21 | #include <arch/io.h> |
| 22 | #include <device/device.h> |
| 23 | #include <device/pnp.h> |
Nico Huber | 1c81128 | 2013-06-15 20:33:44 +0200 | [diff] [blame] | 24 | #include <superio/conf_mode.h> |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 25 | #include <console/console.h> |
| 26 | #include <stdlib.h> |
Edward O'Callaghan | def00be | 2014-04-30 05:01:52 +1000 | [diff] [blame] | 27 | #include <pc80/keyboard.h> |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 28 | #include "f71863fg.h" |
| 29 | |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 30 | static void f71863fg_init(device_t dev) |
| 31 | { |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 32 | struct resource *res0; |
| 33 | |
| 34 | if (!dev->enabled) |
| 35 | return; |
| 36 | |
| 37 | switch(dev->path.pnp.device) { |
| 38 | /* TODO: Might potentially need code for HWM or FDC etc. */ |
Uwe Hermann | 7d34188 | 2010-11-05 00:07:13 +0000 | [diff] [blame] | 39 | case F71863FG_KBC: |
| 40 | res0 = find_resource(dev, PNP_IDX_IO0); |
Edward O'Callaghan | def00be | 2014-04-30 05:01:52 +1000 | [diff] [blame] | 41 | pc_keyboard_init(); |
Uwe Hermann | 7d34188 | 2010-11-05 00:07:13 +0000 | [diff] [blame] | 42 | break; |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 43 | } |
| 44 | } |
| 45 | |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 46 | static struct device_operations ops = { |
| 47 | .read_resources = pnp_read_resources, |
Nico Huber | 0b2ee93 | 2013-06-15 19:58:35 +0200 | [diff] [blame] | 48 | .set_resources = pnp_set_resources, |
| 49 | .enable_resources = pnp_enable_resources, |
| 50 | .enable = pnp_alt_enable, |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 51 | .init = f71863fg_init, |
Nico Huber | 1c81128 | 2013-06-15 20:33:44 +0200 | [diff] [blame] | 52 | .ops_pnp_mode = &pnp_conf_mode_8787_aa, |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | static struct pnp_info pnp_dev_info[] = { |
Uwe Hermann | a69d978 | 2010-11-15 19:35:14 +0000 | [diff] [blame] | 56 | /* TODO: Some of the 0x07f8 etc. values may not be correct. */ |
| 57 | { &ops, F71863FG_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, }, |
| 58 | { &ops, F71863FG_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, }, |
| 59 | { &ops, F71863FG_SP2, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, }, |
| 60 | { &ops, F71863FG_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, }, |
| 61 | { &ops, F71863FG_HWM, PNP_IO0 | PNP_IRQ0, {0x0ff8, 0}, }, |
| 62 | { &ops, F71863FG_KBC, PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, {0x07ff, 0}, }, |
Stefan Reinauer | 20c3d77 | 2010-11-15 21:09:57 +0000 | [diff] [blame] | 63 | { &ops, F71863FG_GPIO, }, |
Uwe Hermann | a69d978 | 2010-11-15 19:35:14 +0000 | [diff] [blame] | 64 | { &ops, F71863FG_VID, PNP_IO0, {0x07f8, 0}, }, |
Uwe Hermann | 7d34188 | 2010-11-05 00:07:13 +0000 | [diff] [blame] | 65 | { &ops, F71863FG_SPI, }, |
Wang Qing Pei | 42e7c32 | 2010-08-17 15:05:05 +0000 | [diff] [blame] | 66 | { &ops, F71863FG_PME, }, |
| 67 | }; |
| 68 | |
| 69 | static void enable_dev(device_t dev) |
| 70 | { |
| 71 | pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info); |
| 72 | } |
| 73 | |
| 74 | struct chip_operations superio_fintek_f71863fg_ops = { |
| 75 | CHIP_NAME("Fintek F71863FG Super I/O") |
| 76 | .enable_dev = enable_dev |
| 77 | }; |