From 8a281880a36967361e7eb39056c4ff228f97c9a3 Mon Sep 17 00:00:00 2001 From: Zheng Bao Date: Sun, 27 Mar 2011 16:33:09 +0000 Subject: This is for board Supermicro H8scm. The code was done by existing chips and superiotool. WPCM450 is more like an EC. SuperIO is just a part of multi-features. Signed-off-by: Zheng Bao Acked-by: Marc Jones git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6461 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/superio/Kconfig | 1 + src/superio/Makefile.inc | 1 + src/superio/nuvoton/Kconfig | 21 +++++++++ src/superio/nuvoton/Makefile.inc | 20 ++++++++ src/superio/nuvoton/wpcm450/Makefile.inc | 22 +++++++++ src/superio/nuvoton/wpcm450/chip.h | 35 ++++++++++++++ src/superio/nuvoton/wpcm450/early_init.c | 51 +++++++++++++++++++++ src/superio/nuvoton/wpcm450/superio.c | 78 ++++++++++++++++++++++++++++++++ src/superio/nuvoton/wpcm450/wpcm450.h | 28 ++++++++++++ 9 files changed, 257 insertions(+) create mode 100644 src/superio/nuvoton/Kconfig create mode 100644 src/superio/nuvoton/Makefile.inc create mode 100644 src/superio/nuvoton/wpcm450/Makefile.inc create mode 100644 src/superio/nuvoton/wpcm450/chip.h create mode 100644 src/superio/nuvoton/wpcm450/early_init.c create mode 100644 src/superio/nuvoton/wpcm450/superio.c create mode 100644 src/superio/nuvoton/wpcm450/wpcm450.h diff --git a/src/superio/Kconfig b/src/superio/Kconfig index a1b91da18a..00fee970e5 100644 --- a/src/superio/Kconfig +++ b/src/superio/Kconfig @@ -21,6 +21,7 @@ source src/superio/fintek/Kconfig source src/superio/intel/Kconfig source src/superio/ite/Kconfig source src/superio/nsc/Kconfig +source src/superio/nuvoton/Kconfig source src/superio/renesas/Kconfig source src/superio/serverengines/Kconfig source src/superio/smsc/Kconfig diff --git a/src/superio/Makefile.inc b/src/superio/Makefile.inc index 9196996835..83c9a606bc 100644 --- a/src/superio/Makefile.inc +++ b/src/superio/Makefile.inc @@ -21,6 +21,7 @@ subdirs-y += fintek subdirs-y += intel subdirs-y += ite subdirs-y += nsc +subdirs-y += nuvoton subdirs-y += renesas #subdirs-y += serverengines subdirs-y += smsc diff --git a/src/superio/nuvoton/Kconfig b/src/superio/nuvoton/Kconfig new file mode 100644 index 0000000000..7b2d9dc3fe --- /dev/null +++ b/src/superio/nuvoton/Kconfig @@ -0,0 +1,21 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2011 Advanced Micro Devices, Inc. +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; version 2 of the License. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## + +config SUPERIO_NUVOTON_WPCM450 + bool diff --git a/src/superio/nuvoton/Makefile.inc b/src/superio/nuvoton/Makefile.inc new file mode 100644 index 0000000000..2f2ea9693d --- /dev/null +++ b/src/superio/nuvoton/Makefile.inc @@ -0,0 +1,20 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2011 Advanced Micro Devices, Inc. +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; version 2 of the License. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## + +subdirs-y += wpcm450 diff --git a/src/superio/nuvoton/wpcm450/Makefile.inc b/src/superio/nuvoton/wpcm450/Makefile.inc new file mode 100644 index 0000000000..dc7ed36cfc --- /dev/null +++ b/src/superio/nuvoton/wpcm450/Makefile.inc @@ -0,0 +1,22 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2011 Advanced Micro Devices, Inc. +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## + +ramstage-$(CONFIG_SUPERIO_NUVOTON_WPCM450) += superio.c + diff --git a/src/superio/nuvoton/wpcm450/chip.h b/src/superio/nuvoton/wpcm450/chip.h new file mode 100644 index 0000000000..a5fdba76e2 --- /dev/null +++ b/src/superio/nuvoton/wpcm450/chip.h @@ -0,0 +1,35 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2011 Advanced Micro Devices, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef SUPERIO_NUVOTON_WPCM450_CHIP_H +#define SUPERIO_NUVOTON_WPCM450_CHIP_H + +struct chip_operations; +extern struct chip_operations superio_nuvoton_wpcm450_ops; + +#include +#include + +struct superio_nuvoton_wpcm450_config { + struct uart8250 com1, com2; + struct pc_keyboard keyboard; +}; + +#endif diff --git a/src/superio/nuvoton/wpcm450/early_init.c b/src/superio/nuvoton/wpcm450/early_init.c new file mode 100644 index 0000000000..eb80c949a5 --- /dev/null +++ b/src/superio/nuvoton/wpcm450/early_init.c @@ -0,0 +1,51 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2011 Advanced Micro Devices, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include +#include "wpcm450.h" + +static void wpcm450_pnp_set_logical_device(u8 dev, u16 port) +{ + outb(0x7, port); + outb(dev, port+1); +} + +static void wpcm450_pnp_set_enable(u8 dev, u16 port, u8 enable) +{ + outb(0x30, port); + outb(enable, port+1); +} + +static void wpcm450_pnp_set_iobase(u8 dev, u16 port, u8 index, u16 iobase) +{ + outb(index, port); + outb((iobase>>8)&0xFF, port+1); + outb(index+1, port); + outb(iobase&0xFF, port+1); +} + +static void wpcm450_enable_dev(u8 dev, u16 port, u16 iobase) +{ + wpcm450_pnp_set_logical_device(dev, port); + wpcm450_pnp_set_enable(dev, port, 0); + if (iobase) + wpcm450_pnp_set_iobase(dev, port, PNP_IDX_IO0, iobase); + wpcm450_pnp_set_enable(dev, port, 1); +} diff --git a/src/superio/nuvoton/wpcm450/superio.c b/src/superio/nuvoton/wpcm450/superio.c new file mode 100644 index 0000000000..e97be7a198 --- /dev/null +++ b/src/superio/nuvoton/wpcm450/superio.c @@ -0,0 +1,78 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2011 Advanced Micro Devices, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "chip.h" +#include "wpcm450.h" + +static void init(device_t dev) +{ + struct superio_nuvoton_wpcm450_config *conf = dev->chip_info; + struct resource *res0; + + if (!dev->enabled) + return; + + switch(dev->path.pnp.device) { + case WPCM450_SP1: + res0 = find_resource(dev, PNP_IDX_IO0); + init_uart8250(res0->base, &conf->com1); + break; + case WPCM450_SP2: + res0 = find_resource(dev, PNP_IDX_IO0); + init_uart8250(res0->base, &conf->com2); + break; + case WPCM450_KBCK: + pc_keyboard_init(&conf->keyboard); + break; + } +} + +static struct device_operations ops = { + .read_resources = pnp_read_resources, + .set_resources = pnp_set_resources, + .enable_resources = pnp_enable_resources, + .enable = pnp_enable, + .init = init, +}; + +static struct pnp_info pnp_dev_info[] = { + { &ops, WPCM450_SP2, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, {0x07f8, 0}, }, + { &ops, WPCM450_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, }, + { &ops, WPCM450_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x07f8, 0}, {0x07f8, 4}, }, +}; + +static void enable_dev(struct device *dev) +{ + pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info); +} + +struct chip_operations superio_nuvoton_wpcm450_ops = { + CHIP_NAME("NUVOTON WPCM450 Super I/O") + .enable_dev = enable_dev, +}; diff --git a/src/superio/nuvoton/wpcm450/wpcm450.h b/src/superio/nuvoton/wpcm450/wpcm450.h new file mode 100644 index 0000000000..bf50c853ce --- /dev/null +++ b/src/superio/nuvoton/wpcm450/wpcm450.h @@ -0,0 +1,28 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2011 Advanced Micro Devices, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef SUPERIO_NUVOTON_WPCM450_WPCM450_H +#define SUPERIO_NUVOTON_WPCM450_WPCM450_H + +#define WPCM450_SP2 0x02 /* Com2 */ +#define WPCM450_SP1 0x03 /* Com1 */ +#define WPCM450_KBCK 0x06 /* Keyboard */ + +#endif -- cgit v1.2.3