blob: 64b2cf873f77fc855247ecfb14a49f2518543736 [file] [log] [blame]
Stefan Reinauerabaf71a2006-08-29 00:45:42 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermanna4c56c32006-11-01 14:31:00 +00003 *
Stefan Reinauerabaf71a2006-08-29 00:45:42 +00004 * 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 Hermann5c6bae22010-11-08 15:16:30 +000021#ifndef SUPERIO_ITE_IT8661F_CHIP_H
22#define SUPERIO_ITE_IT8661F_CHIP_H
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000023
Uwe Hermann5c6bae22010-11-08 15:16:30 +000024/* This chip doesn't have keyboard and mouse support. */
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000025
Jon Dufresne39b13f42006-12-01 09:41:11 +000026#include <device/device.h>
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000027#include <uart8250.h>
28
Uwe Hermannf28674e2006-11-01 12:52:49 +000029extern struct chip_operations superio_ite_it8661f_ops;
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000030
Uwe Hermannf28674e2006-11-01 12:52:49 +000031struct superio_ite_it8661f_config {
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070032
Stefan Reinauerabaf71a2006-08-29 00:45:42 +000033};
34
Uwe Hermann5c6bae22010-11-08 15:16:30 +000035#endif