watchdog: mpc8xx: Revert the 8xx watchdog back to CONFIG_HW_WATCHDOG
authorChristophe Leroy <christophe.leroy@c-s.fr>
Thu, 20 Feb 2020 07:39:51 +0000 (07:39 +0000)
committerTom Rini <trini@konsulko.com>
Fri, 28 Feb 2020 15:53:55 +0000 (10:53 -0500)
Commit f3729ba6e7b2 ("watchdog: mpc8xx_wdt: Watchdog driver and macros
cleanup") switched the watchdog to CONFIG_WATCHDOG. But this is not
compatible with the 8xx because it starts the watchdog HW timer at
reset and must be serviced from the very beginning including while
U-boot is executed in the firmware before relocation in RAM.

Select CONFIG_HW_WATCHDOG and make hw_watchdog_reset() visible.

Meanwhile, finalise the cleanup of arch/powerpc/cpu/mpc8xx/Kconfig by
removing the lines put in comment in that commit, and also remove
again the selection of CONFIG_MPC8xx_WATCHDOG which was removed by
that commit and brought back by mistake by commit b3134ffbd944
("watchdog: Kconfig: Sort entry alphabetically")

Note that there was an 'imply WATCHDOG' in the original commit but
it disappeared in the Kconfig alphabetical sorting, so no need to
remove it here.

Fixes: f3729ba6e7b2 ("watchdog: mpc8xx_wdt: Watchdog driver and macros cleanup")
Fixes: b3134ffbd944 ("watchdog: Kconfig: Sort entry alphabetically")
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Cc: Stefan Roese <sr@denx.de>
Cc: Patrice Chotard <patrice.chotard@st.com>
Reviewed-by: Stefan Roese <sr@denx.de>
arch/powerpc/cpu/mpc8xx/Kconfig
drivers/watchdog/Kconfig
drivers/watchdog/mpc8xx_wdt.c

index 3e8ea3852959addb62e032480ddfd45505df0fea..f112317376567b6fbc24c4783b4b6a019a338fc5 100644 (file)
@@ -25,10 +25,6 @@ config MPC885
 
 endchoice
 
-#config MPC8xx_WATCHDOG
-#      bool "Watchdog"
-#      select HW_WATCHDOG
-
 config 8xx_GCLK_FREQ
        int "CPU GCLK Frequency"
 
index 36fbdce55208fda1ce2aa901e8f494a384f09edc..fbb561b995f15e2e378f235afe7dc38354fd683d 100644 (file)
@@ -118,7 +118,7 @@ config WDT_CORTINA
 config WDT_MPC8xx
        bool "MPC8xx watchdog timer support"
        depends on WDT && MPC8xx
-       select CONFIG_MPC8xx_WATCHDOG
+       select HW_WATCHDOG
        help
           Select this to enable mpc8xx watchdog timer
 
index 675b62d8b393ad1562fd56b793551c39ce270bd6..30758aeed4c0acb29d9a22e2942386222b08242c 100644 (file)
@@ -10,7 +10,7 @@
 #include <asm/cpm_8xx.h>
 #include <asm/io.h>
 
-static void hw_watchdog_reset(void)
+void hw_watchdog_reset(void)
 {
        immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;