Re: [PATCH v2 07/11] mtd: spi: renesas: Add R8A779H0 V4M support

2024-01-29 Thread Jagan Teki
On Sun, Jan 28, 2024 at 9:25 PM Marek Vasut
 wrote:
>
> From: Hai Pham 
>
> Support RPC SPI on R8A779H0 V4M SoC.
>
> Reviewed-by: Paul Barker 
> Signed-off-by: Hai Pham 
> ---
> Cc: Jagan Teki 
> Cc: Paul Barker 
> ---

Reviewed-by: Jagan Teki 


Re: [PATCH v2 07/11] mtd: spi: renesas: Add R8A779H0 V4M support

2024-01-29 Thread Marek Vasut

On 1/29/24 14:30, Jagan Teki wrote:

On Mon, Jan 29, 2024 at 6:57 PM Marek Vasut  wrote:


On 1/29/24 12:52, Jagan Teki wrote:

On Sun, Jan 28, 2024 at 9:25 PM Marek Vasut
 wrote:


From: Hai Pham 

Support RPC SPI on R8A779H0 V4M SoC.

Reviewed-by: Paul Barker 
Signed-off-by: Hai Pham 
---
Cc: Jagan Teki 
Cc: Paul Barker 
---


Applied to u-boot-spi/master


I don't think this will build without 06/11 macro addition, so I'll pull
this via u-boot-sh tree if that's OK with you ?

I could use a RB though .


Yeah. Got the runner failure. Please proceed to pick this vi -sh


Can you provide an RB ?

Thanks


Re: [PATCH v2 07/11] mtd: spi: renesas: Add R8A779H0 V4M support

2024-01-29 Thread Jagan Teki
On Mon, Jan 29, 2024 at 6:57 PM Marek Vasut  wrote:
>
> On 1/29/24 12:52, Jagan Teki wrote:
> > On Sun, Jan 28, 2024 at 9:25 PM Marek Vasut
> >  wrote:
> >>
> >> From: Hai Pham 
> >>
> >> Support RPC SPI on R8A779H0 V4M SoC.
> >>
> >> Reviewed-by: Paul Barker 
> >> Signed-off-by: Hai Pham 
> >> ---
> >> Cc: Jagan Teki 
> >> Cc: Paul Barker 
> >> ---
> >
> > Applied to u-boot-spi/master
>
> I don't think this will build without 06/11 macro addition, so I'll pull
> this via u-boot-sh tree if that's OK with you ?
>
> I could use a RB though .

Yeah. Got the runner failure. Please proceed to pick this vi -sh

Thanks,
Jagan.


Re: [PATCH v2 07/11] mtd: spi: renesas: Add R8A779H0 V4M support

2024-01-29 Thread Marek Vasut

On 1/29/24 12:52, Jagan Teki wrote:

On Sun, Jan 28, 2024 at 9:25 PM Marek Vasut
 wrote:


From: Hai Pham 

Support RPC SPI on R8A779H0 V4M SoC.

Reviewed-by: Paul Barker 
Signed-off-by: Hai Pham 
---
Cc: Jagan Teki 
Cc: Paul Barker 
---


Applied to u-boot-spi/master


I don't think this will build without 06/11 macro addition, so I'll pull 
this via u-boot-sh tree if that's OK with you ?


I could use a RB though .


Re: [PATCH v2 07/11] mtd: spi: renesas: Add R8A779H0 V4M support

2024-01-29 Thread Jagan Teki
On Sun, Jan 28, 2024 at 9:25 PM Marek Vasut
 wrote:
>
> From: Hai Pham 
>
> Support RPC SPI on R8A779H0 V4M SoC.
>
> Reviewed-by: Paul Barker 
> Signed-off-by: Hai Pham 
> ---
> Cc: Jagan Teki 
> Cc: Paul Barker 
> ---

Applied to u-boot-spi/master


[PATCH v2 07/11] mtd: spi: renesas: Add R8A779H0 V4M support

2024-01-28 Thread Marek Vasut
From: Hai Pham 

Support RPC SPI on R8A779H0 V4M SoC.

Reviewed-by: Paul Barker 
Signed-off-by: Hai Pham 
---
Cc: Jagan Teki 
Cc: Paul Barker 
---
V2: - Move the patch after PRR ID patch to satisfy macro dependency
- Add RB from Paul
---
 drivers/spi/renesas_rpc_spi.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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
-- 
2.43.0