blob: d040a10b374e2199986afadfafeec76a58108281 [file] [log] [blame]
Stefan Reinauer6af77ae2006-08-25 19:29:57 +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 Reinauer6af77ae2006-08-25 19:29:57 +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.
Stefan Reinauer6af77ae2006-08-25 19:29:57 +000015 */
16
Edward O'Callaghanf2920022014-04-27 00:41:50 +100017#ifndef SUPERIO_ITE_IT8712F_H
18#define SUPERIO_ITE_IT8712F_H
Uwe Hermann7fa08192010-11-08 20:55:24 +000019
Stefan Reinauer2073ce22006-09-06 16:12:39 +000020/* Datasheet: http://www.ite.com.tw/product_info/PC/Brief-IT8712_2.asp */
Stefan Reinauer2073ce22006-09-06 16:12:39 +000021
Stefan Reinauer6af77ae2006-08-25 19:29:57 +000022#define IT8712F_FDC 0x00 /* Floppy */
23#define IT8712F_SP1 0x01 /* Com1 */
24#define IT8712F_SP2 0x02 /* Com2 */
25#define IT8712F_PP 0x03 /* Parallel port */
26#define IT8712F_EC 0x04 /* Environment controller */
27#define IT8712F_KBCK 0x05 /* Keyboard */
28#define IT8712F_KBCM 0x06 /* Mouse */
Philipp Degler4adc7422007-05-24 18:44:50 +000029#define IT8712F_GPIO 0x07 /* GPIO */
Stefan Reinauer6af77ae2006-08-25 19:29:57 +000030#define IT8712F_MIDI 0x08 /* MIDI port */
31#define IT8712F_GAME 0x09 /* GAME port */
32#define IT8712F_IR 0x0a /* Consumer IR */
Stefan Reinauerd6532112010-04-16 00:31:44 +000033
Edward O'Callaghanf2920022014-04-27 00:41:50 +100034#endif /* SUPERIO_ITE_IT8712F_H */