Stefan Reinauer | abaf71a | 2006-08-29 00:45:42 +0000 | [diff] [blame] | 1 | /* |
Stefan Reinauer | 7e61e45 | 2008-01-18 10:35:56 +0000 | [diff] [blame] | 2 | * This file is part of the coreboot project. |
Uwe Hermann | a4c56c3 | 2006-11-01 14:31:00 +0000 | [diff] [blame] | 3 | * |
Stefan Reinauer | abaf71a | 2006-08-29 00:45:42 +0000 | [diff] [blame] | 4 | * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de> |
| 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 |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | */ |
| 20 | |
Uwe Hermann | 5c6bae2 | 2010-11-08 15:16:30 +0000 | [diff] [blame] | 21 | #ifndef SUPERIO_ITE_IT8661F_CHIP_H |
| 22 | #define SUPERIO_ITE_IT8661F_CHIP_H |
Stefan Reinauer | abaf71a | 2006-08-29 00:45:42 +0000 | [diff] [blame] | 23 | |
Uwe Hermann | 5c6bae2 | 2010-11-08 15:16:30 +0000 | [diff] [blame] | 24 | /* This chip doesn't have keyboard and mouse support. */ |
Stefan Reinauer | abaf71a | 2006-08-29 00:45:42 +0000 | [diff] [blame] | 25 | |
Jon Dufresne | 39b13f4 | 2006-12-01 09:41:11 +0000 | [diff] [blame] | 26 | #include <device/device.h> |
Stefan Reinauer | abaf71a | 2006-08-29 00:45:42 +0000 | [diff] [blame] | 27 | #include <uart8250.h> |
| 28 | |
Uwe Hermann | f28674e | 2006-11-01 12:52:49 +0000 | [diff] [blame] | 29 | extern struct chip_operations superio_ite_it8661f_ops; |
Stefan Reinauer | abaf71a | 2006-08-29 00:45:42 +0000 | [diff] [blame] | 30 | |
Uwe Hermann | f28674e | 2006-11-01 12:52:49 +0000 | [diff] [blame] | 31 | struct superio_ite_it8661f_config { |
Stefan Reinauer | 5ff7c13 | 2011-10-31 12:56:45 -0700 | [diff] [blame] | 32 | |
Stefan Reinauer | abaf71a | 2006-08-29 00:45:42 +0000 | [diff] [blame] | 33 | }; |
| 34 | |
Uwe Hermann | 5c6bae2 | 2010-11-08 15:16:30 +0000 | [diff] [blame] | 35 | #endif |