Home
last modified time | relevance | path

Searched refs:gpio_rst (Results 1 – 6 of 6) sorted by relevance

/Linux-v5.4/drivers/gpu/drm/bridge/
Dparade-ps8622.c52 struct gpio_desc *gpio_rst; member
359 gpiod_set_value(ps8622->gpio_rst, 0); in ps8622_pre_enable()
387 gpiod_set_value(ps8622->gpio_rst, 1); in ps8622_pre_enable()
452 gpiod_set_value(ps8622->gpio_rst, 0); in ps8622_post_disable()
558 ps8622->gpio_rst = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); in ps8622_probe()
559 if (IS_ERR(ps8622->gpio_rst)) { in ps8622_probe()
560 ret = PTR_ERR(ps8622->gpio_rst); in ps8622_probe()
/Linux-v5.4/drivers/input/touchscreen/
Dzforce_ts.c115 struct gpio_desc *gpio_rst; member
160 gpiod_set_value_cansleep(ts->gpio_rst, 1); in zforce_reset_assert()
165 gpiod_set_value_cansleep(ts->gpio_rst, 0); in zforce_reset_deassert()
753 ts->gpio_rst = devm_gpiod_get_optional(&client->dev, "reset", in zforce_probe()
755 if (IS_ERR(ts->gpio_rst)) { in zforce_probe()
756 ret = PTR_ERR(ts->gpio_rst); in zforce_probe()
762 if (ts->gpio_rst) { in zforce_probe()
788 ts->gpio_rst = devm_gpiod_get_index(&client->dev, NULL, 1, in zforce_probe()
790 if (IS_ERR(ts->gpio_rst)) { in zforce_probe()
791 ret = PTR_ERR(ts->gpio_rst); in zforce_probe()
Dauo-pixcir-ts.c487 pdata->gpio_rst = of_get_gpio(np, 1); in auo_pixcir_parse_dt()
488 if (!gpio_is_valid(pdata->gpio_rst)) { in auo_pixcir_parse_dt()
519 gpio_set_value(ts->pdata->gpio_rst, 0); in auo_pixcir_reset()
596 error = devm_gpio_request_one(&client->dev, pdata->gpio_rst, in auo_pixcir_probe()
601 pdata->gpio_rst, error); in auo_pixcir_probe()
/Linux-v5.4/include/linux/platform_data/
Drtc-ds2404.h16 unsigned int gpio_rst; member
/Linux-v5.4/include/linux/input/
Dauo-pixcir-ts.h36 int gpio_rst; member
/Linux-v5.4/drivers/rtc/
Drtc-ds2404.c51 ds2404_gpio[DS2404_RST].gpio = pdata->gpio_rst; in ds2404_gpio_map()