Skip to content
Snippets Groups Projects
Commit b5e9b9a9 authored by Michal Simek's avatar Michal Simek
Browse files

microblaze: Do not handle watchdog and gpio in SPL


watchdog and gpio are not validated for SPL that's why do not use them.

Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 4280f502
No related branches found
No related tags found
No related merge requests found
...@@ -69,6 +69,7 @@ int dram_init(void) ...@@ -69,6 +69,7 @@ int dram_init(void)
int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{ {
#ifndef CONFIG_SPL_BUILD
#ifdef CONFIG_XILINX_GPIO #ifdef CONFIG_XILINX_GPIO
if (reset_pin != -1) if (reset_pin != -1)
gpio_direction_output(reset_pin, 1); gpio_direction_output(reset_pin, 1);
...@@ -77,7 +78,7 @@ int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) ...@@ -77,7 +78,7 @@ int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
#ifdef CONFIG_XILINX_TB_WATCHDOG #ifdef CONFIG_XILINX_TB_WATCHDOG
hw_watchdog_disable(); hw_watchdog_disable();
#endif #endif
#endif
puts ("Reseting board\n"); puts ("Reseting board\n");
__asm__ __volatile__ (" mts rmsr, r0;" \ __asm__ __volatile__ (" mts rmsr, r0;" \
"bra r0"); "bra r0");
......
...@@ -97,8 +97,10 @@ ...@@ -97,8 +97,10 @@
#if defined(XILINX_WATCHDOG_BASEADDR) && defined(XILINX_WATCHDOG_IRQ) #if defined(XILINX_WATCHDOG_BASEADDR) && defined(XILINX_WATCHDOG_IRQ)
# define CONFIG_WATCHDOG_BASEADDR XILINX_WATCHDOG_BASEADDR # define CONFIG_WATCHDOG_BASEADDR XILINX_WATCHDOG_BASEADDR
# define CONFIG_WATCHDOG_IRQ XILINX_WATCHDOG_IRQ # define CONFIG_WATCHDOG_IRQ XILINX_WATCHDOG_IRQ
# define CONFIG_HW_WATCHDOG # ifndef CONFIG_SPL_BUILD
# define CONFIG_XILINX_TB_WATCHDOG # define CONFIG_HW_WATCHDOG
# define CONFIG_XILINX_TB_WATCHDOG
# endif
#endif #endif
#if !defined(CONFIG_OF_CONTROL) || \ #if !defined(CONFIG_OF_CONTROL) || \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment