cyclic: Use schedule() instead of WATCHDOG_RESET()

Globally replace all occurances of WATCHDOG_RESET() with schedule(),
which handles the HW_WATCHDOG functionality and the cyclic
infrastructure.

Signed-off-by: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Tom Rini <trini@konsulko.com> [am335x_evm, mx6cuboxi, rpi_3,dra7xx_evm, pine64_plus, am65x_evm, j721e_evm]
This commit is contained in:
Stefan Roese 2022-09-02 14:10:46 +02:00
parent 881d410825
commit 29caf9305b
103 changed files with 235 additions and 241 deletions

View file

@ -42,7 +42,7 @@ void at91_phy_reset(void)
/* Wait for end of hardware reset */ /* Wait for end of hardware reset */
while (!(readl(&rstc->sr) & AT91_RSTC_SR_NRSTL)) { while (!(readl(&rstc->sr) & AT91_RSTC_SR_NRSTL)) {
/* avoid shutdown by watchdog */ /* avoid shutdown by watchdog */
WATCHDOG_RESET(); schedule();
mdelay(10); mdelay(10);
/* timeout for not getting stuck in an endless loop */ /* timeout for not getting stuck in an endless loop */

View file

@ -46,7 +46,7 @@ int force_idle_bus(void *priv)
scl = gpio_get_value(p->scl.gp); scl = gpio_get_value(p->scl.gp);
if ((sda & scl) == 1) if ((sda & scl) == 1)
break; break;
WATCHDOG_RESET(); schedule();
elapsed = get_timer(start_time); elapsed = get_timer(start_time);
if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */ if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */
ret = -EBUSY; ret = -EBUSY;

View file

@ -117,7 +117,7 @@ void spl_board_init(void)
/* enable console uart printing */ /* enable console uart printing */
preloader_console_init(); preloader_console_init();
WATCHDOG_RESET(); schedule();
arch_early_init_r(); arch_early_init_r();
@ -203,7 +203,7 @@ void spl_board_init(void)
*/ */
set_regular_boot(true); set_regular_boot(true);
WATCHDOG_RESET(); schedule();
reset_cpu(); reset_cpu();
} }
@ -268,11 +268,11 @@ void board_init_f(ulong dummy)
/* reconfigure and enable the watchdog */ /* reconfigure and enable the watchdog */
hw_watchdog_init(); hw_watchdog_init();
WATCHDOG_RESET(); schedule();
#endif /* CONFIG_HW_WATCHDOG */ #endif /* CONFIG_HW_WATCHDOG */
config_dedicated_pins(gd->fdt_blob); config_dedicated_pins(gd->fdt_blob);
WATCHDOG_RESET(); schedule();
} }
/* board specific function prior loading SSBL / U-Boot proper */ /* board specific function prior loading SSBL / U-Boot proper */

View file

@ -247,7 +247,7 @@ static int stm32prog_serial_getc_err(void)
err = ops->getc(down_serial_dev); err = ops->getc(down_serial_dev);
if (err == -EAGAIN) { if (err == -EAGAIN) {
ctrlc(); ctrlc();
WATCHDOG_RESET(); schedule();
} }
} while ((err == -EAGAIN) && (!had_ctrlc())); } while ((err == -EAGAIN) && (!had_ctrlc()));
@ -276,7 +276,7 @@ static bool stm32prog_serial_get_buffer(u8 *buffer, u32 *count)
*count -= 1; *count -= 1;
} else if (err == -EAGAIN) { } else if (err == -EAGAIN) {
ctrlc(); ctrlc();
WATCHDOG_RESET(); schedule();
if (get_timer(start) > TIMEOUT_SERIAL_BUFFER) { if (get_timer(start) > TIMEOUT_SERIAL_BUFFER) {
err = -ETIMEDOUT; err = -ETIMEDOUT;
break; break;
@ -852,7 +852,7 @@ bool stm32prog_serial_loop(struct stm32prog_data *data)
stm32prog_serial_result(ACK_BYTE); stm32prog_serial_result(ACK_BYTE);
cmd_func[counter](data); cmd_func[counter](data);
} }
WATCHDOG_RESET(); schedule();
} }
/* clean device */ /* clean device */

View file

@ -72,7 +72,7 @@ void dtimer_interrupt(void *not_used)
#if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG) #if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
if (CONFIG_SYS_WATCHDOG_FREQ && (timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) { if (CONFIG_SYS_WATCHDOG_FREQ && (timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) {
WATCHDOG_RESET (); schedule();
} }
#endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */ #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
return; return;

View file

@ -31,7 +31,7 @@ void cpu_init_f(immap_t __iomem *immr)
out_be32(&immr->im_siu_conf.sc_sypcr, CONFIG_SYS_SYPCR & ~SYPCR_SWE); out_be32(&immr->im_siu_conf.sc_sypcr, CONFIG_SYS_SYPCR & ~SYPCR_SWE);
#endif #endif
WATCHDOG_RESET(); schedule();
/* SIUMCR - contains debug pin configuration (11-6) */ /* SIUMCR - contains debug pin configuration (11-6) */
setbits_be32(&immr->im_siu_conf.sc_siumcr, CONFIG_SYS_SIUMCR); setbits_be32(&immr->im_siu_conf.sc_siumcr, CONFIG_SYS_SIUMCR);

View file

@ -84,7 +84,7 @@ static void boot_jump_linux(bootm_headers_t *images)
* r9: 0 * r9: 0
*/ */
debug(" Booting using OF flat tree...\n"); debug(" Booting using OF flat tree...\n");
WATCHDOG_RESET (); schedule();
(*kernel) ((struct bd_info *)of_flat_tree, 0, 0, EPAPR_MAGIC, (*kernel) ((struct bd_info *)of_flat_tree, 0, 0, EPAPR_MAGIC,
env_get_bootm_mapsize(), 0, 0); env_get_bootm_mapsize(), 0, 0);
/* does not return */ /* does not return */
@ -108,7 +108,7 @@ static void boot_jump_linux(bootm_headers_t *images)
struct bd_info *kbd = images->kbd; struct bd_info *kbd = images->kbd;
debug(" Booting using board info...\n"); debug(" Booting using board info...\n");
WATCHDOG_RESET (); schedule();
(*kernel) (kbd, initrd_start, initrd_end, (*kernel) (kbd, initrd_start, initrd_end,
cmd_start, cmd_end, 0, 0); cmd_start, cmd_end, 0, 0);
/* does not return */ /* does not return */
@ -319,7 +319,7 @@ void boot_jump_vxworks(bootm_headers_t *images)
* r9: 0 * r9: 0
* TCR: WRC = 0, no watchdog timer reset will occur * TCR: WRC = 0, no watchdog timer reset will occur
*/ */
WATCHDOG_RESET(); schedule();
((void (*)(void *, ulong, ulong, ulong, ((void (*)(void *, ulong, ulong, ulong,
ulong, ulong, ulong))images->ep)(images->ft_addr, ulong, ulong, ulong))images->ep)(images->ft_addr,

View file

@ -13,7 +13,7 @@ static ulong maybe_watchdog_reset(ulong flushed)
{ {
flushed += CONFIG_SYS_CACHELINE_SIZE; flushed += CONFIG_SYS_CACHELINE_SIZE;
if (flushed >= CONFIG_CACHE_FLUSH_WATCHDOG_THRESHOLD) { if (flushed >= CONFIG_CACHE_FLUSH_WATCHDOG_THRESHOLD) {
WATCHDOG_RESET(); schedule();
flushed = 0; flushed = 0;
} }
return flushed; return flushed;

View file

@ -81,7 +81,7 @@ void timer_interrupt(struct pt_regs *regs)
#if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG) #if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
if (CONFIG_SYS_WATCHDOG_FREQ && (timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) if (CONFIG_SYS_WATCHDOG_FREQ && (timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0)
WATCHDOG_RESET (); schedule();
#endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */ #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
#ifdef CONFIG_LED_STATUS #ifdef CONFIG_LED_STATUS

View file

@ -123,7 +123,7 @@ int altera_write_fn(const void *buf, size_t len, int flush, int cookie)
if (bytecount % len_40 == 0) { if (bytecount % len_40 == 0) {
#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
WATCHDOG_RESET(); schedule();
#endif #endif
#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
putc('.'); /* let them know we are alive */ putc('.'); /* let them know we are alive */
@ -343,7 +343,7 @@ int xilinx_fastwr_config_fn(void *buf, size_t len, int flush, int cookie)
} }
if (bytecount % len_40 == 0) { if (bytecount % len_40 == 0) {
#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
WATCHDOG_RESET(); schedule();
#endif #endif
#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
putc('.'); /* let them know we are alive */ putc('.'); /* let them know we are alive */

View file

@ -423,7 +423,7 @@ static void __maybe_unused led_error_blink(u32 nb_blink)
for (i = 0; i < 2 * nb_blink; i++) { for (i = 0; i < 2 * nb_blink; i++) {
led_set_state(led, LEDST_TOGGLE); led_set_state(led, LEDST_TOGGLE);
mdelay(125); mdelay(125);
WATCHDOG_RESET(); schedule();
} }
} }
#endif #endif

View file

@ -329,7 +329,7 @@ void board_init_f(ulong dummy)
/* Initialize and reset WDT in SPL */ /* Initialize and reset WDT in SPL */
#ifdef CONFIG_SPL_WATCHDOG #ifdef CONFIG_SPL_WATCHDOG
hw_watchdog_init(); hw_watchdog_init();
WATCHDOG_RESET(); schedule();
#endif #endif
/* load/boot image from boot device */ /* load/boot image from boot device */

View file

@ -722,7 +722,7 @@ static int rx51_kp_getc(struct udevice *dev)
{ {
keybuf_head %= KEYBUF_SIZE; keybuf_head %= KEYBUF_SIZE;
while (!rx51_kp_tstc(dev)) while (!rx51_kp_tstc(dev))
WATCHDOG_RESET(); schedule();
return keybuf[keybuf_head++]; return keybuf[keybuf_head++];
} }

View file

@ -289,7 +289,7 @@ static void __maybe_unused led_error_blink(u32 nb_blink)
for (i = 0; i < 2 * nb_blink; i++) { for (i = 0; i < 2 * nb_blink; i++) {
led_set_state(led, LEDST_TOGGLE); led_set_state(led, LEDST_TOGGLE);
mdelay(125); mdelay(125);
WATCHDOG_RESET(); schedule();
} }
led_set_state(led, LEDST_ON); led_set_state(led, LEDST_ON);
} }

View file

@ -44,7 +44,7 @@ int bootretry_tstc_timeout(void)
while (!tstc()) { /* while no incoming data */ while (!tstc()) { /* while no incoming data */
if (retry_time >= 0 && get_ticks() > endtime) if (retry_time >= 0 && get_ticks() > endtime)
return -ETIMEDOUT; return -ETIMEDOUT;
WATCHDOG_RESET(); schedule();
} }
return 0; return 0;

View file

@ -181,7 +181,7 @@ void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
while (len > 0) { while (len > 0) {
size_t tail = (len > chunksz) ? chunksz : len; size_t tail = (len > chunksz) ? chunksz : len;
WATCHDOG_RESET(); schedule();
if (to > from) { if (to > from) {
to -= tail; to -= tail;
from -= tail; from -= tail;

View file

@ -76,7 +76,7 @@ static int do_fastboot_usb(int argc, char *const argv[],
break; break;
if (ctrlc()) if (ctrlc())
break; break;
WATCHDOG_RESET(); schedule();
usb_gadget_handle_interrupts(controller_index); usb_gadget_handle_interrupts(controller_index);
} }

View file

@ -300,7 +300,7 @@ static int do_mem_cmp(struct cmd_tbl *cmdtp, int flag, int argc,
/* reset watchdog from time to time */ /* reset watchdog from time to time */
if ((ngood % (64 << 10)) == 0) if ((ngood % (64 << 10)) == 0)
WATCHDOG_RESET(); schedule();
} }
unmap_sysmem(buf1); unmap_sysmem(buf1);
unmap_sysmem(buf2); unmap_sysmem(buf2);
@ -848,7 +848,7 @@ static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr,
} }
} }
addr[test_offset] = pattern; addr[test_offset] = pattern;
WATCHDOG_RESET(); schedule();
/* /*
* Check for addr bits stuck low or shorted. * Check for addr bits stuck low or shorted.
@ -890,7 +890,7 @@ static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr,
* Fill memory with a known pattern. * Fill memory with a known pattern.
*/ */
for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) { for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
WATCHDOG_RESET(); schedule();
addr[offset] = pattern; addr[offset] = pattern;
} }
@ -898,7 +898,7 @@ static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr,
* Check each location and invert it for the second pass. * Check each location and invert it for the second pass.
*/ */
for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) { for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
WATCHDOG_RESET(); schedule();
temp = addr[offset]; temp = addr[offset];
if (temp != pattern) { if (temp != pattern) {
printf("\nFAILURE (read/write) @ 0x%.8lx:" printf("\nFAILURE (read/write) @ 0x%.8lx:"
@ -918,7 +918,7 @@ static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr,
* Check each location for the inverted pattern and zero it. * Check each location for the inverted pattern and zero it.
*/ */
for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) { for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
WATCHDOG_RESET(); schedule();
anti_pattern = ~pattern; anti_pattern = ~pattern;
temp = addr[offset]; temp = addr[offset];
if (temp != anti_pattern) { if (temp != anti_pattern) {
@ -972,7 +972,7 @@ static ulong test_bitflip_comparison(volatile unsigned long *bufa,
for (k = 0; k < max; k++) { for (k = 0; k < max; k++) {
q = 0x00000001L << k; q = 0x00000001L << k;
for (j = 0; j < 8; j++) { for (j = 0; j < 8; j++) {
WATCHDOG_RESET(); schedule();
q = ~q; q = ~q;
p1 = (volatile unsigned long *)bufa; p1 = (volatile unsigned long *)bufa;
p2 = (volatile unsigned long *)bufb; p2 = (volatile unsigned long *)bufb;
@ -1033,7 +1033,7 @@ static ulong mem_test_quick(vu_long *buf, ulong start_addr, ulong end_addr,
pattern, ""); pattern, "");
for (addr = buf, val = pattern; addr < end; addr++) { for (addr = buf, val = pattern; addr < end; addr++) {
WATCHDOG_RESET(); schedule();
*addr = val; *addr = val;
val += incr; val += incr;
} }
@ -1041,7 +1041,7 @@ static ulong mem_test_quick(vu_long *buf, ulong start_addr, ulong end_addr,
puts("Reading..."); puts("Reading...");
for (addr = buf, val = pattern; addr < end; addr++) { for (addr = buf, val = pattern; addr < end; addr++) {
WATCHDOG_RESET(); schedule();
readback = *addr; readback = *addr;
if (readback != val) { if (readback != val) {
ulong offset = addr - buf; ulong offset = addr - buf;

View file

@ -231,7 +231,7 @@ static int do_usb_mass_storage(struct cmd_tbl *cmdtp, int flag,
goto cleanup_register; goto cleanup_register;
} }
WATCHDOG_RESET(); schedule();
} }
cleanup_register: cleanup_register:

View file

@ -200,7 +200,7 @@ do_imgextract(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
while (l > 0) { while (l > 0) {
tail = (l > CHUNKSZ) ? CHUNKSZ : l; tail = (l > CHUNKSZ) ? CHUNKSZ : l;
WATCHDOG_RESET(); schedule();
memmove(to, from, tail); memmove(to, from, tail);
to += tail; to += tail;
from += tail; from += tail;

View file

@ -114,14 +114,14 @@ static int init_func_watchdog_init(void)
hw_watchdog_init(); hw_watchdog_init();
puts(" Watchdog enabled\n"); puts(" Watchdog enabled\n");
# endif # endif
WATCHDOG_RESET(); schedule();
return 0; return 0;
} }
int init_func_watchdog_reset(void) int init_func_watchdog_reset(void)
{ {
WATCHDOG_RESET(); schedule();
return 0; return 0;
} }

View file

@ -341,7 +341,7 @@ static int initr_flash(void)
/* /*
* Compute and print flash CRC if flashchecksum is set to 'y' * Compute and print flash CRC if flashchecksum is set to 'y'
* *
* NOTE: Maybe we should add some WATCHDOG_RESET()? XXX * NOTE: Maybe we should add some schedule()? XXX
*/ */
if (env_get_yesno("flashchecksum") == 1) { if (env_get_yesno("flashchecksum") == 1) {
const uchar *flash_base = (const uchar *)CONFIG_SYS_FLASH_BASE; const uchar *flash_base = (const uchar *)CONFIG_SYS_FLASH_BASE;

View file

@ -274,7 +274,7 @@ static int cread_line(const char *const prompt, char *buf, unsigned int *len,
while (!tstc()) { /* while no incoming data */ while (!tstc()) { /* while no incoming data */
if (get_ticks() >= etime) if (get_ticks() >= etime)
return -2; /* timed out */ return -2; /* timed out */
WATCHDOG_RESET(); schedule();
} }
first = 0; first = 0;
} }
@ -595,7 +595,7 @@ int cli_readline_into_buffer(const char *const prompt, char *buffer,
for (;;) { for (;;) {
if (bootretry_tstc_timeout()) if (bootretry_tstc_timeout())
return -2; /* timed out */ return -2; /* timed out */
WATCHDOG_RESET(); /* Trigger watchdog, if needed */ schedule(); /* Trigger watchdog, if needed */
c = getchar(); c = getchar();

View file

@ -480,7 +480,7 @@ int fgetc(int file)
* Effectively poll for input wherever it may be available. * Effectively poll for input wherever it may be available.
*/ */
for (;;) { for (;;) {
WATCHDOG_RESET(); schedule();
if (CONFIG_IS_ENABLED(CONSOLE_MUX)) { if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
/* /*
* Upper layer may have already called tstc() so * Upper layer may have already called tstc() so

View file

@ -101,7 +101,7 @@ int run_usb_dnl_gadget(int usbctrl_index, char *usb_dnl_gadget)
if (dfu_reinit_needed) if (dfu_reinit_needed)
goto exit; goto exit;
WATCHDOG_RESET(); schedule();
usb_gadget_handle_interrupts(usbctrl_index); usb_gadget_handle_interrupts(usbctrl_index);
} }
exit: exit:

View file

@ -294,9 +294,9 @@ void lcd_logo_plot(int x, int y)
BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS); BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS);
if (bpix < 12) { if (bpix < 12) {
WATCHDOG_RESET(); schedule();
lcd_logo_set_cmap(); lcd_logo_set_cmap();
WATCHDOG_RESET(); schedule();
for (i = 0; i < BMP_LOGO_HEIGHT; ++i) { for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
memcpy(fb, bmap, BMP_LOGO_WIDTH); memcpy(fb, bmap, BMP_LOGO_WIDTH);
@ -320,7 +320,7 @@ void lcd_logo_plot(int x, int y)
} }
} }
WATCHDOG_RESET(); schedule();
lcd_sync(); lcd_sync();
} }
#else #else
@ -459,7 +459,7 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y)
byte_width = width * 2; byte_width = width * 2;
for (i = 0; i < height; ++i) { for (i = 0; i < height; ++i) {
WATCHDOG_RESET(); schedule();
for (j = 0; j < width; j++) { for (j = 0; j < width; j++) {
if (bpix != 16) { if (bpix != 16) {
fb_put_byte(&fb, &bmap); fb_put_byte(&fb, &bmap);
@ -488,7 +488,7 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y)
#if defined(CONFIG_BMP_16BPP) #if defined(CONFIG_BMP_16BPP)
case 16: case 16:
for (i = 0; i < height; ++i) { for (i = 0; i < height; ++i) {
WATCHDOG_RESET(); schedule();
for (j = 0; j < width; j++) for (j = 0; j < width; j++)
fb_put_word(&fb, &bmap); fb_put_word(&fb, &bmap);

View file

@ -435,7 +435,7 @@ void bootmenu_autoboot_loop(struct bootmenu_data *menu,
printf("Hit any key to stop autoboot: %d ", menu->delay); printf("Hit any key to stop autoboot: %d ", menu->delay);
for (i = 0; i < 100; ++i) { for (i = 0; i < 100; ++i) {
if (!tstc()) { if (!tstc()) {
WATCHDOG_RESET(); schedule();
mdelay(10); mdelay(10);
continue; continue;
} }
@ -483,7 +483,7 @@ void bootmenu_loop(struct bootmenu_data *menu,
if (tstc()) { if (tstc()) {
c = getchar(); c = getchar();
} else { } else {
WATCHDOG_RESET(); schedule();
mdelay(10); mdelay(10);
if (tstc()) if (tstc())
c = getchar(); c = getchar();
@ -492,7 +492,7 @@ void bootmenu_loop(struct bootmenu_data *menu,
} }
} else { } else {
while (!tstc()) { while (!tstc()) {
WATCHDOG_RESET(); schedule();
mdelay(10); mdelay(10);
} }
c = getchar(); c = getchar();

View file

@ -446,7 +446,7 @@ static int usb_kbd_getc(struct stdio_dev *sdev)
data = usb_kbd_dev->privptr; data = usb_kbd_dev->privptr;
while (data->usb_in_pointer == data->usb_out_pointer) { while (data->usb_in_pointer == data->usb_out_pointer) {
WATCHDOG_RESET(); schedule();
usb_kbd_poll_for_event(usb_kbd_dev); usb_kbd_poll_for_event(usb_kbd_dev);
} }

View file

@ -68,7 +68,7 @@ CYGACC_COMM_IF_GETC_TIMEOUT (char chan, char *c)
{ {
ulong now = get_timer(0); ulong now = get_timer(0);
WATCHDOG_RESET(); schedule();
while (!tstc ()) while (!tstc ())
{ {
if (get_timer(now) > xyzModem_CHAR_TIMEOUT) if (get_timer(now) > xyzModem_CHAR_TIMEOUT)

View file

@ -62,7 +62,7 @@ static void ide_reset(void)
/* the reset signal shall be asserted for et least 25 us */ /* the reset signal shall be asserted for et least 25 us */
udelay(25); udelay(25);
WATCHDOG_RESET(); schedule();
/* de-assert RESET signal */ /* de-assert RESET signal */
ide_set_reset(0); ide_set_reset(0);
@ -695,7 +695,7 @@ void ide_init(void)
unsigned char c; unsigned char c;
int i, bus; int i, bus;
WATCHDOG_RESET(); schedule();
/* ATAPI Drives seems to need a proper IDE Reset */ /* ATAPI Drives seems to need a proper IDE Reset */
ide_reset(); ide_reset();
@ -745,7 +745,7 @@ void ide_init(void)
puts("OK "); puts("OK ");
ide_bus_ok[bus] = 1; ide_bus_ok[bus] = 1;
} }
WATCHDOG_RESET(); schedule();
} }
putc('\n'); putc('\n');
@ -775,7 +775,7 @@ void ide_init(void)
} }
#endif #endif
} }
WATCHDOG_RESET(); schedule();
#ifdef CONFIG_BLK #ifdef CONFIG_BLK
struct udevice *dev; struct udevice *dev;

View file

@ -302,7 +302,7 @@ static int aspeed_hace_digest_wd(struct udevice *dev, enum HASH_ALGO algo,
return rc; return rc;
cur += chunk; cur += chunk;
WATCHDOG_RESET(); schedule();
} }
} else { } else {
rc = aspeed_hace_update(dev, ctx, ibuf, ilen); rc = aspeed_hace_update(dev, ctx, ibuf, ilen);

View file

@ -258,7 +258,7 @@ static int sw_hash_digest_wd(struct udevice *dev, enum HASH_ALGO algo,
return rc; return rc;
cur += chunk; cur += chunk;
WATCHDOG_RESET(); schedule();
} }
} else { } else {
rc = sw_hash_update(dev, ctx, ibuf, ilen); rc = sw_hash_update(dev, ctx, ibuf, ilen);

View file

@ -671,7 +671,7 @@ static int of_sdram_firewall_setup(const void *blob)
int ddr_calibration_sequence(void) int ddr_calibration_sequence(void)
{ {
WATCHDOG_RESET(); schedule();
/* Check to see if SDRAM cal was success */ /* Check to see if SDRAM cal was success */
if (sdram_startup()) { if (sdram_startup()) {
@ -681,7 +681,7 @@ int ddr_calibration_sequence(void)
puts("DDRCAL: Success\n"); puts("DDRCAL: Success\n");
WATCHDOG_RESET(); schedule();
/* initialize the MMR register */ /* initialize the MMR register */
sdram_mmr_init(); sdram_mmr_init();

View file

@ -517,7 +517,7 @@ static int ensure_retry_procedure_complete(phys_addr_t umctl2_base)
DDR4_CRCPARSTAT_CMD_IN_ERR_WINDOW; DDR4_CRCPARSTAT_CMD_IN_ERR_WINDOW;
udelay(1); udelay(1);
WATCHDOG_RESET(); schedule();
} }
return 0; return 0;
@ -1349,7 +1349,7 @@ static int ddr_post_handoff_config(phys_addr_t umctl2_base,
} }
udelay(1); udelay(1);
WATCHDOG_RESET(); schedule();
/* Polling until SDRAM entered normal operating mode */ /* Polling until SDRAM entered normal operating mode */
value = readl(umctl2_base + DDR4_STAT_OFFSET) & value = readl(umctl2_base + DDR4_STAT_OFFSET) &

View file

@ -161,7 +161,7 @@ void sdram_init_ecc_bits(struct bd_info *bd)
sdram_clear_mem(start_addr, size_init); sdram_clear_mem(start_addr, size_init);
size -= size_init; size -= size_init;
start_addr += size_init; start_addr += size_init;
WATCHDOG_RESET(); schedule();
} }
bank++; bank++;

View file

@ -44,7 +44,7 @@ static int reconfig_status_polling_resp(void)
puts("."); puts(".");
udelay(RECONFIG_STATUS_INTERVAL_DELAY_US); udelay(RECONFIG_STATUS_INTERVAL_DELAY_US);
WATCHDOG_RESET(); schedule();
} }
return -ETIMEDOUT; return -ETIMEDOUT;
@ -104,7 +104,7 @@ static int send_bitstream(const void *rbf_data, size_t rbf_size)
udelay(20000); udelay(20000);
} }
WATCHDOG_RESET(); schedule();
} }
return 0; return 0;
@ -252,7 +252,7 @@ static int reconfig_status_polling_resp(void)
puts("."); puts(".");
udelay(RECONFIG_STATUS_INTERVAL_DELAY_US); udelay(RECONFIG_STATUS_INTERVAL_DELAY_US);
WATCHDOG_RESET(); schedule();
} }
return -ETIMEDOUT; return -ETIMEDOUT;
@ -378,7 +378,7 @@ static int send_reconfig_data(const void *rbf_data, size_t rbf_size,
if (resp_err && !xfer_count) if (resp_err && !xfer_count)
return resp_err; return resp_err;
} }
WATCHDOG_RESET(); schedule();
} }
return 0; return 0;

View file

@ -383,7 +383,7 @@ static int fpgamgr_program_poll_cd(void)
printf("nstatus == 0 while waiting for condone\n"); printf("nstatus == 0 while waiting for condone\n");
return -EPERM; return -EPERM;
} }
WATCHDOG_RESET(); schedule();
} }
if (i == FPGA_TIMEOUT_CNT) if (i == FPGA_TIMEOUT_CNT)
@ -534,7 +534,7 @@ static void get_rbf_image_info(struct rbf_info *rbf, u16 *buffer)
rbf->section = unknown; rbf->section = unknown;
break; break;
WATCHDOG_RESET(); schedule();
} }
} }
@ -635,7 +635,7 @@ static int first_loading_rbf_to_buffer(struct udevice *dev,
break; break;
} }
} }
WATCHDOG_RESET(); schedule();
} }
if (!fpga_node_name) { if (!fpga_node_name) {
@ -879,7 +879,7 @@ int socfpga_loadfs(fpga_fs_info *fpga_fsinfo, const void *buf, size_t bsize,
total_sizeof_image += buffer_sizebytes_ori; total_sizeof_image += buffer_sizebytes_ori;
WATCHDOG_RESET(); schedule();
} }
wait_for_fifo_empty(); wait_for_fifo_empty();

View file

@ -199,7 +199,7 @@ static int wait_for_sr_state(struct mxc_i2c_bus *i2c_bus, unsigned state)
} }
if ((sr & (state >> 8)) == (unsigned char)state) if ((sr & (state >> 8)) == (unsigned char)state)
return sr; return sr;
WATCHDOG_RESET(); schedule();
elapsed = get_timer(start_time); elapsed = get_timer(start_time);
if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */ if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */
break; break;
@ -447,7 +447,7 @@ int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
sda = dm_gpio_get_value(sda_gpio); sda = dm_gpio_get_value(sda_gpio);
if ((sda & scl) == 1) if ((sda & scl) == 1)
break; break;
WATCHDOG_RESET(); schedule();
elapsed = get_timer(start_time); elapsed = get_timer(start_time);
if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */ if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */
ret = -EBUSY; ret = -EBUSY;

View file

@ -1023,7 +1023,7 @@ static void octeontx_mmc_cleanup_dma(struct mmc *mmc,
start = get_timer(0); start = get_timer(0);
do { do {
rsp_sts.u = read_csr(mmc, MIO_EMM_RSP_STS()); rsp_sts.u = read_csr(mmc, MIO_EMM_RSP_STS());
WATCHDOG_RESET(); schedule();
} while (get_timer(start) < 100 && } while (get_timer(start) < 100 &&
(rsp_sts.s.dma_val || rsp_sts.s.dma_pend)); (rsp_sts.s.dma_val || rsp_sts.s.dma_pend));
} while (retries-- >= 0 && rsp_sts.s.dma_pend); } while (retries-- >= 0 && rsp_sts.s.dma_pend);
@ -1107,7 +1107,7 @@ static int octeontx_mmc_wait_dma(struct mmc *mmc, bool write, ulong timeout,
} else if (!rsp_sts.s.dma_val && emm_dma_int.s.done) { } else if (!rsp_sts.s.dma_val && emm_dma_int.s.done) {
break; break;
} }
WATCHDOG_RESET(); schedule();
timed_out = (get_timer(start_time) > timeout); timed_out = (get_timer(start_time) > timeout);
} while (!timed_out); } while (!timed_out);
@ -1219,7 +1219,7 @@ static int octeontx_mmc_read_blocks(struct mmc *mmc, struct mmc_cmd *cmd,
} }
return blkcnt - count; return blkcnt - count;
} }
WATCHDOG_RESET(); schedule();
} while (--count); } while (--count);
} }
#ifdef DEBUG #ifdef DEBUG
@ -1253,7 +1253,7 @@ static int octeontx_mmc_poll_ready(struct mmc *mmc, ulong timeout)
} else if (cmd.response[0] & R1_READY_FOR_DATA) { } else if (cmd.response[0] & R1_READY_FOR_DATA) {
return 0; return 0;
} }
WATCHDOG_RESET(); schedule();
} while (get_timer(start) < timeout); } while (get_timer(start) < timeout);
if (not_ready) if (not_ready)
@ -1328,7 +1328,7 @@ static ulong octeontx_mmc_write_blocks(struct mmc *mmc, struct mmc_cmd *cmd,
read_csr(mmc, MIO_EMM_DMA())); read_csr(mmc, MIO_EMM_DMA()));
return blkcnt - count; return blkcnt - count;
} }
WATCHDOG_RESET(); schedule();
} while (--count); } while (--count);
} }
@ -1491,7 +1491,7 @@ static int octeontx_mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
start = get_timer(0); start = get_timer(0);
do { do {
rsp_sts.u = read_csr(mmc, MIO_EMM_RSP_STS()); rsp_sts.u = read_csr(mmc, MIO_EMM_RSP_STS());
WATCHDOG_RESET(); schedule();
} while (!rsp_sts.s.cmd_done && !rsp_sts.s.rsp_timeout && } while (!rsp_sts.s.cmd_done && !rsp_sts.s.rsp_timeout &&
(get_timer(start) < timeout + 10)); (get_timer(start) < timeout + 10));
octeontx_mmc_print_rsp_errors(mmc, rsp_sts); octeontx_mmc_print_rsp_errors(mmc, rsp_sts);

View file

@ -242,7 +242,7 @@ static int sh_mmcif_multi_read(struct sh_mmcif_host *host,
for (i = 0; i < blocksize / 4; i++) for (i = 0; i < blocksize / 4; i++)
*p++ = sh_mmcif_read(&host->regs->ce_data); *p++ = sh_mmcif_read(&host->regs->ce_data);
WATCHDOG_RESET(); schedule();
} }
return 0; return 0;
} }
@ -309,7 +309,7 @@ static int sh_mmcif_multi_write(struct sh_mmcif_host *host,
for (i = 0; i < blocksize / 4; i++) for (i = 0; i < blocksize / 4; i++)
sh_mmcif_write(*p++, &host->regs->ce_data); sh_mmcif_write(*p++, &host->regs->ce_data);
WATCHDOG_RESET(); schedule();
} }
return 0; return 0;
} }
@ -523,7 +523,7 @@ static int sh_mmcif_send_cmd_common(struct sh_mmcif_host *host,
{ {
int ret; int ret;
WATCHDOG_RESET(); schedule();
switch (cmd->cmdidx) { switch (cmd->cmdidx) {
case MMC_CMD_APP_CMD: case MMC_CMD_APP_CMD:

View file

@ -445,7 +445,7 @@ static int stm32_sdmmc2_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
u32 cmdat = data ? SDMMC_CMD_CMDTRANS : 0; u32 cmdat = data ? SDMMC_CMD_CMDTRANS : 0;
int ret, retry = 3; int ret, retry = 3;
WATCHDOG_RESET(); schedule();
retry_cmd: retry_cmd:
ctx.data_length = 0; ctx.data_length = 0;

View file

@ -584,7 +584,7 @@ static int flash_status_check(flash_info_t *info, flash_sect_t sector,
reset_timer(); reset_timer();
#endif #endif
start = get_timer(0); start = get_timer(0);
WATCHDOG_RESET(); schedule();
while (flash_is_busy(info, sector)) { while (flash_is_busy(info, sector)) {
if (get_timer(start) > tout) { if (get_timer(start) > tout) {
printf("Flash %s timeout at address %lx data %lx\n", printf("Flash %s timeout at address %lx data %lx\n",
@ -677,7 +677,7 @@ static int flash_status_poll(flash_info_t *info, void *src, void *dst,
reset_timer(); reset_timer();
#endif #endif
start = get_timer(0); start = get_timer(0);
WATCHDOG_RESET(); schedule();
while (1) { while (1) {
switch (info->portwidth) { switch (info->portwidth) {
case FLASH_CFI_8BIT: case FLASH_CFI_8BIT:

View file

@ -173,7 +173,7 @@ int nanddev_mtd_erase(struct mtd_info *mtd, struct erase_info *einfo)
nanddev_offs_to_pos(nand, einfo->addr, &pos); nanddev_offs_to_pos(nand, einfo->addr, &pos);
nanddev_offs_to_pos(nand, einfo->addr + einfo->len - 1, &last); nanddev_offs_to_pos(nand, einfo->addr + einfo->len - 1, &last);
while (nanddev_pos_cmp(&pos, &last) <= 0) { while (nanddev_pos_cmp(&pos, &last) <= 0) {
WATCHDOG_RESET(); schedule();
ret = nanddev_erase(nand, &pos); ret = nanddev_erase(nand, &pos);
if (ret) { if (ret) {
einfo->fail_addr = nanddev_pos_to_offs(nand, &pos); einfo->fail_addr = nanddev_pos_to_offs(nand, &pos);

View file

@ -420,7 +420,7 @@ static int pmecc_err_location(struct mtd_info *mtd)
while (--timeout) { while (--timeout) {
if (pmecc_readl(host->pmerrloc, elisr) & PMERRLOC_CALC_DONE) if (pmecc_readl(host->pmerrloc, elisr) & PMERRLOC_CALC_DONE)
break; break;
WATCHDOG_RESET(); schedule();
udelay(1); udelay(1);
} }
@ -558,7 +558,7 @@ static int atmel_nand_pmecc_read_page(struct mtd_info *mtd,
while (--timeout) { while (--timeout) {
if (!(pmecc_readl(host->pmecc, sr) & PMECC_SR_BUSY)) if (!(pmecc_readl(host->pmecc, sr) & PMECC_SR_BUSY))
break; break;
WATCHDOG_RESET(); schedule();
udelay(1); udelay(1);
} }
@ -598,7 +598,7 @@ static int atmel_nand_pmecc_write_page(struct mtd_info *mtd,
while (--timeout) { while (--timeout) {
if (!(pmecc_readl(host->pmecc, sr) & PMECC_SR_BUSY)) if (!(pmecc_readl(host->pmecc, sr) & PMECC_SR_BUSY))
break; break;
WATCHDOG_RESET(); schedule();
udelay(1); udelay(1);
} }

View file

@ -595,7 +595,7 @@ static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
if (status & NAND_STATUS_READY) if (status & NAND_STATUS_READY)
break; break;
WATCHDOG_RESET(); schedule();
} }
}; };
@ -2342,7 +2342,7 @@ static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
while (1) { while (1) {
unsigned int ecc_failures = mtd->ecc_stats.failed; unsigned int ecc_failures = mtd->ecc_stats.failed;
WATCHDOG_RESET(); schedule();
bytes = min(mtd->writesize - col, readlen); bytes = min(mtd->writesize - col, readlen);
aligned = (bytes == mtd->writesize); aligned = (bytes == mtd->writesize);
@ -2695,7 +2695,7 @@ static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
page = realpage & chip->pagemask; page = realpage & chip->pagemask;
while (1) { while (1) {
WATCHDOG_RESET(); schedule();
if (ops->mode == MTD_OPS_RAW) if (ops->mode == MTD_OPS_RAW)
ret = chip->ecc.read_oob_raw(mtd, chip, page); ret = chip->ecc.read_oob_raw(mtd, chip, page);
@ -3263,7 +3263,7 @@ static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
else else
use_bufpoi = 0; use_bufpoi = 0;
WATCHDOG_RESET(); schedule();
/* Partial page write?, or need to use bounce buffer */ /* Partial page write?, or need to use bounce buffer */
if (use_bufpoi) { if (use_bufpoi) {
pr_debug("%s: using write bounce buffer for buf@%p\n", pr_debug("%s: using write bounce buffer for buf@%p\n",
@ -3556,7 +3556,7 @@ int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
instr->state = MTD_ERASING; instr->state = MTD_ERASING;
while (len) { while (len) {
WATCHDOG_RESET(); schedule();
/* Check if we have a bad block, we do not erase bad blocks! */ /* Check if we have a bad block, we do not erase bad blocks! */
if (!instr->scrub && nand_block_checkbad(mtd, ((loff_t) page) << if (!instr->scrub && nand_block_checkbad(mtd, ((loff_t) page) <<

View file

@ -103,7 +103,7 @@ int nand_erase_opts(struct mtd_info *mtd,
erased_length < erase_length; erased_length < erase_length;
erase.addr += mtd->erasesize) { erase.addr += mtd->erasesize) {
WATCHDOG_RESET(); schedule();
if (opts->lim && (erase.addr >= (opts->offset + opts->lim))) { if (opts->lim && (erase.addr >= (opts->offset + opts->lim))) {
puts("Size of erase exceeds limit\n"); puts("Size of erase exceeds limit\n");
@ -638,7 +638,7 @@ int nand_write_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length,
size_t block_offset = offset & (mtd->erasesize - 1); size_t block_offset = offset & (mtd->erasesize - 1);
size_t write_size, truncated_write_size; size_t write_size, truncated_write_size;
WATCHDOG_RESET(); schedule();
if (nand_block_isbad(mtd, block_start)) { if (nand_block_isbad(mtd, block_start)) {
printf("Skip bad block 0x%08llx\n", block_start); printf("Skip bad block 0x%08llx\n", block_start);
@ -753,7 +753,7 @@ int nand_read_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length,
size_t block_offset = offset & (mtd->erasesize - 1); size_t block_offset = offset & (mtd->erasesize - 1);
size_t read_length; size_t read_length;
WATCHDOG_RESET(); schedule();
if (nand_block_isbad(mtd, offset & ~(mtd->erasesize - 1))) { if (nand_block_isbad(mtd, offset & ~(mtd->erasesize - 1))) {
printf("Skipping bad block 0x%08llx\n", printf("Skipping bad block 0x%08llx\n",

View file

@ -579,7 +579,7 @@ static int spinand_mtd_read(struct mtd_info *mtd, loff_t from,
#endif #endif
nanddev_io_for_each_page(nand, from, ops, &iter) { nanddev_io_for_each_page(nand, from, ops, &iter) {
WATCHDOG_RESET(); schedule();
ret = spinand_select_target(spinand, iter.req.pos.target); ret = spinand_select_target(spinand, iter.req.pos.target);
if (ret) if (ret)
break; break;
@ -631,7 +631,7 @@ static int spinand_mtd_write(struct mtd_info *mtd, loff_t to,
#endif #endif
nanddev_io_for_each_page(nand, to, ops, &iter) { nanddev_io_for_each_page(nand, to, ops, &iter) {
WATCHDOG_RESET(); schedule();
ret = spinand_select_target(spinand, iter.req.pos.target); ret = spinand_select_target(spinand, iter.req.pos.target);
if (ret) if (ret)
break; break;

View file

@ -478,7 +478,7 @@ static int onenand_wait(struct mtd_info *mtd, int state)
u32 timeo = (CONFIG_SYS_HZ * 20) / 1000; u32 timeo = (CONFIG_SYS_HZ * 20) / 1000;
u32 time_start = get_timer(0); u32 time_start = get_timer(0);
do { do {
WATCHDOG_RESET(); schedule();
if (get_timer(time_start) > timeo) if (get_timer(time_start) > timeo)
return -EIO; return -EIO;
interrupt = this->read_word(this->base + ONENAND_REG_INTERRUPT); interrupt = this->read_word(this->base + ONENAND_REG_INTERRUPT);
@ -1170,7 +1170,7 @@ static int onenand_bbt_wait(struct mtd_info *mtd, int state)
u32 timeo = (CONFIG_SYS_HZ * 20) / 1000; u32 timeo = (CONFIG_SYS_HZ * 20) / 1000;
u32 time_start = get_timer(0); u32 time_start = get_timer(0);
do { do {
WATCHDOG_RESET(); schedule();
if (get_timer(time_start) > timeo) if (get_timer(time_start) > timeo)
return ONENAND_BBT_READ_FATAL_ERROR; return ONENAND_BBT_READ_FATAL_ERROR;
interrupt = this->read_word(this->base + ONENAND_REG_INTERRUPT); interrupt = this->read_word(this->base + ONENAND_REG_INTERRUPT);

View file

@ -958,7 +958,7 @@ static int spi_nor_erase(struct mtd_info *mtd, struct erase_info *instr)
addr_known = true; addr_known = true;
while (len) { while (len) {
WATCHDOG_RESET(); schedule();
if (!IS_ENABLED(CONFIG_SPL_BUILD) && ctrlc()) { if (!IS_ENABLED(CONFIG_SPL_BUILD) && ctrlc()) {
addr_known = false; addr_known = false;
ret = -EINTR; ret = -EINTR;
@ -1721,7 +1721,7 @@ static int spi_nor_write(struct mtd_info *mtd, loff_t to, size_t len,
for (i = 0; i < len; ) { for (i = 0; i < len; ) {
ssize_t written; ssize_t written;
loff_t addr = to + i; loff_t addr = to + i;
WATCHDOG_RESET(); schedule();
/* /*
* If page_size is a power of two, the offset can be quickly * If page_size is a power of two, the offset can be quickly

View file

@ -580,7 +580,7 @@ int nix_lf_xmit(struct udevice *dev, void *pkt, int pkt_len)
__iowmb(); __iowmb();
result = lmt_submit((u64)(nix->nix_base + result = lmt_submit((u64)(nix->nix_base +
NIXX_LF_OP_SENDX(0))); NIXX_LF_OP_SENDX(0)));
WATCHDOG_RESET(); schedule();
} while (result == 0); } while (result == 0);
return 0; return 0;

View file

@ -65,7 +65,7 @@ int npa_attach_aura(struct nix_af *nix_af, int lf,
start = get_timer(0); start = get_timer(0);
while ((res->s.compcode == NPA_AQ_COMP_E_NOTDONE) && while ((res->s.compcode == NPA_AQ_COMP_E_NOTDONE) &&
(get_timer(start) < 1000)) (get_timer(start) < 1000))
WATCHDOG_RESET(); schedule();
if (res->s.compcode != NPA_AQ_COMP_E_GOOD) { if (res->s.compcode != NPA_AQ_COMP_E_GOOD) {
printf("%s: Error: result 0x%x not good\n", printf("%s: Error: result 0x%x not good\n",
__func__, res->s.compcode); __func__, res->s.compcode);
@ -111,7 +111,7 @@ int npa_attach_pool(struct nix_af *nix_af, int lf,
start = get_timer(0); start = get_timer(0);
while ((res->s.compcode == NPA_AQ_COMP_E_NOTDONE) && while ((res->s.compcode == NPA_AQ_COMP_E_NOTDONE) &&
(get_timer(start) < 1000)) (get_timer(start) < 1000))
WATCHDOG_RESET(); schedule();
if (res->s.compcode != NPA_AQ_COMP_E_GOOD) { if (res->s.compcode != NPA_AQ_COMP_E_GOOD) {
printf("%s: Error: result 0x%x not good\n", printf("%s: Error: result 0x%x not good\n",
@ -136,7 +136,7 @@ int npa_lf_admin_setup(struct npa *npa, int lf, dma_addr_t aura_base)
do { do {
lf_rst.u = npa_af_reg_read(npa_af, NPA_AF_LF_RST()); lf_rst.u = npa_af_reg_read(npa_af, NPA_AF_LF_RST());
WATCHDOG_RESET(); schedule();
} while (lf_rst.s.exec); } while (lf_rst.s.exec);
/* Set Aura size and enable caching of contexts */ /* Set Aura size and enable caching of contexts */
@ -199,7 +199,7 @@ int npa_lf_admin_shutdown(struct nix_af *nix_af, int lf, u32 pool_count)
start = get_timer(0); start = get_timer(0);
while ((res->s.compcode == NPA_AQ_COMP_E_NOTDONE) && while ((res->s.compcode == NPA_AQ_COMP_E_NOTDONE) &&
(get_timer(start) < 1000)) (get_timer(start) < 1000))
WATCHDOG_RESET(); schedule();
if (res->s.compcode != NPA_AQ_COMP_E_GOOD) { if (res->s.compcode != NPA_AQ_COMP_E_GOOD) {
printf("%s: Error: result 0x%x not good for lf %d\n" printf("%s: Error: result 0x%x not good for lf %d\n"
@ -235,7 +235,7 @@ int npa_lf_admin_shutdown(struct nix_af *nix_af, int lf, u32 pool_count)
start = get_timer(0); start = get_timer(0);
while ((res->s.compcode == NPA_AQ_COMP_E_NOTDONE) && while ((res->s.compcode == NPA_AQ_COMP_E_NOTDONE) &&
(get_timer(start) < 1000)) (get_timer(start) < 1000))
WATCHDOG_RESET(); schedule();
if (res->s.compcode != NPA_AQ_COMP_E_GOOD) { if (res->s.compcode != NPA_AQ_COMP_E_GOOD) {
printf("%s: Error: result 0x%x not good for lf %d\n" printf("%s: Error: result 0x%x not good for lf %d\n"
@ -255,7 +255,7 @@ int npa_lf_admin_shutdown(struct nix_af *nix_af, int lf, u32 pool_count)
do { do {
lf_rst.u = npa_af_reg_read(npa, NPA_AF_LF_RST()); lf_rst.u = npa_af_reg_read(npa, NPA_AF_LF_RST());
WATCHDOG_RESET(); schedule();
} while (lf_rst.s.exec); } while (lf_rst.s.exec);
return 0; return 0;
@ -286,7 +286,7 @@ int npa_af_setup(struct npa_af *npa_af)
/* Wait for reset to complete */ /* Wait for reset to complete */
do { do {
blk_rst.u = npa_af_reg_read(npa_af, NPA_AF_BLK_RST()); blk_rst.u = npa_af_reg_read(npa_af, NPA_AF_BLK_RST());
WATCHDOG_RESET(); schedule();
} while (blk_rst.s.busy); } while (blk_rst.s.busy);
/* Set little Endian */ /* Set little Endian */
@ -318,7 +318,7 @@ int npa_af_shutdown(struct npa_af *npa_af)
/* Wait for reset to complete */ /* Wait for reset to complete */
do { do {
blk_rst.u = npa_af_reg_read(npa_af, NPA_AF_BLK_RST()); blk_rst.u = npa_af_reg_read(npa_af, NPA_AF_BLK_RST());
WATCHDOG_RESET(); schedule();
} while (blk_rst.s.busy); } while (blk_rst.s.busy);
rvu_aq_free(&npa_af->aq); rvu_aq_free(&npa_af->aq);
@ -481,7 +481,7 @@ static int nix_aq_issue_command(struct nix_af *nix_af,
start = get_timer(0); start = get_timer(0);
/* Wait for completion */ /* Wait for completion */
do { do {
WATCHDOG_RESET(); schedule();
dsb(); dsb();
} while (result->s.compcode == 0 && get_timer(start) < 2); } while (result->s.compcode == 0 && get_timer(start) < 2);
@ -645,7 +645,7 @@ int nix_lf_admin_setup(struct nix *nix)
do { do {
lf_rst.u = nix_af_reg_read(nix_af, NIXX_AF_LF_RST()); lf_rst.u = nix_af_reg_read(nix_af, NIXX_AF_LF_RST());
WATCHDOG_RESET(); schedule();
} while (lf_rst.s.exec); } while (lf_rst.s.exec);
/* Config NIX RQ HW context and base*/ /* Config NIX RQ HW context and base*/
@ -767,7 +767,7 @@ int nix_lf_admin_shutdown(struct nix_af *nix_af, int lf,
do { do {
sw_sync.u = nix_af_reg_read(nix_af, NIXX_AF_RX_SW_SYNC()); sw_sync.u = nix_af_reg_read(nix_af, NIXX_AF_RX_SW_SYNC());
WATCHDOG_RESET(); schedule();
} while (sw_sync.s.ena); } while (sw_sync.s.ena);
for (index = 0; index < rq_count; index++) { for (index = 0; index < rq_count; index++) {
@ -832,7 +832,7 @@ int nix_lf_admin_shutdown(struct nix_af *nix_af, int lf,
do { do {
lf_rst.u = nix_af_reg_read(nix_af, NIXX_AF_LF_RST()); lf_rst.u = nix_af_reg_read(nix_af, NIXX_AF_LF_RST());
WATCHDOG_RESET(); schedule();
} while (lf_rst.s.exec); } while (lf_rst.s.exec);
return 0; return 0;
@ -972,7 +972,7 @@ int npc_af_shutdown(struct nix_af *nix_af)
/* Wait for reset to complete */ /* Wait for reset to complete */
do { do {
blk_rst.u = npc_af_reg_read(nix_af, NPC_AF_BLK_RST()); blk_rst.u = npc_af_reg_read(nix_af, NPC_AF_BLK_RST());
WATCHDOG_RESET(); schedule();
} while (blk_rst.s.busy); } while (blk_rst.s.busy);
debug("%s: npc af reset --\n", __func__); debug("%s: npc af reset --\n", __func__);
@ -1008,7 +1008,7 @@ int nix_af_setup(struct nix_af *nix_af)
/* Wait for reset to complete */ /* Wait for reset to complete */
do { do {
blk_rst.u = nix_af_reg_read(nix_af, NIXX_AF_BLK_RST()); blk_rst.u = nix_af_reg_read(nix_af, NIXX_AF_BLK_RST());
WATCHDOG_RESET(); schedule();
} while (blk_rst.s.busy); } while (blk_rst.s.busy);
/* Put in LE mode */ /* Put in LE mode */
@ -1031,7 +1031,7 @@ int nix_af_setup(struct nix_af *nix_af)
/* Wait for calibration to complete */ /* Wait for calibration to complete */
do { do {
af_status.u = nix_af_reg_read(nix_af, NIXX_AF_STATUS()); af_status.u = nix_af_reg_read(nix_af, NIXX_AF_STATUS());
WATCHDOG_RESET(); schedule();
} while (af_status.s.calibrate_done == 0); } while (af_status.s.calibrate_done == 0);
af_cfg.u = nix_af_reg_read(nix_af, NIXX_AF_CFG()); af_cfg.u = nix_af_reg_read(nix_af, NIXX_AF_CFG());
@ -1091,7 +1091,7 @@ int nix_af_shutdown(struct nix_af *nix_af)
/* Wait for reset to complete */ /* Wait for reset to complete */
do { do {
blk_rst.u = nix_af_reg_read(nix_af, NIXX_AF_BLK_RST()); blk_rst.u = nix_af_reg_read(nix_af, NIXX_AF_BLK_RST());
WATCHDOG_RESET(); schedule();
} while (blk_rst.s.busy); } while (blk_rst.s.busy);
rvu_aq_free(&nix_af->aq); rvu_aq_free(&nix_af->aq);

View file

@ -169,7 +169,7 @@ static int test_loop_end(u32 *loop, u32 nb_loop, u32 progress)
return 1; return 1;
} }
printf("loop #%d\n", *loop); printf("loop #%d\n", *loop);
WATCHDOG_RESET(); schedule();
return 0; return 0;
} }

View file

@ -103,7 +103,7 @@ static int atmel_serial_getc(void)
atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE; atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
while (!(readl(&usart->csr) & USART3_BIT(RXRDY))) while (!(readl(&usart->csr) & USART3_BIT(RXRDY)))
WATCHDOG_RESET(); schedule();
return readl(&usart->rhr); return readl(&usart->rhr);
} }

View file

@ -296,7 +296,7 @@ void ns16550_putc(struct ns16550 *com_port, char c)
* in puts(). * in puts().
*/ */
if (c == '\n') if (c == '\n')
WATCHDOG_RESET(); schedule();
} }
#ifndef CONFIG_NS16550_MIN_FUNCTIONS #ifndef CONFIG_NS16550_MIN_FUNCTIONS
@ -307,7 +307,7 @@ char ns16550_getc(struct ns16550 *com_port)
extern void usbtty_poll(void); extern void usbtty_poll(void);
usbtty_poll(); usbtty_poll();
#endif #endif
WATCHDOG_RESET(); schedule();
} }
return serial_in(&com_port->rbr); return serial_in(&com_port->rbr);
} }
@ -395,7 +395,7 @@ static int ns16550_serial_putc(struct udevice *dev, const char ch)
* in puts(). * in puts().
*/ */
if (ch == '\n') if (ch == '\n')
WATCHDOG_RESET(); schedule();
return 0; return 0;
} }

View file

@ -246,7 +246,7 @@ static int __serial_getc(struct udevice *dev)
do { do {
err = ops->getc(dev); err = ops->getc(dev);
if (err == -EAGAIN) if (err == -EAGAIN)
WATCHDOG_RESET(); schedule();
} while (err == -EAGAIN); } while (err == -EAGAIN);
return err >= 0 ? err : 0; return err >= 0 ? err : 0;

View file

@ -114,7 +114,7 @@ static int bcm283x_mu_serial_pending(struct udevice *dev, bool input)
lsr = readl(&regs->lsr); lsr = readl(&regs->lsr);
if (input) { if (input) {
WATCHDOG_RESET(); schedule();
return (lsr & BCM283X_MU_LSR_RX_READY) ? 1 : 0; return (lsr & BCM283X_MU_LSR_RX_READY) ? 1 : 0;
} else { } else {
return (lsr & BCM283X_MU_LSR_TX_IDLE) ? 0 : 1; return (lsr & BCM283X_MU_LSR_TX_IDLE) ? 0 : 1;

View file

@ -169,7 +169,7 @@ static int _lpuart_serial_getc(struct lpuart_serial_plat *plat)
{ {
struct lpuart_fsl *base = plat->reg; struct lpuart_fsl *base = plat->reg;
while (!(__raw_readb(&base->us1) & (US1_RDRF | US1_OR))) while (!(__raw_readb(&base->us1) & (US1_RDRF | US1_OR)))
WATCHDOG_RESET(); schedule();
barrier(); barrier();
@ -182,7 +182,7 @@ static void _lpuart_serial_putc(struct lpuart_serial_plat *plat,
struct lpuart_fsl *base = plat->reg; struct lpuart_fsl *base = plat->reg;
while (!(__raw_readb(&base->us1) & US1_TDRE)) while (!(__raw_readb(&base->us1) & US1_TDRE))
WATCHDOG_RESET(); schedule();
__raw_writeb(c, &base->ud); __raw_writeb(c, &base->ud);
} }
@ -330,7 +330,7 @@ static int _lpuart32_serial_getc(struct lpuart_serial_plat *plat)
lpuart_read32(plat->flags, &base->stat, &stat); lpuart_read32(plat->flags, &base->stat, &stat);
while ((stat & STAT_RDRF) == 0) { while ((stat & STAT_RDRF) == 0) {
lpuart_write32(plat->flags, &base->stat, STAT_FLAGS); lpuart_write32(plat->flags, &base->stat, STAT_FLAGS);
WATCHDOG_RESET(); schedule();
lpuart_read32(plat->flags, &base->stat, &stat); lpuart_read32(plat->flags, &base->stat, &stat);
} }
@ -358,7 +358,7 @@ static void _lpuart32_serial_putc(struct lpuart_serial_plat *plat,
if ((stat & STAT_TDRE)) if ((stat & STAT_TDRE))
break; break;
WATCHDOG_RESET(); schedule();
} }
lpuart_write32(plat->flags, &base->data, c); lpuart_write32(plat->flags, &base->data, c);

View file

@ -187,7 +187,7 @@ static int serial_mpc8xx_putc(struct udevice *dev, const char c)
setbits_be16(&rtx->txbd.cbd_sc, BD_SC_READY); setbits_be16(&rtx->txbd.cbd_sc, BD_SC_READY);
while (in_be16(&rtx->txbd.cbd_sc) & BD_SC_READY) while (in_be16(&rtx->txbd.cbd_sc) & BD_SC_READY)
WATCHDOG_RESET(); schedule();
return 0; return 0;
} }
@ -204,7 +204,7 @@ static int serial_mpc8xx_getc(struct udevice *dev)
/* Wait for character to show up. */ /* Wait for character to show up. */
while (in_be16(&rtx->rxbd.cbd_sc) & BD_SC_EMPTY) while (in_be16(&rtx->rxbd.cbd_sc) & BD_SC_EMPTY)
WATCHDOG_RESET(); schedule();
/* the characters are read one by one, /* the characters are read one by one,
* use the rxindex to know the next char to deliver * use the rxindex to know the next char to deliver

View file

@ -102,7 +102,7 @@ static int mt7620_serial_putc(struct udevice *dev, const char ch)
writel(ch, &plat->regs->thr); writel(ch, &plat->regs->thr);
if (ch == '\n') if (ch == '\n')
WATCHDOG_RESET(); schedule();
return 0; return 0;
} }

View file

@ -141,7 +141,7 @@ static int _mtk_serial_putc(struct mtk_serial_priv *priv, const char ch)
writel(ch, &priv->regs->thr); writel(ch, &priv->regs->thr);
if (ch == '\n') if (ch == '\n')
WATCHDOG_RESET(); schedule();
return 0; return 0;
} }
@ -295,7 +295,7 @@ DECLARE_GLOBAL_DATA_PTR;
do { \ do { \
err = _mtk_serial_getc(&mtk_hsuart##port); \ err = _mtk_serial_getc(&mtk_hsuart##port); \
if (err == -EAGAIN) \ if (err == -EAGAIN) \
WATCHDOG_RESET(); \ schedule(); \
} while (err == -EAGAIN); \ } while (err == -EAGAIN); \
return err >= 0 ? err : 0; \ return err >= 0 ? err : 0; \
} \ } \

View file

@ -200,7 +200,7 @@ static void mxc_serial_setbrg(void)
static int mxc_serial_getc(void) static int mxc_serial_getc(void)
{ {
while (readl(&mxc_base->ts) & UTS_RXEMPTY) while (readl(&mxc_base->ts) & UTS_RXEMPTY)
WATCHDOG_RESET(); schedule();
return (readl(&mxc_base->rxd) & URXD_RX_DATA); /* mask out status from upper word */ return (readl(&mxc_base->rxd) & URXD_RX_DATA); /* mask out status from upper word */
} }
@ -214,7 +214,7 @@ static void mxc_serial_putc(const char c)
/* wait for transmitter to be ready */ /* wait for transmitter to be ready */
while (!(readl(&mxc_base->ts) & UTS_TXEMPTY)) while (!(readl(&mxc_base->ts) & UTS_TXEMPTY))
WATCHDOG_RESET(); schedule();
} }
/* Test whether a character is in the RX buffer */ /* Test whether a character is in the RX buffer */
@ -384,7 +384,7 @@ static inline void _debug_uart_putc(int ch)
struct mxc_uart *base = (struct mxc_uart *)CONFIG_VAL(DEBUG_UART_BASE); struct mxc_uart *base = (struct mxc_uart *)CONFIG_VAL(DEBUG_UART_BASE);
while (!(readl(&base->ts) & UTS_TXEMPTY)) while (!(readl(&base->ts) & UTS_TXEMPTY))
WATCHDOG_RESET(); schedule();
writel(ch, &base->txd); writel(ch, &base->txd);
} }

View file

@ -98,7 +98,7 @@ static int octeon_bootcmd_getc(struct udevice *dev)
} }
while (!octeon_bootcmd_pending(dev, true)) { while (!octeon_bootcmd_pending(dev, true)) {
WATCHDOG_RESET(); schedule();
/* /*
* ToDo: * ToDo:
* The original code calls octeon_board_poll() here. We may * The original code calls octeon_board_poll() here. We may

View file

@ -134,7 +134,7 @@ static int octeon_pcie_console_read(struct udevice *dev,
cons_ptr->input_write_index, cons_ptr->input_write_index,
cons_ptr->input_read_index))) { cons_ptr->input_read_index))) {
mdelay(10); mdelay(10);
WATCHDOG_RESET(); schedule();
} }
} }
@ -210,7 +210,7 @@ static int octeon_pcie_console_write(struct udevice *dev,
if (flags & OCT_PCI_CON_FLAG_NONBLOCK) if (flags & OCT_PCI_CON_FLAG_NONBLOCK)
goto done; goto done;
WATCHDOG_RESET(); schedule();
mdelay(10); /* Delay if we are spinning */ mdelay(10); /* Delay if we are spinning */
} else { } else {
bytes_written = -1; bytes_written = -1;

View file

@ -70,7 +70,7 @@ static int pl01x_getc(struct pl01x_regs *regs)
static int pl01x_tstc(struct pl01x_regs *regs) static int pl01x_tstc(struct pl01x_regs *regs)
{ {
WATCHDOG_RESET(); schedule();
return !(readl(&regs->fr) & UART_PL01x_FR_RXFE); return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
} }
@ -227,7 +227,7 @@ static int pl01x_serial_getc(void)
int ch = pl01x_getc(base_regs); int ch = pl01x_getc(base_regs);
if (ch == -EAGAIN) { if (ch == -EAGAIN) {
WATCHDOG_RESET(); schedule();
continue; continue;
} }
@ -247,9 +247,9 @@ static void pl01x_serial_setbrg(void)
* crap in console * crap in console
*/ */
while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE)) while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
WATCHDOG_RESET(); schedule();
while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY) while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
WATCHDOG_RESET(); schedule();
pl01x_serial_init_baud(gd->baudrate); pl01x_serial_init_baud(gd->baudrate);
} }

View file

@ -225,7 +225,7 @@ static inline void _debug_uart_putc(int ch)
(struct uart_sifive *)CONFIG_VAL(DEBUG_UART_BASE); (struct uart_sifive *)CONFIG_VAL(DEBUG_UART_BASE);
while (_sifive_serial_putc(regs, ch) == -EAGAIN) while (_sifive_serial_putc(regs, ch) == -EAGAIN)
WATCHDOG_RESET(); schedule();
} }
DEBUG_UART_FUNCS DEBUG_UART_FUNCS

View file

@ -307,7 +307,7 @@ static inline void _debug_uart_putc(int ch)
struct uart_zynq *regs = (struct uart_zynq *)CONFIG_VAL(DEBUG_UART_BASE); struct uart_zynq *regs = (struct uart_zynq *)CONFIG_VAL(DEBUG_UART_BASE);
while (_uart_zynq_serial_putc(regs, ch) == -EAGAIN) while (_uart_zynq_serial_putc(regs, ch) == -EAGAIN)
WATCHDOG_RESET(); schedule();
} }
DEBUG_UART_FUNCS DEBUG_UART_FUNCS

View file

@ -202,7 +202,7 @@ static int mtk_snfi_exec_op(struct spi_slave *slave,
int addr_sh; int addr_sh;
int ret; int ret;
WATCHDOG_RESET(); schedule();
ret = mtk_snfi_mac_reset(priv); ret = mtk_snfi_mac_reset(priv);
if (ret) if (ret)

View file

@ -126,7 +126,7 @@ static void octeon_spi_wait_ready(struct udevice *dev)
do { do {
mpi_sts = readq(base + MPI_STS); mpi_sts = readq(base + MPI_STS);
WATCHDOG_RESET(); schedule();
} while (mpi_sts & MPI_STS_BUSY); } while (mpi_sts & MPI_STS_BUSY);
debug("%s(%s)\n", __func__, dev->name); debug("%s(%s)\n", __func__, dev->name);

View file

@ -172,7 +172,7 @@ static int _stm32_qspi_wait_cmd(struct stm32_qspi_priv *priv,
static void _stm32_qspi_read_fifo(u8 *val, void __iomem *addr) static void _stm32_qspi_read_fifo(u8 *val, void __iomem *addr)
{ {
*val = readb(addr); *val = readb(addr);
WATCHDOG_RESET(); schedule();
} }
static void _stm32_qspi_write_fifo(u8 *val, void __iomem *addr) static void _stm32_qspi_write_fifo(u8 *val, void __iomem *addr)

View file

@ -176,7 +176,7 @@ void timer_interrupt(struct pt_regs *regs)
#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG) #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
if (CONFIG_SYS_WATCHDOG_FREQ && (priv->timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) if (CONFIG_SYS_WATCHDOG_FREQ && (priv->timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0)
WATCHDOG_RESET(); schedule();
#endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */ #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
#ifdef CONFIG_LED_STATUS #ifdef CONFIG_LED_STATUS
@ -189,7 +189,7 @@ void wait_ticks(ulong ticks)
ulong end = get_ticks() + ticks; ulong end = get_ticks() + ticks;
while (end > get_ticks()) while (end > get_ticks())
WATCHDOG_RESET(); schedule();
} }
static u64 mpc83xx_timer_get_count(struct udevice *dev) static u64 mpc83xx_timer_get_count(struct udevice *dev)

View file

@ -157,7 +157,7 @@ static inline int lan7x_wait_for_bit(struct usb_device *udev,
} }
udelay(1); udelay(1);
WATCHDOG_RESET(); schedule();
} }
debug("%s: Timeout (reg=0x%x mask=%08x wait_set=%i)\n", prefix, reg, debug("%s: Timeout (reg=0x%x mask=%08x wait_set=%i)\n", prefix, reg,
@ -199,7 +199,7 @@ static inline int lan7x_mdio_wait_for_bit(struct usb_device *udev,
} }
udelay(1); udelay(1);
WATCHDOG_RESET(); schedule();
} }
debug("%s: Timeout (reg=0x%x mask=%08x wait_set=%i)\n", prefix, reg, debug("%s: Timeout (reg=0x%x mask=%08x wait_set=%i)\n", prefix, reg,

View file

@ -579,7 +579,7 @@ static int acm_stdio_getc(struct stdio_dev *dev)
/* Wait for a character to arrive. */ /* Wait for a character to arrive. */
while (!acm_stdio_tstc(dev)) while (!acm_stdio_tstc(dev))
WATCHDOG_RESET(); schedule();
buf_pop(&f_acm->rx_buf, &c, 1); buf_pop(&f_acm->rx_buf, &c, 1);
@ -639,7 +639,7 @@ static int acm_stdio_start(struct stdio_dev *dev)
if (ctrlc()) if (ctrlc())
return -ECANCELED; return -ECANCELED;
WATCHDOG_RESET(); schedule();
} }
return 0; return 0;

View file

@ -711,7 +711,7 @@ int sdp_init(int controller_index)
return 1; return 1;
} }
WATCHDOG_RESET(); schedule();
usb_gadget_handle_interrupts(controller_index); usb_gadget_handle_interrupts(controller_index);
} }
@ -927,7 +927,7 @@ int spl_sdp_handle(int controller_index, struct spl_image_info *spl_image,
if (flag == SDP_EXIT) if (flag == SDP_EXIT)
return 0; return 0;
WATCHDOG_RESET(); schedule();
usb_gadget_handle_interrupts(controller_index); usb_gadget_handle_interrupts(controller_index);
#ifdef CONFIG_SPL_BUILD #ifdef CONFIG_SPL_BUILD

View file

@ -641,7 +641,7 @@ ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
token = hc32_to_cpu(vtd->qt_token); token = hc32_to_cpu(vtd->qt_token);
if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
break; break;
WATCHDOG_RESET(); schedule();
} while (get_timer(ts) < timeout); } while (get_timer(ts) < timeout);
qhtoken = hc32_to_cpu(qh->qh_overlay.qt_token); qhtoken = hc32_to_cpu(qh->qh_overlay.qt_token);

View file

@ -378,7 +378,7 @@ static struct musb *gadget;
int usb_gadget_handle_interrupts(int index) int usb_gadget_handle_interrupts(int index)
{ {
WATCHDOG_RESET(); schedule();
if (!gadget || !gadget->isr) if (!gadget || !gadget->isr)
return -EINVAL; return -EINVAL;

View file

@ -329,7 +329,7 @@ int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
byte_width = width; byte_width = width;
for (i = 0; i < height; ++i) { for (i = 0; i < height; ++i) {
WATCHDOG_RESET(); schedule();
for (j = 0; j < width; j++) { for (j = 0; j < width; j++) {
write_pix8(fb, bpix, eformat, palette, bmap); write_pix8(fb, bpix, eformat, palette, bmap);
bmap++; bmap++;
@ -342,7 +342,7 @@ int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
case 16: case 16:
if (IS_ENABLED(CONFIG_BMP_16BPP)) { if (IS_ENABLED(CONFIG_BMP_16BPP)) {
for (i = 0; i < height; ++i) { for (i = 0; i < height; ++i) {
WATCHDOG_RESET(); schedule();
for (j = 0; j < width; j++) { for (j = 0; j < width; j++) {
*fb++ = *bmap++; *fb++ = *bmap++;
*fb++ = *bmap++; *fb++ = *bmap++;

2
env/common.c vendored
View file

@ -115,7 +115,7 @@ char *env_get(const char *name)
if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */ if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
struct env_entry e, *ep; struct env_entry e, *ep;
WATCHDOG_RESET(); schedule();
e.key = name; e.key = name;
e.data = NULL; e.data = NULL;

View file

@ -21,6 +21,7 @@
*/ */
#include <common.h> #include <common.h>
#include <cyclic.h>
#include <malloc.h> #include <malloc.h>
#include <watchdog.h> #include <watchdog.h>
#include <u-boot/zlib.h> #include <u-boot/zlib.h>
@ -62,7 +63,7 @@ int cramfs_uncompress_init (void)
stream.avail_in = 0; stream.avail_in = 0;
#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
stream.outcb = (cb_func)watchdog_reset_func; stream.outcb = (cb_func)cyclic_run;
#else #else
stream.outcb = Z_NULL; stream.outcb = Z_NULL;
#endif /* CONFIG_HW_WATCHDOG */ #endif /* CONFIG_HW_WATCHDOG */

View file

@ -1523,7 +1523,7 @@ jffs2_1pass_build_lists(struct part_info * part)
/* Set buf_size to maximum length */ /* Set buf_size to maximum length */
buf_size = DEFAULT_EMPTY_SCAN_SIZE; buf_size = DEFAULT_EMPTY_SCAN_SIZE;
WATCHDOG_RESET(); schedule();
#ifdef CONFIG_JFFS2_SUMMARY #ifdef CONFIG_JFFS2_SUMMARY
buf_len = sizeof(*sm); buf_len = sizeof(*sm);

View file

@ -2,6 +2,7 @@
#define _LINUX_COMPAT_H_ #define _LINUX_COMPAT_H_
#include <console.h> #include <console.h>
#include <cyclic.h>
#include <log.h> #include <log.h>
#include <malloc.h> #include <malloc.h>
@ -230,7 +231,6 @@ typedef unsigned long blkcnt_t;
#define try_to_freeze(...) 0 #define try_to_freeze(...) 0
#define set_current_state(...) do { } while (0) #define set_current_state(...) do { } while (0)
#define kthread_should_stop(...) 0 #define kthread_should_stop(...) 0
#define schedule() do { } while (0)
#define setup_timer(timer, func, data) do {} while (0) #define setup_timer(timer, func, data) do {} while (0)
#define del_timer_sync(timer) do {} while (0) #define del_timer_sync(timer) do {} while (0)

View file

@ -63,7 +63,7 @@ static inline int wait_for_bit_##sfx(const void *reg, \
} \ } \
\ \
udelay(1); \ udelay(1); \
WATCHDOG_RESET(); \ schedule(); \
} \ } \
\ \
debug("%s: Timeout (reg=%p mask=%x wait_set=%i)\n", __func__, \ debug("%s: Timeout (reg=%p mask=%x wait_set=%i)\n", __func__, \

View file

@ -88,14 +88,6 @@ int init_func_watchdog_reset(void);
#endif /* CONFIG_WATCHDOG && !__ASSEMBLY__ */ #endif /* CONFIG_WATCHDOG && !__ASSEMBLY__ */
#endif /* CONFIG_HW_WATCHDOG */ #endif /* CONFIG_HW_WATCHDOG */
#if !defined(__ASSEMBLY__)
/* Currently only needed for fs/cramfs/uncompress.c */
static inline void watchdog_reset_func(void)
{
WATCHDOG_RESET();
}
#endif
/* /*
* Prototypes from $(CPU)/cpu.c. * Prototypes from $(CPU)/cpu.c.
*/ */

View file

@ -844,7 +844,7 @@ int BZ_API(BZ2_bzDecompress) ( bz_stream *strm )
while (True) { while (True) {
#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
WATCHDOG_RESET(); schedule();
#endif #endif
if (s->state == BZ_X_IDLE) return BZ_SEQUENCE_ERROR; if (s->state == BZ_X_IDLE) return BZ_SEQUENCE_ERROR;
if (s->state == BZ_X_OUTPUT) { if (s->state == BZ_X_OUTPUT) {

View file

@ -418,7 +418,7 @@ Int32 BZ2_decompress ( DState* s )
while (True) { while (True) {
#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
WATCHDOG_RESET(); schedule();
#endif #endif
if (nextSym == EOB) break; if (nextSym == EOB) break;
@ -503,7 +503,7 @@ Int32 BZ2_decompress ( DState* s )
kk = MTFA_SIZE-1; kk = MTFA_SIZE-1;
for (ii = 256 / MTFL_SIZE-1; ii >= 0; ii--) { for (ii = 256 / MTFL_SIZE-1; ii >= 0; ii--) {
#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
WATCHDOG_RESET(); schedule();
#endif #endif
for (jj = MTFL_SIZE-1; jj >= 0; jj--) { for (jj = MTFL_SIZE-1; jj >= 0; jj--) {
s->mtfa[kk] = s->mtfa[s->mtfbase[ii] + jj]; s->mtfa[kk] = s->mtfa[s->mtfbase[ii] + jj];
@ -568,7 +568,7 @@ Int32 BZ2_decompress ( DState* s )
while (i != s->origPtr); while (i != s->origPtr);
#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
WATCHDOG_RESET(); schedule();
#endif #endif
s->tPos = s->origPtr; s->tPos = s->origPtr;
s->nblock_used = 0; s->nblock_used = 0;
@ -583,7 +583,7 @@ Int32 BZ2_decompress ( DState* s )
} else { } else {
#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
WATCHDOG_RESET(); schedule();
#endif #endif
/*-- compute the T^(-1) vector --*/ /*-- compute the T^(-1) vector --*/
for (i = 0; i < nblock; i++) { for (i = 0; i < nblock; i++) {

View file

@ -255,7 +255,7 @@ uint32_t crc32_wd(uint32_t crc, const unsigned char *buf, uInt len,
chunk = chunk_sz; chunk = chunk_sz;
crc = crc32(crc, curr, chunk); crc = crc32(crc, curr, chunk);
curr += chunk; curr += chunk;
WATCHDOG_RESET (); schedule();
} }
#else #else
crc = crc32(crc, buf, len); crc = crc32(crc, buf, len);

View file

@ -828,7 +828,7 @@ void efi_timer_check(void)
efi_signal_event(evt); efi_signal_event(evt);
} }
efi_process_event_queue(); efi_process_event_queue();
WATCHDOG_RESET(); schedule();
} }
/** /**
@ -2193,7 +2193,7 @@ static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
/* Give the payload some time to boot */ /* Give the payload some time to boot */
efi_set_watchdog(0); efi_set_watchdog(0);
WATCHDOG_RESET(); schedule();
out: out:
if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) { if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
if (ret != EFI_SUCCESS) if (ret != EFI_SUCCESS)

View file

@ -251,7 +251,7 @@ int gzwrite(unsigned char *src, int len,
puts("abort\n"); puts("abort\n");
goto out; goto out;
} }
WATCHDOG_RESET(); schedule();
} while (s.avail_out == 0); } while (s.avail_out == 0);
/* done when inflate() says it's done */ /* done when inflate() says it's done */
} while (r != Z_STREAM_END); } while (r != Z_STREAM_END);

View file

@ -153,7 +153,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte
UInt32 range = p->range; UInt32 range = p->range;
UInt32 code = p->code; UInt32 code = p->code;
WATCHDOG_RESET(); schedule();
do do
{ {
@ -177,7 +177,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte
state -= (state < 4) ? state : 3; state -= (state < 4) ? state : 3;
symbol = 1; symbol = 1;
WATCHDOG_RESET(); schedule();
do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100); do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100);
} }
@ -188,7 +188,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte
state -= (state < 10) ? 3 : 6; state -= (state < 10) ? 3 : 6;
symbol = 1; symbol = 1;
WATCHDOG_RESET(); schedule();
do do
{ {
@ -321,7 +321,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte
UInt32 mask = 1; UInt32 mask = 1;
unsigned i = 1; unsigned i = 1;
WATCHDOG_RESET(); schedule();
do do
{ {
@ -335,7 +335,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte
{ {
numDirectBits -= kNumAlignBits; numDirectBits -= kNumAlignBits;
WATCHDOG_RESET(); schedule();
do do
{ {
@ -409,7 +409,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte
const Byte *lim = dest + curLen; const Byte *lim = dest + curLen;
dicPos += curLen; dicPos += curLen;
WATCHDOG_RESET(); schedule();
do do
*(dest) = (Byte)*(dest + src); *(dest) = (Byte)*(dest + src);
@ -418,7 +418,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte
else else
{ {
WATCHDOG_RESET(); schedule();
do do
{ {
@ -433,7 +433,7 @@ static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte
} }
while (dicPos < limit && buf < bufLimit); while (dicPos < limit && buf < bufLimit);
WATCHDOG_RESET(); schedule();
NORMALIZE; NORMALIZE;
p->buf = buf; p->buf = buf;

View file

@ -104,7 +104,7 @@ int lzmaBuffToBuffDecompress(unsigned char *outStream, SizeT *uncompressedSize,
/* Decompress */ /* Decompress */
outProcessed = min(outSizeFull, *uncompressedSize); outProcessed = min(outSizeFull, *uncompressedSize);
WATCHDOG_RESET(); schedule();
res = LzmaDecode( res = LzmaDecode(
outStream, &outProcessed, outStream, &outProcessed,

View file

@ -304,7 +304,7 @@ md5_wd(const unsigned char *input, unsigned int len, unsigned char output[16],
chunk = chunk_sz; chunk = chunk_sz;
MD5Update(&context, curr, chunk); MD5Update(&context, curr, chunk);
curr += chunk; curr += chunk;
WATCHDOG_RESET (); schedule();
} }
#else #else
MD5Update(&context, input, len); MD5Update(&context, input, len);

View file

@ -344,7 +344,7 @@ void sha1_csum_wd(const unsigned char *input, unsigned int ilen,
chunk = chunk_sz; chunk = chunk_sz;
sha1_update (&ctx, curr, chunk); sha1_update (&ctx, curr, chunk);
curr += chunk; curr += chunk;
WATCHDOG_RESET (); schedule();
} }
#else #else
sha1_update (&ctx, input, ilen); sha1_update (&ctx, input, ilen);

View file

@ -293,7 +293,7 @@ void sha256_csum_wd(const unsigned char *input, unsigned int ilen,
chunk = chunk_sz; chunk = chunk_sz;
sha256_update(&ctx, curr, chunk); sha256_update(&ctx, curr, chunk);
curr += chunk; curr += chunk;
WATCHDOG_RESET(); schedule();
} }
#else #else
sha256_update(&ctx, input, ilen); sha256_update(&ctx, input, ilen);

View file

@ -309,7 +309,7 @@ void sha384_csum_wd(const unsigned char *input, unsigned int ilen,
chunk = chunk_sz; chunk = chunk_sz;
sha384_update(&ctx, curr, chunk); sha384_update(&ctx, curr, chunk);
curr += chunk; curr += chunk;
WATCHDOG_RESET(); schedule();
} }
#else #else
sha384_update(&ctx, input, ilen); sha384_update(&ctx, input, ilen);
@ -372,7 +372,7 @@ void sha512_csum_wd(const unsigned char *input, unsigned int ilen,
chunk = chunk_sz; chunk = chunk_sz;
sha512_update(&ctx, curr, chunk); sha512_update(&ctx, curr, chunk);
curr += chunk; curr += chunk;
WATCHDOG_RESET(); schedule();
} }
#else #else
sha512_update(&ctx, input, ilen); sha512_update(&ctx, input, ilen);

View file

@ -198,7 +198,7 @@ void udelay(unsigned long usec)
ulong kv; ulong kv;
do { do {
WATCHDOG_RESET(); schedule();
kv = usec > CONFIG_WD_PERIOD ? CONFIG_WD_PERIOD : usec; kv = usec > CONFIG_WD_PERIOD ? CONFIG_WD_PERIOD : usec;
__udelay(kv); __udelay(kv);
usec -= kv; usec -= kv;

View file

@ -25,7 +25,7 @@ int ZEXPORT inflateReset(z_streamp strm)
state->hold = 0; state->hold = 0;
state->bits = 0; state->bits = 0;
state->lencode = state->distcode = state->next = state->codes; state->lencode = state->distcode = state->next = state->codes;
WATCHDOG_RESET(); schedule();
Tracev((stderr, "inflate: reset\n")); Tracev((stderr, "inflate: reset\n"));
return Z_OK; return Z_OK;
} }
@ -543,7 +543,7 @@ int ZEXPORT inflate(z_streamp strm, int flush)
strm->adler = state->check = adler32(0L, Z_NULL, 0); strm->adler = state->check = adler32(0L, Z_NULL, 0);
state->mode = TYPE; state->mode = TYPE;
case TYPE: case TYPE:
WATCHDOG_RESET(); schedule();
if (flush == Z_BLOCK) goto inf_leave; if (flush == Z_BLOCK) goto inf_leave;
case TYPEDO: case TYPEDO:
if (state->last) { if (state->last) {
@ -721,7 +721,7 @@ int ZEXPORT inflate(z_streamp strm, int flush)
Tracev((stderr, "inflate: codes ok\n")); Tracev((stderr, "inflate: codes ok\n"));
state->mode = LEN; state->mode = LEN;
case LEN: case LEN:
WATCHDOG_RESET(); schedule();
if (have >= 6 && left >= 258) { if (have >= 6 && left >= 258) {
RESTORE(); RESTORE();
inflate_fast(strm, out); inflate_fast(strm, out);
@ -933,7 +933,7 @@ int ZEXPORT inflateEnd(z_streamp strm)
return Z_STREAM_ERROR; return Z_STREAM_ERROR;
state = (struct inflate_state FAR *)strm->state; state = (struct inflate_state FAR *)strm->state;
if (state->window != Z_NULL) { if (state->window != Z_NULL) {
WATCHDOG_RESET(); schedule();
ZFREE(strm, state->window); ZFREE(strm, state->window);
} }
ZFREE(strm, strm->state); ZFREE(strm, strm->state);

View file

@ -559,7 +559,7 @@ restart:
* someone sets `net_state' to a state that terminates. * someone sets `net_state' to a state that terminates.
*/ */
for (;;) { for (;;) {
WATCHDOG_RESET(); schedule();
if (arp_timeout_check() > 0) if (arp_timeout_check() > 0)
time_start = get_timer(0); time_start = get_timer(0);

View file

@ -73,7 +73,7 @@ int ecc_post_test(int flags)
for (addr = (u64*)CONFIG_SYS_POST_ECC_START_ADDR, errbit=0; for (addr = (u64*)CONFIG_SYS_POST_ECC_START_ADDR, errbit=0;
addr < (u64*)CONFIG_SYS_POST_ECC_STOP_ADDR; addr++, errbit++ ) { addr < (u64*)CONFIG_SYS_POST_ECC_STOP_ADDR; addr++, errbit++ ) {
WATCHDOG_RESET(); schedule();
ecc_clear(ddr); ecc_clear(ddr);

View file

@ -279,7 +279,7 @@ static int memory_post_test1(unsigned long start,
for (i = 0; i < size / sizeof (ulong); i++) { for (i = 0; i < size / sizeof (ulong); i++) {
mem[i] = val; mem[i] = val;
if (i % 1024 == 0) if (i % 1024 == 0)
WATCHDOG_RESET(); schedule();
} }
for (i = 0; i < size / sizeof (ulong) && !ret; i++) { for (i = 0; i < size / sizeof (ulong) && !ret; i++) {
@ -292,7 +292,7 @@ static int memory_post_test1(unsigned long start,
break; break;
} }
if (i % 1024 == 0) if (i % 1024 == 0)
WATCHDOG_RESET(); schedule();
} }
return ret; return ret;
@ -308,7 +308,7 @@ static int memory_post_test2(unsigned long start, unsigned long size)
for (i = 0; i < size / sizeof (ulong); i++) { for (i = 0; i < size / sizeof (ulong); i++) {
mem[i] = 1 << (i % 32); mem[i] = 1 << (i % 32);
if (i % 1024 == 0) if (i % 1024 == 0)
WATCHDOG_RESET(); schedule();
} }
for (i = 0; i < size / sizeof (ulong) && !ret; i++) { for (i = 0; i < size / sizeof (ulong) && !ret; i++) {
@ -321,7 +321,7 @@ static int memory_post_test2(unsigned long start, unsigned long size)
break; break;
} }
if (i % 1024 == 0) if (i % 1024 == 0)
WATCHDOG_RESET(); schedule();
} }
return ret; return ret;
@ -337,7 +337,7 @@ static int memory_post_test3(unsigned long start, unsigned long size)
for (i = 0; i < size / sizeof (ulong); i++) { for (i = 0; i < size / sizeof (ulong); i++) {
mem[i] = i; mem[i] = i;
if (i % 1024 == 0) if (i % 1024 == 0)
WATCHDOG_RESET(); schedule();
} }
for (i = 0; i < size / sizeof (ulong) && !ret; i++) { for (i = 0; i < size / sizeof (ulong) && !ret; i++) {
@ -350,7 +350,7 @@ static int memory_post_test3(unsigned long start, unsigned long size)
break; break;
} }
if (i % 1024 == 0) if (i % 1024 == 0)
WATCHDOG_RESET(); schedule();
} }
return ret; return ret;
@ -366,7 +366,7 @@ static int memory_post_test4(unsigned long start, unsigned long size)
for (i = 0; i < size / sizeof (ulong); i++) { for (i = 0; i < size / sizeof (ulong); i++) {
mem[i] = ~i; mem[i] = ~i;
if (i % 1024 == 0) if (i % 1024 == 0)
WATCHDOG_RESET(); schedule();
} }
for (i = 0; i < size / sizeof (ulong) && !ret; i++) { for (i = 0; i < size / sizeof (ulong) && !ret; i++) {
@ -379,7 +379,7 @@ static int memory_post_test4(unsigned long start, unsigned long size)
break; break;
} }
if (i % 1024 == 0) if (i % 1024 == 0)
WATCHDOG_RESET(); schedule();
} }
return ret; return ret;
@ -390,15 +390,15 @@ static int memory_post_test_lines(unsigned long start, unsigned long size)
int ret = 0; int ret = 0;
ret = memory_post_dataline((unsigned long long *)start); ret = memory_post_dataline((unsigned long long *)start);
WATCHDOG_RESET(); schedule();
if (!ret) if (!ret)
ret = memory_post_addrline((ulong *)start, (ulong *)start, ret = memory_post_addrline((ulong *)start, (ulong *)start,
size); size);
WATCHDOG_RESET(); schedule();
if (!ret) if (!ret)
ret = memory_post_addrline((ulong *)(start+size-8), ret = memory_post_addrline((ulong *)(start+size-8),
(ulong *)start, size); (ulong *)start, size);
WATCHDOG_RESET(); schedule();
return ret; return ret;
} }
@ -408,25 +408,25 @@ static int memory_post_test_patterns(unsigned long start, unsigned long size)
int ret = 0; int ret = 0;
ret = memory_post_test1(start, size, 0x00000000); ret = memory_post_test1(start, size, 0x00000000);
WATCHDOG_RESET(); schedule();
if (!ret) if (!ret)
ret = memory_post_test1(start, size, 0xffffffff); ret = memory_post_test1(start, size, 0xffffffff);
WATCHDOG_RESET(); schedule();
if (!ret) if (!ret)
ret = memory_post_test1(start, size, 0x55555555); ret = memory_post_test1(start, size, 0x55555555);
WATCHDOG_RESET(); schedule();
if (!ret) if (!ret)
ret = memory_post_test1(start, size, 0xaaaaaaaa); ret = memory_post_test1(start, size, 0xaaaaaaaa);
WATCHDOG_RESET(); schedule();
if (!ret) if (!ret)
ret = memory_post_test2(start, size); ret = memory_post_test2(start, size);
WATCHDOG_RESET(); schedule();
if (!ret) if (!ret)
ret = memory_post_test3(start, size); ret = memory_post_test3(start, size);
WATCHDOG_RESET(); schedule();
if (!ret) if (!ret)
ret = memory_post_test4(start, size); ret = memory_post_test4(start, size);
WATCHDOG_RESET(); schedule();
return ret; return ret;
} }

View file

@ -61,7 +61,7 @@ int cpu_post_test (int flags)
int ic = icache_status(); int ic = icache_status();
int ret = 0; int ret = 0;
WATCHDOG_RESET(); schedule();
if (ic) if (ic)
icache_disable(); icache_disable();
@ -73,7 +73,7 @@ int cpu_post_test (int flags)
ret = cpu_post_test_two (); ret = cpu_post_test_two ();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_twox (); ret = cpu_post_test_twox ();
WATCHDOG_RESET(); schedule();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_three (); ret = cpu_post_test_three ();
if (ret == 0) if (ret == 0)
@ -82,7 +82,7 @@ int cpu_post_test (int flags)
ret = cpu_post_test_threei (); ret = cpu_post_test_threei ();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_andi (); ret = cpu_post_test_andi ();
WATCHDOG_RESET(); schedule();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_srawi (); ret = cpu_post_test_srawi ();
if (ret == 0) if (ret == 0)
@ -91,7 +91,7 @@ int cpu_post_test (int flags)
ret = cpu_post_test_rlwinm (); ret = cpu_post_test_rlwinm ();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_rlwimi (); ret = cpu_post_test_rlwimi ();
WATCHDOG_RESET(); schedule();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_store (); ret = cpu_post_test_store ();
if (ret == 0) if (ret == 0)
@ -100,20 +100,20 @@ int cpu_post_test (int flags)
ret = cpu_post_test_cr (); ret = cpu_post_test_cr ();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_b (); ret = cpu_post_test_b ();
WATCHDOG_RESET(); schedule();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_multi (); ret = cpu_post_test_multi ();
WATCHDOG_RESET(); schedule();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_string (); ret = cpu_post_test_string ();
if (ret == 0) if (ret == 0)
ret = cpu_post_test_complex (); ret = cpu_post_test_complex ();
WATCHDOG_RESET(); schedule();
if (ic) if (ic)
icache_enable(); icache_enable();
WATCHDOG_RESET(); schedule();
return ret; return ret;
} }

View file

@ -43,7 +43,7 @@ int fpu_post_test (int flags)
int ret = 0; int ret = 0;
WATCHDOG_RESET (); schedule();
if (!fpu) if (!fpu)
fpu_enable (); fpu_enable ();
@ -66,7 +66,7 @@ int fpu_post_test (int flags)
if (!fpu) if (!fpu)
fpu_disable (); fpu_disable ();
WATCHDOG_RESET (); schedule();
return ret; return ret;
} }

Some files were not shown because too many files have changed in this diff Show more