Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/gpu/drm/bridge/
Dparade-ps8622.c51 struct gpio_desc *gpio_rst; member
348 gpiod_set_value(ps8622->gpio_rst, 0); in ps8622_pre_enable()
371 gpiod_set_value(ps8622->gpio_rst, 1); in ps8622_pre_enable()
416 gpiod_set_value(ps8622->gpio_rst, 0); in ps8622_post_disable()
480 ps8622->gpio_rst = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); in ps8622_probe()
481 if (IS_ERR(ps8622->gpio_rst)) { in ps8622_probe()
482 ret = PTR_ERR(ps8622->gpio_rst); in ps8622_probe()
/linux-6.12.1/drivers/pci/controller/
Dpcie-mt7621.c85 struct gpio_desc *gpio_rst; member
163 if (port->gpio_rst) in mt7621_rst_gpio_pcie_assert()
164 gpiod_set_value(port->gpio_rst, 1); in mt7621_rst_gpio_pcie_assert()
169 if (port->gpio_rst) in mt7621_rst_gpio_pcie_deassert()
170 gpiod_set_value(port->gpio_rst, 0); in mt7621_rst_gpio_pcie_deassert()
236 port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot, in mt7621_pcie_parse_port()
238 if (IS_ERR(port->gpio_rst)) { in mt7621_pcie_parse_port()
240 err = PTR_ERR(port->gpio_rst); in mt7621_pcie_parse_port()
/linux-6.12.1/drivers/input/touchscreen/
Dzforce_ts.c111 struct gpio_desc *gpio_rst; member
665 gpiod_set_value_cansleep(ts->gpio_rst, 1); in zforce_reset()
691 ts->gpio_rst = devm_gpiod_get_optional(&client->dev, "reset", in zforce_probe()
693 error = PTR_ERR_OR_ZERO(ts->gpio_rst); in zforce_probe()
698 if (ts->gpio_rst) { in zforce_probe()
721 ts->gpio_rst = devm_gpiod_get_index(&client->dev, NULL, 1, in zforce_probe()
723 error = PTR_ERR_OR_ZERO(ts->gpio_rst); in zforce_probe()
800 gpiod_set_value_cansleep(ts->gpio_rst, 0); in zforce_probe()
Dauo-pixcir-ts.c117 struct gpio_desc *gpio_rst; member
482 gpiod_set_value_cansleep(ts->gpio_rst, 1); in auo_pixcir_reset()
559 ts->gpio_rst = devm_gpiod_get_index(&client->dev, NULL, 1, in auo_pixcir_probe()
561 error = PTR_ERR_OR_ZERO(ts->gpio_rst); in auo_pixcir_probe()
568 gpiod_set_consumer_name(ts->gpio_rst, "auo_pixcir_ts_rst"); in auo_pixcir_probe()
/linux-6.12.1/sound/soc/codecs/
Dpcm3168a.c61 struct gpio_desc *gpio_rst; member
739 pcm3168a->gpio_rst = devm_gpiod_get_optional(dev, "reset", in pcm3168a_probe()
742 if (IS_ERR(pcm3168a->gpio_rst)) in pcm3168a_probe()
743 return dev_err_probe(dev, PTR_ERR(pcm3168a->gpio_rst), in pcm3168a_probe()
783 if (pcm3168a->gpio_rst) { in pcm3168a_probe()
841 gpiod_set_value_cansleep(pcm3168a->gpio_rst, 1); in pcm3168a_remove()