/openbmc/linux/Documentation/devicetree/bindings/watchdog/ |
H A D | marvel.txt | 35 - timeout-sec : Contains the watchdog timeout in seconds 43 timeout-sec = <10>;
|
H A D | st_lpc_wdt.txt | 26 - timeout-sec : Watchdog timeout in seconds 38 timeout-sec = <120>;
|
H A D | da9062-wdt.txt | 13 - dlg,wdt-sd: Set what happens on watchdog timeout. If this bit is set the 14 watchdog timeout triggers SHUTDOWN, if cleared the watchdog triggers 17 set the WATCHDOG_SD bit and on timeout watchdog behavior will match the
|
/openbmc/u-boot/arch/arm/mach-uniphier/arm32/ |
H A D | psci.c | 52 int timeout = 1000; in uniphier_smp_kick_all_cpus() local 80 while (--timeout) { in uniphier_smp_kick_all_cpus() 94 if (!timeout) in uniphier_smp_kick_all_cpus()
|
/openbmc/u-boot/drivers/usb/phy/ |
H A D | twl4030.c | 125 long timeout = 1000 * 1000; /* 1 sec */; in twl4030_usb_ulpi_init() local 141 while (!(sts & PHY_DPLL_CLK) && 0 < timeout) { in twl4030_usb_ulpi_init() 144 timeout -= 10; in twl4030_usb_ulpi_init()
|
/openbmc/linux/drivers/power/supply/ |
H A D | bq27xxx_battery_hdq.c | 44 unsigned int timeout = 3; in bq27xxx_battery_hdq_read() local 64 } while (temp != upper && --timeout); in bq27xxx_battery_hdq_read() 66 if (timeout == 0) in bq27xxx_battery_hdq_read()
|
/openbmc/linux/include/linux/ |
H A D | key-type.h | 177 unsigned timeout, 184 unsigned timeout, in key_negate_and_link() argument 188 return key_reject_and_link(key, timeout, ENOKEY, keyring, authkey); in key_negate_and_link()
|
/openbmc/linux/tools/testing/selftests/kselftest/ |
H A D | runner.sh | 38 if [ -x /usr/bin/timeout ] ; then 39 /usr/bin/timeout --foreground "$kselftest_timeout" \ 40 /usr/bin/timeout "$kselftest_timeout" $1
|
/openbmc/linux/arch/sparc/kernel/ |
H A D | led.c | 39 unsigned long timeout = led_blink_timer_timeout; in led_blink() local 44 if (!timeout) { /* blink according to load */ in led_blink() 48 led_blink_timer.expires = jiffies + (timeout * HZ); in led_blink()
|
/openbmc/linux/Documentation/devicetree/bindings/hwmon/ |
H A D | stts751.txt | 8 - smbus-timeout-disable: when set, the smbus timeout function will be disabled
|
/openbmc/u-boot/drivers/mmc/ |
H A D | sh_sdhi.c | 156 timeout--; in sh_sdhi_wait_interrupt_flag() 157 if (timeout < 0) { in sh_sdhi_wait_interrupt_flag() 193 timeout = 100000; in sh_sdhi_clock_control() 195 while (timeout--) { in sh_sdhi_clock_control() 200 if (timeout) in sh_sdhi_clock_control() 211 u32 timeout; in sh_sdhi_sync_reset() local 217 timeout = 100000; in sh_sdhi_sync_reset() 218 while (timeout--) { in sh_sdhi_sync_reset() 224 if (!timeout) in sh_sdhi_sync_reset() 580 timeout = 100000; in sh_sdhi_start_cmd() [all …]
|
/openbmc/u-boot/drivers/usb/eth/ |
H A D | smsc95xx.c | 478 int timeout; in smsc95xx_init_common() local 490 timeout = 0; in smsc95xx_init_common() 496 timeout++; in smsc95xx_init_common() 499 if (timeout >= 100) { in smsc95xx_init_common() 509 timeout = 0; in smsc95xx_init_common() 515 timeout++; in smsc95xx_init_common() 517 if (timeout >= 100) { in smsc95xx_init_common() 654 timeout = 0; in smsc95xx_init_common() 659 if (timeout == 0) in smsc95xx_init_common() 662 timeout += TIMEOUT_RESOLUTION; in smsc95xx_init_common() [all …]
|
/openbmc/linux/drivers/i2c/busses/ |
H A D | i2c-amd756.c | 100 int timeout = 0; in amd756_transaction() local 114 (timeout++ < MAX_TIMEOUT)); in amd756_transaction() 116 if (timeout > MAX_TIMEOUT) { in amd756_transaction() 120 timeout = 0; in amd756_transaction() 130 } while ((temp & GS_HST_STS) && (timeout++ < MAX_TIMEOUT)); in amd756_transaction() 133 if (timeout > MAX_TIMEOUT) { in amd756_transaction()
|
/openbmc/linux/kernel/ |
H A D | umh.c | 240 long usermodehelper_read_lock_wait(long timeout) in usermodehelper_read_lock_wait() argument 244 if (timeout < 0) in usermodehelper_read_lock_wait() 256 timeout = schedule_timeout(timeout); in usermodehelper_read_lock_wait() 257 if (!timeout) in usermodehelper_read_lock_wait() 263 return timeout; in usermodehelper_read_lock_wait()
|
/openbmc/linux/drivers/watchdog/ |
H A D | realtek_otto_wdt.c | 123 static int otto_wdt_determine_timeouts(struct watchdog_device *wdev, unsigned int timeout, in otto_wdt_determine_timeouts() argument 128 unsigned int timeout_ms = timeout * 1000; in otto_wdt_determine_timeouts() 161 ctrl->wdev.timeout = timeout_ms / 1000; in otto_wdt_determine_timeouts() 176 return otto_wdt_determine_timeouts(wdev, wdev->timeout, val); in otto_wdt_set_pretimeout() 338 ctrl->wdev.timeout = min(30U, ctrl->wdev.max_hw_heartbeat_ms / 1000); in otto_wdt_probe() 345 ret = otto_wdt_determine_timeouts(&ctrl->wdev, ctrl->wdev.timeout, 1); in otto_wdt_probe()
|
/openbmc/linux/drivers/input/keyboard/ |
H A D | nomadik-ske-keypad.c | 98 int timeout = keypad->board->debounce_ms; in ske_keypad_chip_init() local 101 while ((readl(keypad->reg_base + SKE_RIS) != 0x00000000) && timeout--) in ske_keypad_chip_init() 104 if (timeout == -1) in ske_keypad_chip_init() 202 int timeout = keypad->board->debounce_ms; in ske_keypad_irq() local 208 while ((readl(keypad->reg_base + SKE_CR) & SKE_KPASON) && --timeout) in ske_keypad_irq() 215 while ((readl(keypad->reg_base + SKE_RIS)) && --timeout) in ske_keypad_irq()
|
/openbmc/openbmc-test-automation/gui/gui_test/hardware_status_menu/ |
H A D | test_sensors_sub_menu.robot | 57 Wait Until Page Contains Ambient timeout=120s 64 Wait Until Page Contains Element ${xpath_sensors_filter} timeout=15s 89 Wait Until Page Contains Element ${xpath_sensors_filter} timeout=15s 110 Wait Until Page Contains Element ${xpath_sensors_filter} timeout=15s 114 Wait Until Page Contains Element ${xpath_filter_ok} timeout=5s 135 Wait Until Element Is Not Visible ${xpath_page_loading_progress_bar} timeout=15min
|
/openbmc/qemu/python/qemu/utils/ |
H A D | qemu_ga_client.py | 76 def sync(self, timeout: Optional[float] = 3) -> None: 78 if not self.ping(timeout): 148 def ping(self, timeout: Optional[float]) -> bool: 149 self.qga.settimeout(timeout) 237 timeout = 3.0 if len(args) == 0 else float(args[0]) 238 alive = client.ping(timeout)
|
/openbmc/u-boot/drivers/i2c/ |
H A D | fsl_i2c.c | 214 const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); in fsl_i2c_fixup() local 231 if ((get_ticks() - timeval) > timeout) in fsl_i2c_fixup() 247 if ((get_ticks() - timeval) > timeout) in fsl_i2c_fixup() 263 const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); in __i2c_init() local 282 if ((get_ticks() - timeval) < timeout) in __i2c_init() 296 const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); in i2c_wait4bus() local 299 if ((get_ticks() - timeval) > timeout) in i2c_wait4bus() 310 const unsigned long long timeout = usec2ticks(CONFIG_I2C_TIMEOUT); in i2c_wait() local 337 } while ((get_ticks() - timeval) < timeout); in i2c_wait()
|
/openbmc/u-boot/arch/arm/mach-at91/ |
H A D | phy.c | 25 unsigned long const timeout = 1000; /* 1000ms */ in at91_phy_reset() local 48 if (get_timer(start) >= timeout) { in at91_phy_reset()
|
/openbmc/linux/drivers/nfc/ |
H A D | trf7970a.c | 452 unsigned int timeout; member 652 unsigned int timeout; in trf7970a_transmit() local 689 if (!trf->timeout) in trf7970a_transmit() 692 timeout = trf->timeout; in trf7970a_transmit() 894 if (!trf->timeout) { in trf7970a_irq() 1000 trf->timeout, trf->state); in trf7970a_issue_eof() 1493 if (timeout) { in trf7970a_send_cmd() 1521 trf->timeout = timeout; in trf7970a_send_cmd() 1776 trf->timeout = timeout; in _trf7970a_tg_listen() 1799 trf->state, timeout); in trf7970a_tg_listen() [all …]
|
/openbmc/linux/drivers/net/ |
H A D | sb1000.c | 265 unsigned long timeout; in card_wait_for_busy_clear() local 268 timeout = jiffies + TimeOutJiffies; in card_wait_for_busy_clear() 274 if (time_after_eq(jiffies, timeout)) { in card_wait_for_busy_clear() 289 unsigned long timeout; in card_wait_for_ready() local 292 timeout = jiffies + TimeOutJiffies; in card_wait_for_ready() 298 if (time_after_eq(jiffies, timeout)) { in card_wait_for_ready() 366 unsigned long timeout; in sb1000_wait_for_ready() local 370 if (time_after_eq(jiffies, timeout)) { in sb1000_wait_for_ready() 378 if (time_after_eq(jiffies, timeout)) { in sb1000_wait_for_ready() 392 unsigned long timeout; in sb1000_wait_for_ready_clear() local [all …]
|
/openbmc/openbmc-test-automation/gui/lib/ |
H A D | gui_resource.robot | 103 Wait Until Page Contains Overview timeout=60s 105 ... ${xpath_page_loading_progress_bar} timeout=120s 195 Wait Until Page Contains Element ${xpath_add_dns_ip_address_button} timeout=15sec 203 Wait Until Page Contains Element ${xpath_add_dns_ip_address_button} timeout=10sec 204 Wait Until Page Contains ${dns_server} timeout=40sec 219 Wait Until Element Is Not Visible ${xpath_progress_bar} timeout=30 231 Wait Until Element Is Visible ${xpath_power_poweron} timeout=60 245 Wait Until Element Is Visible ${xpath_power_shutdown} timeout=60 259 Wait Until Element Is Visible ${xpath_confirm} timeout=30 261 Wait Until Element Is Visible ${xpath_power_reboot} timeout=60
|
/openbmc/linux/arch/mips/jazz/ |
H A D | reset.c | 41 unsigned long timeout = start + HZ/2; in kb_wait() local 46 } while (time_before_eq(jiffies, timeout)); in kb_wait()
|
/openbmc/u-boot/drivers/net/fsl-mc/ |
H A D | mc_sys.c | 34 int timeout = 12000; in mc_send_command() local 43 if (--timeout == 0) { in mc_send_command()
|