mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00

The T-Head TH1520 SoC contains multiple power islands that can be programmatically turned on and off using the AON (Always-On) protocol and a hardware mailbox [1]. The relevant mailbox driver has already been merged into the mainline kernel in commit 5d4d263e1c6b ("mailbox: Introduce support for T-head TH1520 Mailbox driver"); Introduce a power-domain driver for the TH1520 SoC, which is using AON firmware protocol to communicate with E902 core through the hardware mailbox. This way it can send power on/off commands to the E902 core. The interaction with AUDIO power island e.g trying to turn it OFF proved to crash the firmware running on the E902 core. Introduce the workaround to disable interacting with the power island. [1] Link: https://openbeagle.org/beaglev-ahead/beaglev-ahead/-/blob/main/docs/TH1520%20System%20User%20Manual.pdf Signed-off-by: Michal Wilczynski <m.wilczynski@samsung.com> Acked-by: Drew Fustini <drew@pdp7.com> Link: https://lore.kernel.org/r/20250311171900.1549916-5-m.wilczynski@samsung.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
21 lines
436 B
Makefile
21 lines
436 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-y += actions/
|
|
obj-y += amlogic/
|
|
obj-y += apple/
|
|
obj-y += arm/
|
|
obj-y += bcm/
|
|
obj-y += imx/
|
|
obj-y += mediatek/
|
|
obj-y += qcom/
|
|
obj-y += renesas/
|
|
obj-y += rockchip/
|
|
obj-y += samsung/
|
|
obj-y += st/
|
|
obj-y += starfive/
|
|
obj-y += sunxi/
|
|
obj-y += tegra/
|
|
obj-y += thead/
|
|
obj-y += ti/
|
|
obj-y += xilinx/
|
|
obj-y += core.o governor.o
|