Re: [PATCH v2] watchdog: Add a watchdog driver for Raspberry Pi boards

2023-01-25 Thread Etienne Dublé
Hi Stefan, +/* The hardware supports a maximum timeout value of 0xf ticks + * (just below 16 seconds). + * U-boot users specify the timeout as a number of milliseconds + * by using variable CONFIG_WATCHDOG_TIMEOUT_MSECS. + * The maximum value should be 15999 ms in our case. + * However, u-bo

[PATCH v2] watchdog: Add a watchdog driver for Raspberry Pi boards

2023-01-24 Thread ETIENNE DUBLE
This driver supports the bcm2835 watchdog found on Raspberry Pi boards. It is derived from the Linux driver and was tested on two Raspberry Pi board versions (B+ and 3B+). Signed-off-by: Etienne Dublé --- Changes for v2: - fixed whitespaces in email - moved a static variable to the priv struct

Re: [PATCH v2] watchdog: Add a watchdog driver for Raspberry Pi boards

2023-01-24 Thread Stefan Roese
Hi Etienne, On 1/24/23 15:55, ETIENNE DUBLE wrote: This driver supports the bcm2835 watchdog found on Raspberry Pi boards. It is derived from the Linux driver and was tested on two Raspberry Pi board versions (B+ and 3B+). Signed-off-by: Etienne Dublé --- Changes for v2: - fixed whitespaces in