/Linux-v6.6/drivers/remoteproc/ |
D | wkup_m3_rproc.c | 53 struct reset_control *rsts; member 64 error = reset_control_deassert(wkupm3->rsts); in wkup_m3_rproc_start() 66 if (!wkupm3->rsts && pdata->deassert_reset(pdev, pdata->reset_name)) { in wkup_m3_rproc_start() 82 error = reset_control_assert(wkupm3->rsts); in wkup_m3_rproc_stop() 84 if (!wkupm3->rsts && pdata->assert_reset(pdev, pdata->reset_name)) { in wkup_m3_rproc_stop() 172 wkupm3->rsts = devm_reset_control_get_optional_shared(dev, "rstctrl"); in wkup_m3_rproc_probe() 173 if (IS_ERR(wkupm3->rsts)) in wkup_m3_rproc_probe() 174 return PTR_ERR(wkupm3->rsts); in wkup_m3_rproc_probe() 175 if (!wkupm3->rsts) { in wkup_m3_rproc_probe()
|
/Linux-v6.6/drivers/clk/renesas/ |
D | rcar-usb2-clock-sel.c | 38 struct reset_control *rsts; member 66 ret = reset_control_deassert(priv->rsts); in usb2_clock_sel_enable() 72 reset_control_assert(priv->rsts); in usb2_clock_sel_enable() 88 reset_control_assert(priv->rsts); in usb2_clock_sel_disable() 158 priv->rsts = devm_reset_control_array_get_shared(dev); in rcar_usb2_clock_sel_probe() 159 if (IS_ERR(priv->rsts)) in rcar_usb2_clock_sel_probe() 160 return PTR_ERR(priv->rsts); in rcar_usb2_clock_sel_probe()
|
/Linux-v6.6/drivers/usb/host/ |
D | ehci-platform.c | 49 struct reset_control *rsts; member 318 priv->rsts = devm_reset_control_array_get_optional_shared(&dev->dev); in ehci_platform_probe() 319 if (IS_ERR(priv->rsts)) { in ehci_platform_probe() 320 err = PTR_ERR(priv->rsts); in ehci_platform_probe() 324 err = reset_control_deassert(priv->rsts); in ehci_platform_probe() 389 reset_control_assert(priv->rsts); in ehci_platform_probe() 417 reset_control_assert(priv->rsts); in ehci_platform_remove()
|
/Linux-v6.6/drivers/ata/ |
D | libahci_platform.c | 163 return reset_control_reset(hpriv->rsts); in ahci_platform_deassert_rsts() 165 return reset_control_deassert(hpriv->rsts); in ahci_platform_deassert_rsts() 182 return reset_control_rearm(hpriv->rsts); in ahci_platform_assert_rsts() 184 return reset_control_assert(hpriv->rsts); in ahci_platform_assert_rsts() 537 hpriv->rsts = devm_reset_control_array_get_optional_shared(dev); in ahci_platform_get_resources() 538 if (IS_ERR(hpriv->rsts)) { in ahci_platform_get_resources() 539 rc = PTR_ERR(hpriv->rsts); in ahci_platform_get_resources()
|
D | ahci.h | 351 struct reset_control *rsts; /* Optional */ member
|
/Linux-v6.6/drivers/usb/renesas_usbhs/ |
D | common.c | 630 priv->rsts = devm_reset_control_array_get_optional_shared(dev); in usbhs_probe() 631 if (IS_ERR(priv->rsts)) in usbhs_probe() 632 return PTR_ERR(priv->rsts); in usbhs_probe() 691 ret = reset_control_deassert(priv->rsts); in usbhs_probe() 752 reset_control_assert(priv->rsts); in usbhs_probe() 779 reset_control_assert(priv->rsts); in usbhs_remove()
|
D | common.h | 282 struct reset_control *rsts; member
|
/Linux-v6.6/drivers/watchdog/ |
D | starfive-wdt.c | 184 struct reset_control *rsts; in starfive_wdt_reset_init() local 187 rsts = devm_reset_control_array_get_exclusive(dev); in starfive_wdt_reset_init() 188 if (IS_ERR(rsts)) in starfive_wdt_reset_init() 189 return dev_err_probe(dev, PTR_ERR(rsts), "failed to get resets\n"); in starfive_wdt_reset_init() 191 ret = reset_control_deassert(rsts); in starfive_wdt_reset_init()
|
/Linux-v6.6/drivers/clk/baikal-t1/ |
D | clk-ccu-div.c | 120 struct ccu_rst *rsts; member 437 data->rsts = ccu_rst_hw_register(&init); in ccu_div_rst_register() 438 if (IS_ERR(data->rsts)) { in ccu_div_rst_register() 441 return PTR_ERR(data->rsts); in ccu_div_rst_register()
|
/Linux-v6.6/drivers/net/ethernet/intel/ixgbevf/ |
D | mbx.c | 112 hw->mbx.stats.rsts++; in ixgbevf_clear_rst_vf() 188 hw->mbx.stats.rsts++; in ixgbevf_check_for_rst_vf() 426 mbx->stats.rsts = 0; in ixgbevf_init_mbx_params_vf()
|
D | vf.h | 91 u32 rsts; member
|
/Linux-v6.6/drivers/net/ethernet/intel/igbvf/ |
D | mbx.c | 199 hw->mbx.stats.rsts++; in e1000_check_for_rst_vf() 333 mbx->stats.rsts = 0; in e1000_init_mbx_params_vf()
|
D | vf.h | 200 u32 rsts; member
|
/Linux-v6.6/drivers/bus/ |
D | ti-sysc.c | 138 struct reset_control *rsts; member 635 ddata->rsts = in sysc_init_resets() 638 return PTR_ERR_OR_ZERO(ddata->rsts); in sysc_init_resets() 1274 reset_control_assert(ddata->rsts); in sysc_runtime_suspend_legacy() 1297 reset_control_deassert(ddata->rsts); in sysc_runtime_resume_legacy() 1334 reset_control_assert(ddata->rsts); in sysc_runtime_suspend() 1362 reset_control_deassert(ddata->rsts); in sysc_runtime_resume() 2211 error = reset_control_deassert(ddata->rsts); in sysc_init_module() 2252 reset_control_assert(ddata->rsts); in sysc_init_module() 3350 reset_control_assert(ddata->rsts); in sysc_probe() [all …]
|
/Linux-v6.6/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_mbx.c | 294 hw->mbx.stats.rsts++; in ixgbe_check_for_rst_pf() 420 mbx->stats.rsts = 0; in ixgbe_init_mbx_params_pf()
|
D | ixgbe_type.h | 3621 u32 rsts; member
|
/Linux-v6.6/drivers/net/ethernet/intel/igb/ |
D | e1000_mbx.c | 308 hw->mbx.stats.rsts++; in igb_check_for_rst_pf() 471 mbx->stats.rsts = 0; in igb_init_mbx_params_pf()
|
D | e1000_hw.h | 494 u32 rsts; member
|