blob: 92bd10680b56ef15d25ccdf7ff181fc48d27c1c5 [file] [log] [blame]
Kyösti Mälkki595ef3d2015-05-27 12:44:16 +03001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Sage Electronic Engineering, LLC
Fabian Kunkel7558dba2015-05-25 17:08:17 +02005 * Copyright (C) 2015 BAP - Bruhnspace Advanced Projects
6 * (Written by Fabian Kunkel <fabi@adv.bruhnspace.com> for BAP)
Kyösti Mälkki595ef3d2015-05-27 12:44:16 +03007 *
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; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Kyösti Mälkki595ef3d2015-05-27 12:44:16 +030016 */
17
Fabian Kunkel7558dba2015-05-25 17:08:17 +020018/* SuperIO support for Windows */
19
20Device (UAR1) {
21 Name (_HID, EISAID ("PNP0501"))
22 Name (_UID, 1)
23 Name (_CRS, ResourceTemplate ()
24 {
25 IO (Decode16, 0x03F8, 0x03F8, 0x08, 0x08)
26 IRQNoFlags () {4}
27 })
28 Name (_PRS, ResourceTemplate ()
29 {
30 IO (Decode16, 0x03F8, 0x03F8, 0x08, 0x08)
31 IRQNoFlags () {4}
32 })
33}
34
35Device (UAR2) {
36 Name (_HID, EISAID ("PNP0501"))
37 Name (_UID, 2)
38 Name (_CRS, ResourceTemplate ()
39 {
40 IO (Decode16, 0x02F8, 0x02F8, 0x08, 0x08)
41 IRQNoFlags () {3}
42 })
43 Name (_PRS, ResourceTemplate ()
44 {
45 IO (Decode16, 0x02F8, 0x02F8, 0x08, 0x08)
46 IRQNoFlags () {3}
47 })
48}