Re: [RESEND PATCH v2 2/2] samsung: common: do not reset if cros-ec uclass is missing

2023-05-16 Thread Tom Rini
On Tue, May 09, 2023 at 09:05:47PM +0200, Henrik Grimler wrote:

> Otherwise non-ChromeOS samsung devices, like the odroid boards, are
> stuck in a bootloop if CONFIG_CROS_EC is not enabled:
> 
> <...>
> MMC: SAMSUNG SDHCI: 2, EXYNOS DWMMC: 0
> Loading Environment from MMC... *** Warning - bad CRC, using default 
> environment
> 
> cros-ec communications failure -96
> 
> Please reset with Power+Refresh
> 
> Cannot init cros-ec device
> resetting ...
> 
> Issue started after commit e44d7e73fe0d ("dm: core: Switch
> uclass_*_device_err to use uclass_*_device_check").
> 
> Signed-off-by: Henrik Grimler 
> Reviewed-by: Simon Glass 
> Reviewed-by: Minkyu Kang 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[RESEND PATCH v2 2/2] samsung: common: do not reset if cros-ec uclass is missing

2023-05-09 Thread Henrik Grimler
Otherwise non-ChromeOS samsung devices, like the odroid boards, are
stuck in a bootloop if CONFIG_CROS_EC is not enabled:

<...>
MMC: SAMSUNG SDHCI: 2, EXYNOS DWMMC: 0
Loading Environment from MMC... *** Warning - bad CRC, using default 
environment

cros-ec communications failure -96

Please reset with Power+Refresh

Cannot init cros-ec device
resetting ...

Issue started after commit e44d7e73fe0d ("dm: core: Switch
uclass_*_device_err to use uclass_*_device_check").

Signed-off-by: Henrik Grimler 
Reviewed-by: Simon Glass 
Reviewed-by: Minkyu Kang 
---
 board/samsung/common/board.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c
index 16ce5cb89253..663d7ca991bc 100644
--- a/board/samsung/common/board.c
+++ b/board/samsung/common/board.c
@@ -223,7 +223,7 @@ int board_late_init(void)
char mmcbootdev_str[16];
 
ret = uclass_first_device_err(UCLASS_CROS_EC, );
-   if (ret && ret != -ENODEV) {
+   if (ret && ret != -ENODEV && ret != -EPFNOSUPPORT) {
/* Force console on */
gd->flags &= ~GD_FLG_SILENT;
 
-- 
2.30.2



Re: [PATCH v2 2/2] samsung: common: do not reset if cros-ec uclass is missing

2023-02-24 Thread Minkyu Kang
On Mon, 13 Feb 2023 at 23:45, Simon Glass  wrote:

> On Mon, 13 Feb 2023 at 01:08, Henrik Grimler  wrote:
> >
> > Otherwise non-ChromeOS samsung devices, like the odroid boards, are
> > stuck in a bootloop if CONFIG_CROS_EC is not enabled:
> >
> > <...>
> > MMC: SAMSUNG SDHCI: 2, EXYNOS DWMMC: 0
> > Loading Environment from MMC... *** Warning - bad CRC, using default
> environment
> >
> > cros-ec communications failure -96
> >
> > Please reset with Power+Refresh
> >
> > Cannot init cros-ec device
> > resetting ...
> >
> > Issue started after commit e44d7e73fe0d ("dm: core: Switch
> > uclass_*_device_err to use uclass_*_device_check").
> >
> > Signed-off-by: Henrik Grimler 
> > ---
> >  board/samsung/common/board.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
>
> Reviewed-by: Simon Glass 
>

Reviewed-by: Minkyu Kang 

-- 
Thanks,
Minkyu Kang.


Re: [PATCH v2 2/2] samsung: common: do not reset if cros-ec uclass is missing

2023-02-13 Thread Simon Glass
On Mon, 13 Feb 2023 at 01:08, Henrik Grimler  wrote:
>
> Otherwise non-ChromeOS samsung devices, like the odroid boards, are
> stuck in a bootloop if CONFIG_CROS_EC is not enabled:
>
> <...>
> MMC: SAMSUNG SDHCI: 2, EXYNOS DWMMC: 0
> Loading Environment from MMC... *** Warning - bad CRC, using default 
> environment
>
> cros-ec communications failure -96
>
> Please reset with Power+Refresh
>
> Cannot init cros-ec device
> resetting ...
>
> Issue started after commit e44d7e73fe0d ("dm: core: Switch
> uclass_*_device_err to use uclass_*_device_check").
>
> Signed-off-by: Henrik Grimler 
> ---
>  board/samsung/common/board.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass 


[PATCH v2 2/2] samsung: common: do not reset if cros-ec uclass is missing

2023-02-13 Thread Henrik Grimler
Otherwise non-ChromeOS samsung devices, like the odroid boards, are
stuck in a bootloop if CONFIG_CROS_EC is not enabled:

<...>
MMC: SAMSUNG SDHCI: 2, EXYNOS DWMMC: 0
Loading Environment from MMC... *** Warning - bad CRC, using default 
environment

cros-ec communications failure -96

Please reset with Power+Refresh

Cannot init cros-ec device
resetting ...

Issue started after commit e44d7e73fe0d ("dm: core: Switch
uclass_*_device_err to use uclass_*_device_check").

Signed-off-by: Henrik Grimler 
---
 board/samsung/common/board.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c
index 16ce5cb89253..663d7ca991bc 100644
--- a/board/samsung/common/board.c
+++ b/board/samsung/common/board.c
@@ -223,7 +223,7 @@ int board_late_init(void)
char mmcbootdev_str[16];
 
ret = uclass_first_device_err(UCLASS_CROS_EC, );
-   if (ret && ret != -ENODEV) {
+   if (ret && ret != -ENODEV && ret != -EPFNOSUPPORT) {
/* Force console on */
gd->flags &= ~GD_FLG_SILENT;
 
-- 
2.30.2