diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-11-11 21:10:07 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-11-11 21:10:07 +0000 |
commit | 1ec5094390f6d78929cc12ed31860a7c8e2c459c (patch) | |
tree | ceb0e4ac49a5125dfaa62995d109d052a24483d8 /src/superio/winbond/w83627dhg/chip.h | |
parent | 81af3d4a0077f354029e92aea71eb737d20f6a3e (diff) |
Add support for the Winbond W83627DHG Super I/O.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Corey Osgood <corey.osgood@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3746 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/winbond/w83627dhg/chip.h')
-rw-r--r-- | src/superio/winbond/w83627dhg/chip.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/superio/winbond/w83627dhg/chip.h b/src/superio/winbond/w83627dhg/chip.h new file mode 100644 index 0000000000..b948ba3f1c --- /dev/null +++ b/src/superio/winbond/w83627dhg/chip.h @@ -0,0 +1,29 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de> + * + * 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 <pc80/keyboard.h> +#include <uart8250.h> + +extern struct chip_operations superio_winbond_w83627dhg_ops; + +struct superio_winbond_w83627dhg_config { + struct uart8250 com1, com2; + struct pc_keyboard keyboard; +}; |