• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/** @file
2  Differentiated System Description Table Fields (DSDT)
3
4  Copyright (c) 2014, ARM Ltd. All rights reserved.<BR>
5  Copyright (c) 2015-2016, Hisilicon Limited. All rights reserved.<BR>
6  Copyright (c) 2015-2016, Linaro Limited. All rights reserved.<BR>
7    This program and the accompanying materials
8  are licensed and made available under the terms and conditions of the BSD License
9  which accompanies this distribution.  The full text of the license may be found at
10  http://opensource.org/licenses/bsd-license.php
11
12  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15**/
16
17Scope(_SB)
18{
19  Device(COM0) {
20    Name(_HID, "ARMH0011")
21    Name(_CID, "PL011")
22    Name(_UID, Zero)
23    Name(_CRS, ResourceTemplate() {
24      Memory32Fixed(ReadWrite, 0x602B0000, 0x1000)
25      Interrupt(ResourceConsumer, Level, ActiveHigh, Exclusive, 0, "\\_SB.MBI0") { 807 }
26    })
27  }
28}
29