blob: 5474cdc9f50b406b3b859d80da575b960a719e2b [file] [log] [blame]
Stefan Reinauerd8a5fd22012-12-11 15:51:47 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 The ChromiumOS Authors. All rights reserved.
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 Reinauerd8a5fd22012-12-11 15:51:47 -080014 */
15
16// Scope is \_SB.PCI0.LPCB
17
18Device (SIO) {
19 Name (_UID, 0)
20 Name (_ADR, 0)
21
Edward O'Callaghan05a1dc32014-12-05 22:43:35 +110022// Keyboard or AUX port (a.k.a Mouse)
Stefan Reinauerd8a5fd22012-12-11 15:51:47 -080023#ifdef SIO_EC_ENABLE_PS2K
Edward O'Callaghan05a1dc32014-12-05 22:43:35 +110024 #include <drivers/pc80/ps2_controller.asl>
Stefan Reinauerd8a5fd22012-12-11 15:51:47 -080025#endif
26}