dmaengine: ti: k3-psil-am62: Fix SPI PDMA data
authorRonald Wahl <rwahl@gmx.de>
Mon, 30 Oct 2023 19:01:13 +0000 (20:01 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Jan 2024 16:16:56 +0000 (17:16 +0100)
[ Upstream commit 744f5e7b69710701dc225020769138f8ca2894df ]

AM62x has 3 SPI channels where each channel has 4 TX and 4 RX threads.
This also fixes the thread numbers.

Signed-off-by: Ronald Wahl <ronald.wahl@raritan.com>
Fixes: 5ac6bfb58777 ("dmaengine: ti: k3-psil: Add AM62x PSIL and PDMA data")
Reviewed-by: Jai Luthra <j-luthra@ti.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@gmail.com>
Link: https://lore.kernel.org/r/20231030190113.16782-1-rwahl@gmx.de
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/dma/ti/k3-psil-am62.c

index 2b6fd6e..1272b15 100644 (file)
@@ -74,7 +74,9 @@ static struct psil_ep am62_src_ep_map[] = {
        PSIL_SAUL(0x7505, 21, 35, 8, 36, 0),
        PSIL_SAUL(0x7506, 22, 43, 8, 43, 0),
        PSIL_SAUL(0x7507, 23, 43, 8, 44, 0),
-       /* PDMA_MAIN0 - SPI0-3 */
+       /* PDMA_MAIN0 - SPI0-2 */
+       PSIL_PDMA_XY_PKT(0x4300),
+       PSIL_PDMA_XY_PKT(0x4301),
        PSIL_PDMA_XY_PKT(0x4302),
        PSIL_PDMA_XY_PKT(0x4303),
        PSIL_PDMA_XY_PKT(0x4304),
@@ -85,8 +87,6 @@ static struct psil_ep am62_src_ep_map[] = {
        PSIL_PDMA_XY_PKT(0x4309),
        PSIL_PDMA_XY_PKT(0x430a),
        PSIL_PDMA_XY_PKT(0x430b),
-       PSIL_PDMA_XY_PKT(0x430c),
-       PSIL_PDMA_XY_PKT(0x430d),
        /* PDMA_MAIN1 - UART0-6 */
        PSIL_PDMA_XY_PKT(0x4400),
        PSIL_PDMA_XY_PKT(0x4401),
@@ -141,7 +141,9 @@ static struct psil_ep am62_dst_ep_map[] = {
        /* SAUL */
        PSIL_SAUL(0xf500, 27, 83, 8, 83, 1),
        PSIL_SAUL(0xf501, 28, 91, 8, 91, 1),
-       /* PDMA_MAIN0 - SPI0-3 */
+       /* PDMA_MAIN0 - SPI0-2 */
+       PSIL_PDMA_XY_PKT(0xc300),
+       PSIL_PDMA_XY_PKT(0xc301),
        PSIL_PDMA_XY_PKT(0xc302),
        PSIL_PDMA_XY_PKT(0xc303),
        PSIL_PDMA_XY_PKT(0xc304),
@@ -152,8 +154,6 @@ static struct psil_ep am62_dst_ep_map[] = {
        PSIL_PDMA_XY_PKT(0xc309),
        PSIL_PDMA_XY_PKT(0xc30a),
        PSIL_PDMA_XY_PKT(0xc30b),
-       PSIL_PDMA_XY_PKT(0xc30c),
-       PSIL_PDMA_XY_PKT(0xc30d),
        /* PDMA_MAIN1 - UART0-6 */
        PSIL_PDMA_XY_PKT(0xc400),
        PSIL_PDMA_XY_PKT(0xc401),