diff options
| author | Hai Pham <[email protected]> | 2024-01-28 16:52:05 +0100 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2024-02-10 17:08:06 +0100 |
| commit | c49f9364554893d8e90fa4e9cdfc49014358f334 (patch) | |
| tree | dc44e697bb34d0e5647ca1a4f994aa39d2f28008 | |
| parent | e02ec8cf49d0d4f651f74a0f577d05593e22094c (diff) | |
mtd: spi: renesas: Add R8A779H0 V4M support
Support RPC SPI on R8A779H0 V4M SoC.
Reviewed-by: Paul Barker <[email protected]>
Signed-off-by: Hai Pham <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
| -rw-r--r-- | drivers/spi/renesas_rpc_spi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/spi/renesas_rpc_spi.c b/drivers/spi/renesas_rpc_spi.c index 51c37d72eb6..3eb14061c81 100644 --- a/drivers/spi/renesas_rpc_spi.c +++ b/drivers/spi/renesas_rpc_spi.c @@ -215,7 +215,8 @@ static u32 rpc_spi_get_strobe_delay(void) if (cpu_type == RMOBILE_CPU_TYPE_R8A7796 && rmobile_get_cpu_rev_integer() == 1) return RPC_PHYCNT_STRTIM(6); else if (cpu_type == RMOBILE_CPU_TYPE_R8A779F0 || - cpu_type == RMOBILE_CPU_TYPE_R8A779G0) + cpu_type == RMOBILE_CPU_TYPE_R8A779G0 || + cpu_type == RMOBILE_CPU_TYPE_R8A779H0) return RPC_PHYCNT_STRTIM2(15); else #endif |
