• 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    This program and the accompanying materials
6  are licensed and made available under the terms and conditions of the BSD License
7  which accompanies this distribution.  The full text of the license may be found at
8  http://opensource.org/licenses/bsd-license.php
9
10  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13**/
14
15Scope(_SB)
16{
17  // sysctl dsa
18  Device(CTL0) {
19    Name(_HID, "HISI0061")
20    Name(_CRS, ResourceTemplate() {
21      Memory32Fixed(ReadWrite, 0xC0000000, 0x10000)
22    })
23  }
24  // sysctl pcie
25  Device(CTL1) {
26    Name(_HID, "HISI0061")
27    Name(_CRS, ResourceTemplate() {
28      Memory32Fixed(ReadWrite, 0xB0000000, 0x10000)
29    })
30  }
31  // sysctl peri_c
32  Device(CTL2) {
33    Name(_HID, "HISI0061")
34    Name(_CRS, ResourceTemplate() {
35      Memory32Fixed(ReadWrite, 0x80000000, 0x10000)
36    })
37  }
38}
39