Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | /** @file * * Differentiated System Definition Table (DSDT) * * Copyright (c) 2020, Pete Batard <pete@akeo.ie> * Copyright (c) 2018-2020, Andrey Warkentin <andrey.warkentin@gmail.com> * Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) 2021, ARM Limited. All rights reserved. * * SPDX-License-Identifier: BSD-2-Clause-Patent * **/ #include <asm/arch/acpi/bcm2711.h> #include <asm/arch/acpi/bcm2836.h> #include <asm/arch/acpi/bcm2836_gpio.h> #include <asm/arch/acpi/bcm2836_gpu.h> #include <asm/arch/acpi/bcm2836_pwm.h> #include <asm/arch/acpi/bcm2836_sdio.h> #include <asm/arch/acpi/bcm2836_sdhost.h> #include "acpitables.h" #define BCM_ALT0 0x4 #define BCM_ALT1 0x5 #define BCM_ALT2 0x6 #define BCM_ALT3 0x7 #define BCM_ALT4 0x3 #define BCM_ALT5 0x2 // // The ASL compiler does not support argument arithmetic in functions // like QWordMemory (). So we need to instantiate dummy qword regions // that we can then update the Min, Max and Length attributes of. // The three macros below help accomplish this. // // QWORDMEMORYSET specifies a CPU memory range (whose base address is // BCM2836_SOC_REGISTERS + Offset), and QWORDBUSMEMORYSET specifies // a VPU memory range (whose base address is provided directly). // #define QWORDMEMORYBUF(Index) \ QWordMemory (ResourceProducer,, \ MinFixed, MaxFixed, NonCacheable, ReadWrite, \ 0x0, 0x0, 0x0, 0x0, 0x1,,, RB ## Index) #define QWORDMEMORYSET(Index, Offset, Length) \ CreateQwordField (RBUF, RB ## Index._MIN, MI ## Index) \ CreateQwordField (RBUF, RB ## Index._MAX, MA ## Index) \ CreateQwordField (RBUF, RB ## Index._LEN, LE ## Index) \ Store (Length, LE ## Index) \ Add (BCM2836_SOC_REGISTERS, Offset, MI ## Index) \ Add (MI ## Index, LE ## Index - 1, MA ## Index) #define QWORDBUSMEMORYSET(Index, Base, Length) \ CreateQwordField (RBUF, RB ## Index._MIN, MI ## Index) \ CreateQwordField (RBUF, RB ## Index._MAX, MA ## Index) \ CreateQwordField (RBUF, RB ## Index._LEN, LE ## Index) \ Store (Base, MI ## Index) \ Store (Length, LE ## Index) \ Add (MI ## Index, LE ## Index - 1, MA ## Index) DefinitionBlock ("Dsdt.aml", "DSDT", 2, "RPIFDN", "RPI", 2) { External (\_PR.CP00, DeviceObj) External (\_PR.CP01, DeviceObj) External (\_PR.CP02, DeviceObj) External (\_PR.CP03, DeviceObj) Scope (\_SB_) { include ("pep.asl") // // GPU device container describes the DMA translation required // when a device behind the GPU wants to access Arm memory. // Only the first GB can be addressed. // Device (GDV0) { Name (_HID, "ACPI0004") Name (_UID, 0x1) Name (_CCA, 0x0) Method (_CRS, 0, Serialized) { // // Container devices with _DMA must have _CRS, meaning GDV0 // to provide all resources that GpuDevs.asl consume (except // interrupts). // Name (RBUF, ResourceTemplate () { QWORDMEMORYBUF(01) QWORDMEMORYBUF(02) QWORDMEMORYBUF(03) // QWORDMEMORYBUF(04) // QWORDMEMORYBUF(05) QWORDMEMORYBUF(06) QWORDMEMORYBUF(07) QWORDMEMORYBUF(08) QWORDMEMORYBUF(09) QWORDMEMORYBUF(10) QWORDMEMORYBUF(11) QWORDMEMORYBUF(12) QWORDMEMORYBUF(13) QWORDMEMORYBUF(14) QWORDMEMORYBUF(15) // QWORDMEMORYBUF(16) QWORDMEMORYBUF(17) QWORDMEMORYBUF(18) QWORDMEMORYBUF(19) QWORDMEMORYBUF(20) QWORDMEMORYBUF(21) QWORDMEMORYBUF(22) QWORDMEMORYBUF(23) QWORDMEMORYBUF(24) QWORDMEMORYBUF(25) }) // USB QWORDMEMORYSET(01, BCM2836_USB_OFFSET, BCM2836_USB_LENGTH) // GPU QWORDMEMORYSET(02, BCM2836_V3D_BUS_OFFSET, BCM2836_V3D_BUS_LENGTH) QWORDMEMORYSET(03, BCM2836_HVS_OFFSET, BCM2836_HVS_LENGTH) // QWORDMEMORYSET(04, BCM2836_PV0_OFFSET, BCM2836_PV0_LENGTH) // QWORDMEMORYSET(05, BCM2836_PV1_OFFSET, BCM2836_PV1_LENGTH) QWORDMEMORYSET(06, BCM2836_PV2_OFFSET, BCM2836_PV2_LENGTH) QWORDMEMORYSET(07, BCM2836_HDMI0_OFFSET, BCM2836_HDMI0_LENGTH) QWORDMEMORYSET(08, BCM2836_HDMI1_OFFSET, BCM2836_HDMI1_LENGTH) // Mailbox QWORDMEMORYSET(09, BCM2836_MBOX_OFFSET, BCM2836_MBOX_LENGTH) // VCHIQ QWORDMEMORYSET(10, BCM2836_VCHIQ_OFFSET, BCM2836_VCHIQ_LENGTH) // GPIO QWORDMEMORYSET(11, GPIO_OFFSET, GPIO_LENGTH) // I2C QWORDMEMORYSET(12, BCM2836_I2C1_OFFSET, BCM2836_I2C1_LENGTH) QWORDMEMORYSET(13, BCM2836_I2C2_OFFSET, BCM2836_I2C2_LENGTH) // SPI QWORDMEMORYSET(14, BCM2836_SPI0_OFFSET, BCM2836_SPI0_LENGTH) QWORDMEMORYSET(15, BCM2836_SPI1_OFFSET, BCM2836_SPI1_LENGTH) // QWORDMEMORYSET(16, BCM2836_SPI2_OFFSET, BCM2836_SPI2_LENGTH) // PWM QWORDMEMORYSET(17, BCM2836_PWM_DMA_OFFSET, BCM2836_PWM_DMA_LENGTH) QWORDMEMORYSET(18, BCM2836_PWM_CTRL_OFFSET, BCM2836_PWM_CTRL_LENGTH) QWORDBUSMEMORYSET(19, BCM2836_PWM_BUS_BASE_ADDRESS, BCM2836_PWM_BUS_LENGTH) QWORDBUSMEMORYSET(20, BCM2836_PWM_CTRL_UNCACHED_BASE_ADDRESS, BCM2836_PWM_CTRL_UNCACHED_LENGTH) QWORDMEMORYSET(21, BCM2836_PWM_CLK_OFFSET, BCM2836_PWM_CLK_LENGTH) // UART QWORDMEMORYSET(22, BCM2836_PL011_UART_OFFSET, BCM2836_PL011_UART_LENGTH) QWORDMEMORYSET(23, BCM2836_MINI_UART_OFFSET, BCM2836_MINI_UART_LENGTH) // SDC QWORDMEMORYSET(24, MMCHS1_OFFSET, MMCHS1_LENGTH) QWORDMEMORYSET(25, SDHOST_OFFSET, SDHOST_LENGTH) Return (RBUF) } Name (_DMA, ResourceTemplate() { // // Only the first GB is available. // Bus 0xC0000000 -> CPU 0x00000000. // QWordMemory (ResourceProducer, , MinFixed, MaxFixed, NonCacheable, ReadWrite, 0x0, 0x00000000C0000000, // MIN 0x00000000FFFFFFFF, // MAX 0xFFFFFFFF40000000, // TRA 0x0000000040000000, // LEN , , ) }) #include "gpudevs.asl" } #if defined(CONFIG_TARGET_RPI_4) Device (ETH0) { Name (_HID, "BCM6E4E") Name (_CID, "BCM6E4E") Name (_UID, 0x0) Name (_CCA, 0x0) Method (_CRS, 0x0, Serialized) { Return (ResourceTemplate () { // No need for MEMORY32SETBASE on Genet as we have a straight base address constant MEMORY32FIXED (ReadWrite, GENET_BASE_ADDRESS, GENET_LENGTH, ) Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive) { GENET_INTERRUPT0, GENET_INTERRUPT1 } }) } Name (_DSD, Package () { ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"), Package () { Package () { "brcm,max-dma-burst-size", 0x08 }, Package () { "phy-mode", "rgmii-rxid" }, } }) } // Define a simple thermal zone. The idea here is we compute the SOC temp // via a register we can read, and give it to the OS. This enables basic // reports from the "sensors" utility, and the OS can then poll and take // actions if that temp exceeds any of the given thresholds. Device (EC00) { Name (_HID, EISAID ("PNP0C06")) Name (_CCA, 0x0) // all temps in are tenths of K (aka 2732 is the min temps in Linux (aka 0C)) ThermalZone (TZ00) { OperationRegion (TEMS, SystemMemory, THERM_SENSOR_BASE_ADDRESS, THERM_SENSOR_LENGTH) Field (TEMS, DWordAcc, NoLock, Preserve) { TMPS, 32 } Method (_TMP, 0, Serialized) { return (((410040 - ((TMPS & 0x3ff) * 487)) / 100) + 2732); } Method (_SCP, 3) { } // receive cooling policy from OS Method (_CRT) { Return (3632) } // (90C) Critical temp point (immediate power-off) Method (_HOT) { Return (3582) } // (85C) HOT state where OS should hibernate Method (_PSV) { Return (3532) } // (80C) Passive cooling (CPU throttling) trip point // SSDT inserts _AC0/_AL0 @60C here, if a FAN is configured Name (_TZP, 10) //The OSPM must poll this device every 1 seconds Name (_PSL, Package () { \_PR.CP00, \_PR.CP01, \_PR.CP02, \_PR.CP03 }) } } #endif #include "uart.asl" #include "rhpx.asl" #include "sdhc.asl" #include "emmc.asl" #include "pci.asl" } } |