1/* 2 * Copyright (C) 2000 AG Electronics Ltd. 3 * Copyright (C) 2003-2004 Linux Networx 4 * Copyright (C) 2004 Tyan 5 * Copyright (C) 2005 Digital Design Corporation 6 * Copyright (C) 2006 Ron Minnich, LANL 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 * 13 * This program is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * GNU General Public License for more details. 17 * 18 * You should have received a copy of the GNU General Public License 19 * along with this program; if not, write to the Free Software 20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 21 */ 22 23#ifndef SUPERIO_SMSC_LPC47M10X_LPC47M10X_H 24#define SUPERIO_SMSC_LPC47M10X_LPC47M10X_H 25 26#define LPC47M10X2_FDC 0 /* Floppy */ 27#define LPC47M10X2_PP 3 /* Parallel Port */ 28#define LPC47M10X2_SP1 4 /* Com1 */ 29#define LPC47M10X2_SP2 5 /* Com2 */ 30#define LPC47M10X2_KBC 7 /* Keyboard & Mouse */ 31#define LPC47M10X2_GAME 9 /* GAME */ 32#define LPC47M10X2_PME 10 /* PME reg*/ 33#define LPC47M10X2_MPU 10 /* MPE -- who knows -- reg*/ // FIXME 34 35#define LPC47M10X2_MAX_CONFIG_REGISTER 0x5F 36 37#endif 38

