diff options
author | Sean Rhodes <sean@starlabs.systems> | 2023-02-02 15:01:47 +0000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-04-04 12:43:42 +0000 |
commit | 991e96083f44f6702876b0f9501bd90c00a4f294 (patch) | |
tree | ed97fb176ce08812160e10d9045c498b7a13eeee /src/mainboard/starlabs/starbook | |
parent | 30c9a10c216b0cf12e37680277569f0fce795494 (diff) |
mb/starlabs/starbook/adl: Remove Soundwire workaround
This was added to solve Debian 10 not booting. Debian 10, which
now isn't the latest stable version works, so remove the
workaround that was included in the original port.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: Ic11f355eb218ff3bad00fff83537c99c1b6985bc
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72669
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/starlabs/starbook')
-rw-r--r-- | src/mainboard/starlabs/starbook/acpi/mainboard.asl | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/mainboard/starlabs/starbook/acpi/mainboard.asl b/src/mainboard/starlabs/starbook/acpi/mainboard.asl index 5bdde36bb7..34b90af325 100644 --- a/src/mainboard/starlabs/starbook/acpi/mainboard.asl +++ b/src/mainboard/starlabs/starbook/acpi/mainboard.asl @@ -3,32 +3,3 @@ Scope (\_SB) { #include "sleep.asl" } - -/* - * This platform doesn't support SoundWire but there - * is a kernel bug in some 5.10.x releases. - * - * Debian testing live CD (at 4th Feb 2021) uses 5.10.9-1. More - * details can be found at https://bit.ly/3ttdffG but it appears to - * be triggered by missing SoundWire ACPI entries. - * - * Add the minimal set to make it work again. - */ -Scope (_SB.PCI0.HDAS) -{ - Device (SNDW) - { - Name (_ADR, 0x40000000) - - Name (_CID, Package (0x02) - { - "PRP0001", - "PNP0A05" - }) - - Method (_STA, 0, NotSerialized) - { - Return (0x0B) - } - } -} |