blob: 57ef408a2ef429ef0136d499f84baa03b3062bad [file] [log] [blame]
Jens Rottmann68c9f2b2013-03-01 17:20:42 +01001/*
2 * SuperI/O devices
3 *
4 * This file is part of the coreboot project.
5 *
6 * Copyright (C) 2012 LiPPERT ADLINK Technology GmbH
7 * (Written by Jens Rottmann <JRottmann@LiPPERTembedded.de> for LiPPERT)
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
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.
Jens Rottmann68c9f2b2013-03-01 17:20:42 +010017 */
18
19/* PS/2 Keyboard */
20Device(KBC) {
21 Name(_HID, EISAID("PNP0303"))
22 Name(_CRS, ResourceTemplate() {
23 IO(Decode16, 0x0060, 0x0060, 1, 1)
24 IO(Decode16, 0x0064, 0x0064, 1, 1)
25 IRQNoFlags(){1}
26 })
27}
28
29/* PS/2 Mouse */
30Device(PS2M) {
31 Name(_HID, EISAID("PNP0F13"))
32 Name(_CRS, ResourceTemplate() {
33 IRQNoFlags(){12}
34 })
35}