Stefan Reinauer | 6af77ae | 2006-08-25 19:29:57 +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 | 6af77ae | 2006-08-25 19:29:57 +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. |
Stefan Reinauer | 6af77ae | 2006-08-25 19:29:57 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Edward O'Callaghan | f292002 | 2014-04-27 00:41:50 +1000 | [diff] [blame] | 17 | #ifndef SUPERIO_ITE_IT8712F_H |
| 18 | #define SUPERIO_ITE_IT8712F_H |
Uwe Hermann | 7fa0819 | 2010-11-08 20:55:24 +0000 | [diff] [blame] | 19 | |
Stefan Reinauer | 2073ce2 | 2006-09-06 16:12:39 +0000 | [diff] [blame] | 20 | /* Datasheet: http://www.ite.com.tw/product_info/PC/Brief-IT8712_2.asp */ |
Stefan Reinauer | 2073ce2 | 2006-09-06 16:12:39 +0000 | [diff] [blame] | 21 | |
Stefan Reinauer | 6af77ae | 2006-08-25 19:29:57 +0000 | [diff] [blame] | 22 | #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 Degler | 4adc742 | 2007-05-24 18:44:50 +0000 | [diff] [blame] | 29 | #define IT8712F_GPIO 0x07 /* GPIO */ |
Stefan Reinauer | 6af77ae | 2006-08-25 19:29:57 +0000 | [diff] [blame] | 30 | #define IT8712F_MIDI 0x08 /* MIDI port */ |
| 31 | #define IT8712F_GAME 0x09 /* GAME port */ |
| 32 | #define IT8712F_IR 0x0a /* Consumer IR */ |
Stefan Reinauer | d653211 | 2010-04-16 00:31:44 +0000 | [diff] [blame] | 33 | |
Edward O'Callaghan | f292002 | 2014-04-27 00:41:50 +1000 | [diff] [blame] | 34 | #endif /* SUPERIO_ITE_IT8712F_H */ |