Stefan Reinauer | 55426df | 2010-01-17 13:50:17 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the coreboot project. |
| 3 | * |
| 4 | * Copyright (C) 2008-2009 coresystems GmbH |
| 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; version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
Stefan Reinauer | 55426df | 2010-01-17 13:50:17 +0000 | [diff] [blame] | 14 | */ |
| 15 | |
Uwe Hermann | 7fa0819 | 2010-11-08 20:55:24 +0000 | [diff] [blame] | 16 | #ifndef SUPERIO_SMSC_LPC47N227_LPC47N227_H |
| 17 | #define SUPERIO_SMSC_LPC47N227_LPC47N227_H |
| 18 | |
Kyösti Mälkki | 3855c01 | 2019-03-03 08:45:19 +0200 | [diff] [blame] | 19 | #include <device/pnp_type.h> |
| 20 | |
Uwe Hermann | b69cb5a | 2010-10-26 22:46:43 +0000 | [diff] [blame] | 21 | /* |
| 22 | * Since the LPC47N227 does not have logical devices but a flat configuration |
Stefan Reinauer | 55426df | 2010-01-17 13:50:17 +0000 | [diff] [blame] | 23 | * space, these are arbitrary, but must match declarations in the mainboard |
Uwe Hermann | b69cb5a | 2010-10-26 22:46:43 +0000 | [diff] [blame] | 24 | * devicetree.cb. |
Stefan Reinauer | 55426df | 2010-01-17 13:50:17 +0000 | [diff] [blame] | 25 | */ |
| 26 | #define LPC47N227_PP 1 /* Parallel Port */ |
| 27 | #define LPC47N227_SP1 2 /* COM1 */ |
| 28 | #define LPC47N227_SP2 3 /* COM2 */ |
| 29 | #define LPC47N227_KBDC 5 /* Keyboard */ |
| 30 | |
| 31 | #define LPC47N227_MAX_CONFIG_REGISTER 0x39 |
Uwe Hermann | 7fa0819 | 2010-11-08 20:55:24 +0000 | [diff] [blame] | 32 | |
Antonello Dettori | 6321d7c | 2016-03-07 01:59:48 +0000 | [diff] [blame] | 33 | void pnp_enter_conf_state(pnp_devfn_t dev); |
| 34 | void pnp_exit_conf_state(pnp_devfn_t dev); |
| 35 | |
| 36 | void lpc47n227_enable_serial(pnp_devfn_t dev, u16 iobase); |
| 37 | |
Uwe Hermann | 7fa0819 | 2010-11-08 20:55:24 +0000 | [diff] [blame] | 38 | #endif |