summaryrefslogtreecommitdiff
path: root/drivers/remoteproc/ti_k3_dsp_remoteproc.c
diff options
context:
space:
mode:
authorHari Nagalla <hnagalla@ti.com>2021-11-22 06:27:25 -0600
committerMathieu Poirier <mathieu.poirier@linaro.org>2021-12-01 09:51:30 -0700
commit3b918d8e9bd514d798a82568ef99b8d8ca90c8b8 (patch)
treeed6ed2ffe2649402023fa7e51e0e456b0446a625 /drivers/remoteproc/ti_k3_dsp_remoteproc.c
parent83b57e60b86372d3274ac9baf04219bb497da2d2 (diff)
remoteproc: k3-dsp: Extend support for C71x DSPs on J721S2 SoCs
The K3 J721S2 SoCs have two C71x DSP subsystems in MAIN voltage domain, and there are no C66x DSP subsystems on these SoCs. The C71x DSP subsystem is a slighly updated version of the C71x DSP subsystem on J721e. The C71x DSPs are 64 bit machine with fixed and floating point DSP operations. Extend support to the C71x DSPs with J721S2 compatible strings. Signed-off-by: Hari Nagalla <hnagalla@ti.com> Link: https://lore.kernel.org/r/20211122122726.8532-4-hnagalla@ti.com Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Diffstat (limited to 'drivers/remoteproc/ti_k3_dsp_remoteproc.c')
-rw-r--r--drivers/remoteproc/ti_k3_dsp_remoteproc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/remoteproc/ti_k3_dsp_remoteproc.c b/drivers/remoteproc/ti_k3_dsp_remoteproc.c
index c352fa277c8d..939c5d90b562 100644
--- a/drivers/remoteproc/ti_k3_dsp_remoteproc.c
+++ b/drivers/remoteproc/ti_k3_dsp_remoteproc.c
@@ -767,6 +767,7 @@ static const struct k3_dsp_dev_data c71_data = {
static const struct of_device_id k3_dsp_of_match[] = {
{ .compatible = "ti,j721e-c66-dsp", .data = &c66_data, },
{ .compatible = "ti,j721e-c71-dsp", .data = &c71_data, },
+ { .compatible = "ti,j721s2-c71-dsp", .data = &c71_data, },
{ /* sentinel */ },
};
MODULE_DEVICE_TABLE(of, k3_dsp_of_match);