Searched refs:rst (Results 201 - 225 of 291) sorted by relevance

1234567891011>>

/linux-master/drivers/phy/rockchip/
H A Dphy-rockchip-inno-dsidphy.c213 struct reset_control *rst; member in struct:inno_dsidphy
725 inno->rst = devm_reset_control_get(dev, "apb");
726 if (IS_ERR(inno->rst)) {
727 ret = PTR_ERR(inno->rst);
/linux-master/sound/soc/uniphier/
H A Daio.h293 struct reset_control *rst; member in struct:uniphier_aio_chip
/linux-master/Documentation/sphinx/
H A Dcdomain.py36 from docutils.parsers.rst import directives
H A Dkfigure.py58 from docutils.parsers.rst import directives
59 from docutils.parsers.rst.directives import images
/linux-master/drivers/clk/renesas/
H A Dr8a779f0-cpg-mssr.c16 #include <linux/soc/renesas/rcar-rst.h>
H A Dr8a7796-cpg-mssr.c19 #include <linux/soc/renesas/rcar-rst.h>
H A Dr8a77965-cpg-mssr.c17 #include <linux/soc/renesas/rcar-rst.h>
H A Dr8a77990-cpg-mssr.c16 #include <linux/soc/renesas/rcar-rst.h>
H A Dr8a774a1-cpg-mssr.c15 #include <linux/soc/renesas/rcar-rst.h>
/linux-master/drivers/crypto/starfive/
H A Djh7110-cryp.h180 struct reset_control *rst; member in struct:starfive_cryp_dev
/linux-master/drivers/clk/meson/
H A Da1-pll.c46 .rst = {
/linux-master/drivers/net/ethernet/socionext/
H A Dsni_ave.c259 struct reset_control *rst[AVE_MAX_RSTS]; member in struct:ave_private
1185 ret = reset_control_deassert(priv->rst[nr]);
1243 reset_control_assert(priv->rst[nr]);
1261 reset_control_assert(priv->rst[i]);
1656 priv->rst[i] = devm_reset_control_get_shared(dev, name);
1657 if (IS_ERR(priv->rst[i]))
1658 return PTR_ERR(priv->rst[i]);
/linux-master/drivers/spi/
H A Dspi-stm32.c2069 struct reset_control *rst; local
2138 rst = devm_reset_control_get_optional_exclusive(&pdev->dev, NULL);
2139 if (rst) {
2140 if (IS_ERR(rst)) {
2141 ret = dev_err_probe(&pdev->dev, PTR_ERR(rst),
2146 reset_control_assert(rst);
2148 reset_control_deassert(rst);
/linux-master/drivers/mtd/nand/raw/
H A Dtegra_nand.c1148 struct reset_control *rst; local
1165 rst = devm_reset_control_get(&pdev->dev, "nand");
1166 if (IS_ERR(rst))
1167 return PTR_ERR(rst);
1186 err = reset_control_reset(rst);
/linux-master/drivers/pinctrl/starfive/
H A Dpinctrl-starfive-jh7100.c1222 struct reset_control *rst; local
1243 rst = devm_reset_control_get_exclusive(dev, NULL);
1244 if (IS_ERR(rst))
1245 return dev_err_probe(dev, PTR_ERR(rst), "could not get reset\n");
1260 ret = reset_control_deassert(rst);
/linux-master/drivers/phy/cadence/
H A Dphy-cadence-sierra.c1226 struct reset_control *rst; local
1228 rst = devm_reset_control_get_exclusive(dev, "sierra_reset");
1229 if (IS_ERR(rst)) {
1231 return PTR_ERR(rst);
1233 sp->phy_rst = rst;
1235 rst = devm_reset_control_get_optional_exclusive(dev, "sierra_apb");
1236 if (IS_ERR(rst)) {
1238 return PTR_ERR(rst);
1240 sp->apb_rst = rst;
/linux-master/drivers/cpufreq/
H A DKconfig.x8630 <file:Documentation/admin-guide/pm/cpufreq_drivers.rst>.
50 <file:Documentation/admin-guide/pm/amd-pstate.rst>.
69 <file:Documentation/admin-guide/pm/amd-pstate.rst>.
/linux-master/drivers/dma/
H A Dstm32-mdma.c1596 struct reset_control *rst; local
1652 rst = devm_reset_control_get(&pdev->dev, NULL);
1653 if (IS_ERR(rst)) {
1654 ret = PTR_ERR(rst);
1658 reset_control_assert(rst);
1660 reset_control_deassert(rst);
H A Dtegra20-apb-dma.c214 struct reset_control *rst; member in struct:tegra_dma
1407 err = reset_control_assert(tdma->rst);
1421 reset_control_deassert(tdma->rst);
1462 tdma->rst = devm_reset_control_get(&pdev->dev, "dma");
1463 if (IS_ERR(tdma->rst)) {
1465 return PTR_ERR(tdma->rst);
H A Dstm32-dma.c1571 struct reset_control *rst; local
1597 rst = devm_reset_control_get(&pdev->dev, NULL);
1598 if (IS_ERR(rst)) {
1599 ret = PTR_ERR(rst);
1603 reset_control_assert(rst);
1605 reset_control_deassert(rst);
/linux-master/drivers/crypto/stm32/
H A Dstm32-cryp.c1971 struct reset_control *rst; local
2020 rst = devm_reset_control_get(dev, NULL);
2021 if (IS_ERR(rst)) {
2022 ret = PTR_ERR(rst);
2026 reset_control_assert(rst);
2028 reset_control_deassert(rst);
/linux-master/drivers/gpu/drm/tegra/
H A Dhdmi.c77 struct reset_control *rst; member in struct:tegra_hdmi
1662 err = reset_control_assert(hdmi->rst);
1696 err = reset_control_deassert(hdmi->rst);
1819 hdmi->rst = devm_reset_control_get(&pdev->dev, "hdmi");
1820 if (IS_ERR(hdmi->rst)) {
1822 return PTR_ERR(hdmi->rst);
/linux-master/drivers/tty/serial/
H A Dserial-tegra.c111 struct reset_control *rst; member in struct:tegra_uart_port
1012 reset_control_assert(tup->rst);
1014 reset_control_deassert(tup->rst);
1599 tup->rst = devm_reset_control_get_exclusive(&pdev->dev, "serial");
1600 if (IS_ERR(tup->rst)) {
1602 return PTR_ERR(tup->rst);
/linux-master/drivers/net/wireless/mediatek/mt76/mt7915/
H A Ddma.c172 static void mt7915_dma_disable(struct mt7915_dev *dev, bool rst) argument
181 if (rst) {
/linux-master/drivers/hwmon/
H A Daspeed-g6-pwm-tach.c450 struct reset_control *rst = data; local
452 reset_control_assert(rst);

Completed in 276 milliseconds

1234567891011>>