Re: [PATCH] net: ti: am65-cpsw: Cleanup resources before jump to kernel

2022-02-03 Thread Tom Rini
On Fri, Jan 28, 2022 at 11:21:19AM +0530, Vignesh Raghavendra wrote: > In case fastboot over Ethernet, am65_cpsw_stop() is not called unless > DM_FLAG_OS_PREPARE is set. Without call to am65_cpsw_stop(), DMA > resources are not released thus leading to failures in kernel. > Fix this by adding DM_F

Re: [PATCH] net: ti: am65-cpsw: Cleanup resources before jump to kernel

2022-02-03 Thread Ramon Fried
On Fri, Jan 28, 2022 at 7:51 AM Vignesh Raghavendra wrote: > > In case fastboot over Ethernet, am65_cpsw_stop() is not called unless > DM_FLAG_OS_PREPARE is set. Without call to am65_cpsw_stop(), DMA > resources are not released thus leading to failures in kernel. > Fix this by adding DM_FLAG_OS_P

[PATCH] net: ti: am65-cpsw: Cleanup resources before jump to kernel

2022-01-27 Thread Vignesh Raghavendra
In case fastboot over Ethernet, am65_cpsw_stop() is not called unless DM_FLAG_OS_PREPARE is set. Without call to am65_cpsw_stop(), DMA resources are not released thus leading to failures in kernel. Fix this by adding DM_FLAG_OS_PREPARE flag to am65_cpsw_nuss_port driver. Reported-by: Christian Gme