Searched +full:watchdog +full:- +full:ping +full:- +full:gpios (Results 1 – 4 of 4) sorted by relevance
/Linux-v6.1/Documentation/devicetree/bindings/mfd/ |
D | rohm,bd9576-pmic.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 4 $id: http://devicetree.org/schemas/mfd/rohm,bd9576-pmic.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com> 14 powering the R-Car series processors. 16 monitoring. A watchdog logic with slow ping/windowed modes is also included. 21 - rohm,bd9576 22 - rohm,bd9573 32 rohm,vout1-en-low: [all …]
|
/Linux-v6.1/drivers/watchdog/ |
D | mena21_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * Watchdog driver for the A21 VME CPU Boards 14 #include <linux/watchdog.h> 34 struct gpio_desc *gpios[NUM_GPIOS]; member 39 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" 46 reset |= gpiod_get_value(drv->gpios[GPIO_WD_RST0]) ? (1 << 0) : 0; in a21_wdt_get_bootstatus() 47 reset |= gpiod_get_value(drv->gpios[GPIO_WD_RST1]) ? (1 << 1) : 0; in a21_wdt_get_bootstatus() 48 reset |= gpiod_get_value(drv->gpios[GPIO_WD_RST2]) ? (1 << 2) : 0; in a21_wdt_get_bootstatus() 57 gpiod_set_value(drv->gpios[GPIO_WD_ENAB], 1); in a21_wdt_start() 66 gpiod_set_value(drv->gpios[GPIO_WD_ENAB], 0); in a21_wdt_stop() [all …]
|
D | max63xx_wdt.c | 2 * drivers/char/watchdog/max63xx_wdt.c 4 * Driver for max63{69,70,71,72,73,74} watchdog timers 12 * This driver assumes the watchdog pins are memory mapped (as it is 13 * the case for the Arcom Zeus). Should it be connected over GPIOs or 23 #include <linux/watchdog.h> 39 * to ping the watchdog. 57 void (*ping)(struct max63xx_wdt *wdt); member 106 while (table->twd) { in max63xx_select_timeout() 107 if (value <= table->twd) { in max63xx_select_timeout() 108 if (nodelay && table->tdelay == 0) in max63xx_select_timeout() [all …]
|
/Linux-v6.1/Documentation/driver-api/gpio/ |
D | drivers-on-gpio.rst | 6 the right in-kernel and userspace APIs/ABIs for the job, and that these 10 - leds-gpio: drivers/leds/leds-gpio.c will handle LEDs connected to GPIO 13 - ledtrig-gpio: drivers/leds/trigger/ledtrig-gpio.c will provide a LED trigger, 15 (and that LED may in turn use the leds-gpio as per above). 17 - gpio-keys: drivers/input/keyboard/gpio_keys.c is used when your GPIO line 20 - gpio-keys-polled: drivers/input/keyboard/gpio_keys_polled.c is used when your 24 - gpio_mouse: drivers/input/mouse/gpio_mouse.c is used to provide a mouse with 25 up to three buttons by simply using GPIOs and no mouse port. You can cut the 29 - gpio-beeper: drivers/input/misc/gpio-beeper.c is used to provide a beep from 32 - extcon-gpio: drivers/extcon/extcon-gpio.c is used when you need to read an [all …]
|