Sven Schnelle | 92cf08c | 2011-02-05 12:20:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the coreboot project. |
| 3 | * |
| 4 | * Copyright (C) 2011 Sven Schnelle <svens@stackframe.org> |
| 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 |
Sven Schnelle | 92cf08c | 2011-02-05 12:20:23 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | #include <arch/io.h> |
| 22 | #include <device/device.h> |
| 23 | #include <device/pnp.h> |
| 24 | #include <console/console.h> |
| 25 | #include <string.h> |
Sven Schnelle | 92cf08c | 2011-02-05 12:20:23 +0000 | [diff] [blame] | 26 | #include <uart8250.h> |
| 27 | #include <pc80/keyboard.h> |
| 28 | #include <stdlib.h> |
Sven Schnelle | 92cf08c | 2011-02-05 12:20:23 +0000 | [diff] [blame] | 29 | #include "pc87382.h" |
| 30 | |
| 31 | static void init(device_t dev) |
| 32 | { |
Sven Schnelle | 92cf08c | 2011-02-05 12:20:23 +0000 | [diff] [blame] | 33 | if (!dev->enabled) |
| 34 | return; |
| 35 | |
| 36 | switch(dev->path.pnp.device) { |
Sven Schnelle | 92cf08c | 2011-02-05 12:20:23 +0000 | [diff] [blame] | 37 | case PC87382_DOCK: |
| 38 | break; |
| 39 | |
| 40 | case PC87382_GPIO: |
| 41 | break; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | static struct device_operations ops = { |
| 46 | .read_resources = pnp_read_resources, |
| 47 | .set_resources = pnp_set_resources, |
| 48 | .enable_resources = pnp_enable_resources, |
| 49 | .enable = pnp_enable, |
| 50 | .init = init, |
| 51 | }; |
| 52 | |
| 53 | static struct pnp_info pnp_dev_info[] = { |
| 54 | { &ops, PC87382_IR, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, { 0x07f8, 0 } }, |
| 55 | { &ops, PC87382_SP1, PNP_IO0 | PNP_IRQ0, { 0x07f8, 0 } }, |
| 56 | { &ops, PC87382_GPIO, PNP_IO0 | PNP_IRQ0, { 0xfff0, 0 } }, |
| 57 | { &ops, PC87382_DOCK, PNP_IO0 | PNP_IRQ0, { 0xfffe, 0 } }, |
| 58 | }; |
| 59 | |
| 60 | static void enable_dev(struct device *dev) |
| 61 | { |
| 62 | pnp_enable_devices(dev, &pnp_ops, |
| 63 | ARRAY_SIZE(pnp_dev_info), pnp_dev_info); |
| 64 | } |
| 65 | |
| 66 | struct chip_operations superio_nsc_pc87382_ops = { |
| 67 | CHIP_NAME("NSC PC87382 Docking LPC Switch") |
| 68 | .enable_dev = enable_dev, |
| 69 | }; |