Re: [PATCH] mx6cuboxi: Convert to watchdog driver model

2024-03-30 Thread Fabio Estevam
On Wed, Mar 27, 2024 at 11:19 AM Fabio Estevam wrote: > > Commit 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()") caused > the 'reset' command in U-Boot to not cause a board reset. > > Fix it by switching to the watchdog driver model via sysreset, which > is the preferred method for impleme

Re: [PATCH] mx6cuboxi: Convert to watchdog driver model

2024-03-27 Thread Christian Gmeiner
On 2024-03-27 14:18, Fabio Estevam wrote: > Commit 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()") caused > the 'reset' command in U-Boot to not cause a board reset. > > Fix it by switching to the watchdog driver model via sysreset, which > is the preferred method for implementing the watc

[PATCH] mx6cuboxi: Convert to watchdog driver model

2024-03-27 Thread Fabio Estevam
Commit 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()") caused the 'reset' command in U-Boot to not cause a board reset. Fix it by switching to the watchdog driver model via sysreset, which is the preferred method for implementing the watchdog reset. Signed-off-by: Fabio Estevam --- Chris