1/* 2 * This file is part of the coreboot project. 3 * 4 * Copyright (C) 2007 Corey Osgood <corey.osgood@gmail.com> 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 21{ 22 device_operations = "f71805f_ops"; 23 24 /* Floppy */ 25 floppyenable = "0"; 26 floppyio = "0x3f0"; 27 floppyirq = "6"; 28 floppydrq = "2"; 29 30 /* COM1 */ 31 com1enable = "0"; 32 com1io = "0x3f8"; 33 com1irq = "4"; 34 35 /* COM2 */ 36 com2enable = "0"; 37 com2io = "0x2f8"; 38 com2irq = "3"; 39 40 /* Parallel port */ 41 ppenable = "0"; 42 ppio = "0x378"; 43 ppirq = "7"; 44 45 /* Hardware Monitor */ 46 hwmenable = "0"; 47 hwmio = "0x295"; 48 hwmirq = "0"; /* TODO? */ 49 50 /* GPIO */ 51 gpioenable = "0"; 52 gpioirq = "0"; /* TODO? */ 53 54 /* PME */ 55 pmeenable = "0"; 56}; 57

