diff options
author | Vaishnav Achath <vaishnav.a@ti.com> | 2024-12-18 18:43:38 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-12-31 15:24:26 -0600 |
commit | f5da5b1db7da36d36724d976d5842292e547e7b1 (patch) | |
tree | 0bf65b8aeb2d87994ffd4b4652f5824a0e53df34 | |
parent | a38390284ad4261723d3a2411ba988828e994535 (diff) |
mailbox: k3-sec-proxy: Add DM to DMSC communication thread for J722S
J722S R5 SPL uses sec-proxy threads 28 and 29 for communication with
TIFS. Mark these as valid threads in the driver.
https://software-dl.ti.com/tisci/esd/latest/5_soc_doc/j722s/sec_proxy.html
Signed-off-by: Vaishnav Achath <vaishnav.a@ti.com>
Signed-off-by: Prasanth Babu Mantena <p-mantena@ti.com>
Reviewed-by: Udit Kumar <u-kumar1@ti.com>
-rw-r--r-- | drivers/mailbox/k3-sec-proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mailbox/k3-sec-proxy.c b/drivers/mailbox/k3-sec-proxy.c index 5eafe46fd4d..6f5ad37919f 100644 --- a/drivers/mailbox/k3-sec-proxy.c +++ b/drivers/mailbox/k3-sec-proxy.c @@ -408,7 +408,7 @@ static int k3_sec_proxy_remove(struct udevice *dev) return 0; } -static const u32 am6x_valid_threads[] = { 0, 1, 4, 5, 6, 7, 8, 9, 11, 12, 13, 20, 21, 22, 23 }; +static const u32 am6x_valid_threads[] = { 0, 1, 4, 5, 6, 7, 8, 9, 11, 12, 13, 20, 21, 22, 23, 28, 29 }; static const struct k3_sec_proxy_desc am654_desc = { .thread_count = 90, |