remoteproc: pru: Add support for various PRU cores on K3 AM62x SoCs
authorKishon Vijay Abraham I <kishon@ti.com>
Thu, 2 Jun 2022 10:19:20 +0000 (15:49 +0530)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Tue, 5 Jul 2022 16:40:30 +0000 (10:40 -0600)
The K3 AM62x family of SoC has one PRUSS-M instance and it has two
Programmable Real-Time Units (PRU0 and PRU1). This does not support
Industrial Communications Subsystem features like Ethernet.

Enhance the existing PRU remoteproc driver to support the PRU cores
by using specific compatibles. The initial names for the firmware
images for each PRU core are retrieved from DT nodes, and can be adjusted
through sysfs if required.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Link: https://lore.kernel.org/r/20220602101920.12504-4-kishon@ti.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
drivers/remoteproc/pru_rproc.c

index 1777a01..128bf99 100644 (file)
@@ -897,6 +897,7 @@ static const struct of_device_id pru_rproc_match[] = {
        { .compatible = "ti,j721e-pru",         .data = &k3_pru_data },
        { .compatible = "ti,j721e-rtu",         .data = &k3_rtu_data },
        { .compatible = "ti,j721e-tx-pru",      .data = &k3_tx_pru_data },
+       { .compatible = "ti,am625-pru",         .data = &k3_pru_data },
        {},
 };
 MODULE_DEVICE_TABLE(of, pru_rproc_match);