Searched refs:gpiod_reset (Results 1 – 11 of 11) sorted by relevance
/Linux-v6.1/drivers/usb/phy/ |
D | phy-generic.c | 62 if (!nop->gpiod_reset) in nop_reset() 65 gpiod_set_value_cansleep(nop->gpiod_reset, 1); in nop_reset() 67 gpiod_set_value_cansleep(nop->gpiod_reset, 0); in nop_reset() 161 gpiod_set_value_cansleep(nop->gpiod_reset, 1); in usb_gen_phy_shutdown() 223 nop->gpiod_reset = devm_gpiod_get_optional(dev, "reset", in usb_phy_gen_create_phy() 225 err = PTR_ERR_OR_ZERO(nop->gpiod_reset); in usb_phy_gen_create_phy() 236 if (nop->gpiod_reset) in usb_phy_gen_create_phy() 237 gpiod_direction_output(nop->gpiod_reset, 1); in usb_phy_gen_create_phy()
|
D | phy-generic.h | 14 struct gpio_desc *gpiod_reset; member
|
/Linux-v6.1/drivers/nfc/st-nci/ |
D | spi.c | 39 struct gpio_desc *gpiod_reset; member 48 gpiod_set_value(phy->gpiod_reset, 0); in st_nci_spi_enable() 50 gpiod_set_value(phy->gpiod_reset, 1); in st_nci_spi_enable() 236 phy->gpiod_reset = devm_gpiod_get(&dev->dev, "reset", GPIOD_OUT_HIGH); in st_nci_spi_probe() 237 if (IS_ERR(phy->gpiod_reset)) { in st_nci_spi_probe() 239 return PTR_ERR(phy->gpiod_reset); in st_nci_spi_probe()
|
D | i2c.c | 38 struct gpio_desc *gpiod_reset; member 47 gpiod_set_value(phy->gpiod_reset, 0); in st_nci_i2c_enable() 49 gpiod_set_value(phy->gpiod_reset, 1); in st_nci_i2c_enable() 223 phy->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); in st_nci_i2c_probe() 224 if (IS_ERR(phy->gpiod_reset)) { in st_nci_i2c_probe()
|
/Linux-v6.1/sound/soc/codecs/ |
D | cs42xx8.c | 49 struct gpio_desc *gpiod_reset; member 550 cs42xx8->gpiod_reset = devm_gpiod_get_optional(dev, "reset", in cs42xx8_probe() 552 if (IS_ERR(cs42xx8->gpiod_reset)) in cs42xx8_probe() 553 return PTR_ERR(cs42xx8->gpiod_reset); in cs42xx8_probe() 555 gpiod_set_value_cansleep(cs42xx8->gpiod_reset, 0); in cs42xx8_probe() 637 gpiod_set_value_cansleep(cs42xx8->gpiod_reset, 0); in cs42xx8_runtime_resume() 678 gpiod_set_value_cansleep(cs42xx8->gpiod_reset, 1); in cs42xx8_runtime_suspend()
|
D | rt5659.h | 1797 struct gpio_desc *gpiod_reset; member
|
D | rt5665.c | 48 struct gpio_desc *gpiod_reset; member
|
D | rt5659.c | 4120 rt5659->gpiod_reset = devm_gpiod_get_optional(&i2c->dev, "reset", in rt5659_i2c_probe()
|
/Linux-v6.1/drivers/gpu/drm/bridge/analogix/ |
D | analogix-anx6345.c | 56 struct gpio_desc *gpiod_reset; member 309 gpiod_set_value_cansleep(anx6345->gpiod_reset, 1); in anx6345_poweron() 334 gpiod_set_value_cansleep(anx6345->gpiod_reset, 0); in anx6345_poweron() 352 gpiod_set_value_cansleep(anx6345->gpiod_reset, 1); in anx6345_poweroff() 742 anx6345->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW); in anx6345_i2c_probe() 743 if (IS_ERR(anx6345->gpiod_reset)) { in anx6345_i2c_probe() 745 return PTR_ERR(anx6345->gpiod_reset); in anx6345_i2c_probe()
|
D | analogix-anx78xx.c | 60 struct gpio_desc *gpiod_reset; member 486 gpiod_set_value_cansleep(pdata->gpiod_reset, 1); in anx78xx_poweron() 492 gpiod_set_value_cansleep(pdata->gpiod_reset, 0); in anx78xx_poweron() 511 gpiod_set_value_cansleep(pdata->gpiod_reset, 1); in anx78xx_poweroff() 599 pdata->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW); in anx78xx_init_pdata() 601 return PTR_ERR_OR_ZERO(pdata->gpiod_reset); in anx78xx_init_pdata()
|
/Linux-v6.1/drivers/gpu/drm/bridge/ |
D | ite-it6505.c | 350 struct gpio_desc *gpiod_reset; member 2561 if (pdata->gpiod_reset) { in it6505_poweron() 2563 gpiod_set_value_cansleep(pdata->gpiod_reset, 0); in it6505_poweron() 2565 gpiod_set_value_cansleep(pdata->gpiod_reset, 1); in it6505_poweron() 2591 if (pdata->gpiod_reset) in it6505_poweroff() 2592 gpiod_set_value_cansleep(pdata->gpiod_reset, 0); in it6505_poweroff() 3056 pdata->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW); in it6505_init_pdata() 3057 if (IS_ERR(pdata->gpiod_reset)) { in it6505_init_pdata() 3059 return PTR_ERR(pdata->gpiod_reset); in it6505_init_pdata()
|