Skip to content

Commit b20dc02

Browse files
h-nagallamathieupoirier
authored andcommitted
remoteproc: k3-r5: Extend support for R5F clusters on J721S2 SoCs
The K3 J721S2 SoCs have three dual-core R5F subsystems, one in MCU voltage domain and the other two in MAIN voltage domain. These R5F clusters are similar to the R5F clusters in J7200 SoCs. Compatible Info is updated to support J721S2 SoCs. Signed-off-by: Hari Nagalla <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mathieu Poirier <[email protected]>
1 parent 3b918d8 commit b20dc02

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

drivers/remoteproc/ti_k3_r5_remoteproc.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,7 @@ static const struct k3_r5_soc_data am65_j721e_soc_data = {
15351535
.single_cpu_mode = false,
15361536
};
15371537

1538-
static const struct k3_r5_soc_data j7200_soc_data = {
1538+
static const struct k3_r5_soc_data j7200_j721s2_soc_data = {
15391539
.tcm_is_double = true,
15401540
.tcm_ecc_autoinit = true,
15411541
.single_cpu_mode = false,
@@ -1550,8 +1550,9 @@ static const struct k3_r5_soc_data am64_soc_data = {
15501550
static const struct of_device_id k3_r5_of_match[] = {
15511551
{ .compatible = "ti,am654-r5fss", .data = &am65_j721e_soc_data, },
15521552
{ .compatible = "ti,j721e-r5fss", .data = &am65_j721e_soc_data, },
1553-
{ .compatible = "ti,j7200-r5fss", .data = &j7200_soc_data, },
1553+
{ .compatible = "ti,j7200-r5fss", .data = &j7200_j721s2_soc_data, },
15541554
{ .compatible = "ti,am64-r5fss", .data = &am64_soc_data, },
1555+
{ .compatible = "ti,j721s2-r5fss", .data = &j7200_j721s2_soc_data, },
15551556
{ /* sentinel */ },
15561557
};
15571558
MODULE_DEVICE_TABLE(of, k3_r5_of_match);

0 commit comments

Comments
 (0)