diff options
author | Anshul Dalal <anshuld@ti.com> | 2025-08-14 20:51:43 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-08-25 12:46:33 -0600 |
commit | bd5036ddf2f3d9198f4054fc1a807c8f8960b281 (patch) | |
tree | 62c48731f83f7496706cf694694b1773ec4ef042 /drivers/remoteproc/k3_system_controller.c | |
parent | 03baafe0623b558f3a6b19fad94f34b42abb537a (diff) |
remoteproc: k3: update compatible for am654 syscon
The existing compatible name for U-Boot's k3 system controller driver
i.e "ti,am625-system-controller" has been added to linux[1] device-tree.
This compatible in kernel is meant for configuring the Control Module
registers (CTRL_MMR0).
However in U-Boot, the matching driver was being used to load the system
firmware on the secure M-cores by the R5 SPL and therefore must be
updated to a different compatible to avoid conflicts.
Therefore, this patch renames all references of the compatible to
"ti,am654-tisci-rproc-r5". The "-r5" is appended so as to avoid any
future conflicts since r5 specific compatibles should only be useful for
U-Boot.
[1]: 5959618631fe ("dt-bindings: mfd: ti,j721e-system-controller: Add compatible string for AM654")
https://lore.kernel.org/r/20250421214620.3770172-2-afd@ti.com
Signed-off-by: Anshul Dalal <anshuld@ti.com>
Diffstat (limited to 'drivers/remoteproc/k3_system_controller.c')
-rw-r--r-- | drivers/remoteproc/k3_system_controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/k3_system_controller.c b/drivers/remoteproc/k3_system_controller.c index 71238a6058a..e59c010de7e 100644 --- a/drivers/remoteproc/k3_system_controller.c +++ b/drivers/remoteproc/k3_system_controller.c @@ -327,7 +327,7 @@ static const struct k3_sysctrler_desc k3_sysctrler_am654_desc = { static const struct udevice_id k3_sysctrler_ids[] = { { - .compatible = "ti,am654-system-controller", + .compatible = "ti,am654-tisci-rproc-r5", .data = (ulong)&k3_sysctrler_am654_desc, }, {} |