soc: ti: pruss: Add support for PRU-ICSS subsystems on 66AK2G SoC
authorSuman Anna <s-anna@ti.com>
Sat, 12 Sep 2020 04:43:36 +0000 (21:43 -0700)
committerSantosh Shilimkar <santosh.shilimkar@oracle.com>
Sat, 12 Sep 2020 04:43:36 +0000 (21:43 -0700)
The 66AK2G SoC supports two PRU-ICSS instances, named PRUSS0 and PRUSS1,
each of which has two PRU processor cores. The two PRU-ICSS instances
are identical to each other with few minor SoC integration differences,
and are very similar to the PRU-ICSS1 of AM57xx/AM43xx. The Shared Data
RAM size is larger and the number of interrupts coming into MPU INTC
is like the instances on AM437x. There are also few other differences
attributing to integration in Keystone architecture (like no SYSCFG
register or PRCM handshake protocols). Other IP level differences
include different constant table, differences in system event interrupt
input sources etc. They also do not have a programmable module reset
line like those present on AM33xx/AM43xx SoCs. The modules are reset
just like any other IP with the SoC's global cold/warm resets.

The existing PRUSS platform driver has been enhanced to support these
66AK2G PRU-ICSS instances through new 66AK2G specific compatible for
properly probing and booting all the different PRU cores in each
PRU-ICSS processor subsystem. A build dependency with ARCH_KEYSTONE
is added to enable the driver to be built in K2G-only configuration.

Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Grzegorz Jaszczyk <grzegorz.jaszczyk@linaro.org>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
drivers/soc/ti/Kconfig
drivers/soc/ti/pruss.c

index 99dbc14e0d3e2e374283fddc70c4a71568b02a92..c29034321b50e2c8d6fa8162bad25d2b52607eb1 100644 (file)
@@ -103,7 +103,7 @@ config TI_K3_SOCINFO
 
 config TI_PRUSS
        tristate "TI PRU-ICSS Subsystem Platform drivers"
-       depends on SOC_AM33XX || SOC_AM43XX || SOC_DRA7XX
+       depends on SOC_AM33XX || SOC_AM43XX || SOC_DRA7XX || ARCH_KEYSTONE
        select MFD_SYSCON
        help
          TI PRU-ICSS Subsystem platform specific support.
index 5df4caa4bcf455fe8385f1fbc42a57e62283664a..d5f128ec1e312dc8d86f1b5afbee03588a6fc1e5 100644 (file)
@@ -162,6 +162,7 @@ static const struct of_device_id pruss_of_match[] = {
        { .compatible = "ti,am4376-pruss0", .data = &am437x_pruss0_data, },
        { .compatible = "ti,am4376-pruss1", .data = &am437x_pruss1_data, },
        { .compatible = "ti,am5728-pruss" },
+       { .compatible = "ti,k2g-pruss" },
        {},
 };
 MODULE_DEVICE_TABLE(of, pruss_of_match);