Lines Matching full:duration
69 * * Pulse duration
73 * Pulse duration configuration is available on both the AST2400 and AST2500,
254 u32 duration; in aspeed_wdt_probe() local
351 if (!of_property_read_u32(np, "aspeed,ext-pulse-duration", &duration)) { in aspeed_wdt_probe()
354 if (duration == 0 || duration > max_duration) { in aspeed_wdt_probe()
355 dev_err(dev, "Invalid pulse duration: %uus\n", in aspeed_wdt_probe()
356 duration); in aspeed_wdt_probe()
357 duration = max(1U, min(max_duration, duration)); in aspeed_wdt_probe()
358 dev_info(dev, "Pulse duration set to %uus\n", in aspeed_wdt_probe()
359 duration); in aspeed_wdt_probe()
367 * "This register decides the asserting duration of wdt_ext and in aspeed_wdt_probe()
369 * default asserting duration of wdt_ext and wdt_rstarm is in aspeed_wdt_probe()
374 writel(duration - 1, wdt->base + WDT_RESET_WIDTH); in aspeed_wdt_probe()