/linux/drivers/remoteproc/ |
H A 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/drivers/phy/rockchip/ |
H A D | phy-rockchip-samsung-hdptx.c | 278 struct reset_control_bulk_data rsts[RST_MAX]; member 596 reset_control_assert(hdptx->rsts[RST_APB].rstc); in rk_hdptx_pre_power_up() 601 reset_control_assert(hdptx->rsts[RST_CMN].rstc); in rk_hdptx_pre_power_up() 669 reset_control_assert(hdptx->rsts[RST_PHY].rstc); in rk_hdptx_phy_disable() 1101 hdptx->rsts[RST_PHY].id = "phy"; in rk_hdptx_phy_probe() 1102 hdptx->rsts[RST_APB].id = "apb"; in rk_hdptx_phy_probe() 1103 hdptx->rsts[RST_INIT].id = "init"; in rk_hdptx_phy_probe() 1104 hdptx->rsts[RST_CMN].id = "cmn"; in rk_hdptx_phy_probe() 1105 hdptx->rsts[RST_LANE].id = "lane"; in rk_hdptx_phy_probe() 1106 hdptx->rsts[RST_ROPLL].id = "ropll"; in rk_hdptx_phy_probe() [all …]
|
H A D | phy-rockchip-usbdp.c | 170 struct reset_control_bulk_data *rsts; member 447 return reset_control_bulk_assert(udphy->num_rsts, udphy->rsts); in rk_udphy_reset_assert_all() 452 return reset_control_bulk_deassert(udphy->num_rsts, udphy->rsts); in rk_udphy_reset_deassert_all() 457 struct reset_control_bulk_data *list = udphy->rsts; in rk_udphy_reset_deassert() 474 udphy->rsts = devm_kcalloc(dev, udphy->num_rsts, in rk_udphy_reset_init() 475 sizeof(*udphy->rsts), GFP_KERNEL); in rk_udphy_reset_init() 476 if (!udphy->rsts) in rk_udphy_reset_init() 480 udphy->rsts[idx].id = cfg->rst_list[idx]; in rk_udphy_reset_init() 483 udphy->rsts); in rk_udphy_reset_init()
|
/linux/drivers/clk/renesas/ |
H A 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/drivers/usb/host/ |
H A 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/drivers/ata/ |
H A 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() 533 hpriv->rsts = devm_reset_control_array_get_optional_shared(dev); in ahci_platform_get_resources() 534 if (IS_ERR(hpriv->rsts)) { in ahci_platform_get_resources() 535 rc = PTR_ERR(hpriv->rsts); in ahci_platform_get_resources()
|
H A D | ahci_ceva.c | 263 hpriv->rsts = devm_reset_control_get_optional_exclusive(&pdev->dev, in ceva_ahci_probe() 265 if (IS_ERR(hpriv->rsts)) in ceva_ahci_probe() 266 return dev_err_probe(&pdev->dev, PTR_ERR(hpriv->rsts), in ceva_ahci_probe()
|
H A D | ahci.h | 350 struct reset_control *rsts; /* Optional */ member
|
/linux/drivers/usb/renesas_usbhs/ |
H A D | common.c | 641 priv->rsts = devm_reset_control_array_get_optional_shared(dev); in usbhs_probe() 642 if (IS_ERR(priv->rsts)) in usbhs_probe() 643 return PTR_ERR(priv->rsts); in usbhs_probe() 702 ret = reset_control_deassert(priv->rsts); in usbhs_probe() 763 reset_control_assert(priv->rsts); in usbhs_probe() 790 reset_control_assert(priv->rsts); in usbhs_remove()
|
H A D | common.h | 282 struct reset_control *rsts; member
|
/linux/drivers/watchdog/ |
H A D | starfive-wdt.c | 186 struct reset_control *rsts; in starfive_wdt_reset_init() local 189 rsts = devm_reset_control_array_get_exclusive(dev); in starfive_wdt_reset_init() 190 if (IS_ERR(rsts)) in starfive_wdt_reset_init() 191 return dev_err_probe(dev, PTR_ERR(rsts), "failed to get resets\n"); in starfive_wdt_reset_init() 193 ret = reset_control_deassert(rsts); in starfive_wdt_reset_init()
|
/linux/drivers/clk/baikal-t1/ |
H A 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/drivers/net/ethernet/intel/ixgbevf/ |
H A 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()
|
H A D | vf.h | 91 u32 rsts; member
|
/linux/drivers/net/ethernet/intel/igbvf/ |
H A D | mbx.c | 200 hw->mbx.stats.rsts++; in e1000_check_for_rst_vf() 334 mbx->stats.rsts = 0; in e1000_init_mbx_params_vf()
|
H A D | vf.h | 200 u32 rsts; member
|
/linux/drivers/net/ethernet/intel/ixgbe/ |
H A 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()
|
H A D | ixgbe_type.h | 3623 u32 rsts; member
|
/linux/drivers/bus/ |
H A D | ti-sysc.c | 148 struct reset_control *rsts; member 645 ddata->rsts = in sysc_init_resets() 648 return PTR_ERR_OR_ZERO(ddata->rsts); in sysc_init_resets() 1284 reset_control_assert(ddata->rsts); in sysc_runtime_suspend_legacy() 1307 reset_control_deassert(ddata->rsts); in sysc_runtime_resume_legacy() 1344 reset_control_assert(ddata->rsts); in sysc_runtime_suspend() 1372 reset_control_deassert(ddata->rsts); in sysc_runtime_resume() 2269 reset_control_assert(ddata->rsts); in sysc_init_module() 3258 reset_control_assert(ddata->rsts); in sysc_probe() 3318 if (!reset_control_status(ddata->rsts)) in sysc_remove() [all …]
|
/linux/drivers/net/ethernet/intel/igb/ |
H A 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()
|
H A D | e1000_hw.h | 494 u32 rsts; member
|
/linux/drivers/net/ethernet/mediatek/ |
H A D | airoha_eth.c | 823 struct reset_control_bulk_data rsts[AIROHA_MAX_NUM_RSTS]; member 2093 err = reset_control_bulk_assert(ARRAY_SIZE(eth->rsts), eth->rsts); in airoha_hw_init() 2098 err = reset_control_bulk_deassert(ARRAY_SIZE(eth->rsts), eth->rsts); in airoha_hw_init() 2681 eth->rsts[0].id = "fe"; in airoha_probe() 2682 eth->rsts[1].id = "pdma"; in airoha_probe() 2683 eth->rsts[2].id = "qdma"; in airoha_probe() 2685 ARRAY_SIZE(eth->rsts), in airoha_probe() 2686 eth->rsts); in airoha_probe()
|