Searched refs:rst (Results 126 - 150 of 289) sorted by path

1234567891011>>

/linux-master/drivers/media/platform/nvidia/tegra-vde/
H A Dh264.c566 err = reset_control_reset(vde->rst);
616 err = reset_control_assert(vde->rst);
H A Dvde.c172 reset_control_release(vde->rst);
189 err = reset_control_acquire(vde->rst);
197 vde->clk, vde->rst);
217 reset_control_release(vde->rst);
282 vde->rst = devm_reset_control_get_exclusive_released(dev, NULL);
283 if (IS_ERR(vde->rst)) {
284 err = PTR_ERR(vde->rst);
H A Dvde.h109 struct reset_control *rst; member in struct:tegra_vde
/linux-master/drivers/media/platform/nxp/
H A Dimx8mq-mipi-csi2.c111 struct reset_control *rst; member in struct:csi_state
238 ret = reset_control_assert(state->rst);
828 state->rst = devm_reset_control_array_get_exclusive(dev);
829 if (IS_ERR(state->rst)) {
830 dev_err(dev, "Failed to get reset: %pe\n", state->rst);
831 return PTR_ERR(state->rst);
/linux-master/drivers/media/platform/sunxi/sun4i-csi/
H A Dsun4i_csi.c206 csi->rst = devm_reset_control_get(&pdev->dev, NULL);
207 if (IS_ERR(csi->rst)) {
209 return PTR_ERR(csi->rst);
299 reset_control_deassert(csi->rst);
318 reset_control_assert(csi->rst);
H A Dsun4i_csi.h118 struct reset_control *rst; member in struct:sun4i_csi
/linux-master/drivers/media/rc/
H A Dsunxi-cir.c96 struct reset_control *rst; member in struct:sunxi_ir
179 ret = reset_control_deassert(ir->rst);
224 reset_control_assert(ir->rst);
235 reset_control_assert(ir->rst);
291 ir->rst = devm_reset_control_get_exclusive(dev, NULL);
292 if (IS_ERR(ir->rst))
293 return PTR_ERR(ir->rst);
/linux-master/drivers/memory/tegra/
H A Dmc.c137 const struct tegra_mc_reset *rst)
144 value = mc_readl(mc, rst->control) | BIT(rst->bit);
145 mc_writel(mc, value, rst->control);
153 const struct tegra_mc_reset *rst)
155 return (mc_readl(mc, rst->status) & BIT(rst->bit)) != 0;
159 const struct tegra_mc_reset *rst)
166 value = mc_readl(mc, rst->control) & ~BIT(rst
136 tegra_mc_block_dma_common(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
152 tegra_mc_dma_idling_common(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
158 tegra_mc_unblock_dma_common(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
174 tegra_mc_reset_status_common(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
209 const struct tegra_mc_reset *rst; local
269 const struct tegra_mc_reset *rst; local
308 const struct tegra_mc_reset *rst; local
[all...]
H A Dtegra20.c280 const struct tegra_mc_reset *rst)
287 value = mc_readl(mc, rst->reset);
288 mc_writel(mc, value & ~BIT(rst->bit), rst->reset);
296 const struct tegra_mc_reset *rst)
303 value = mc_readl(mc, rst->reset);
304 mc_writel(mc, value | BIT(rst->bit), rst->reset);
312 const struct tegra_mc_reset *rst)
319 value = mc_readl(mc, rst
279 tegra20_mc_hotreset_assert(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
295 tegra20_mc_hotreset_deassert(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
311 tegra20_mc_block_dma(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
327 tegra20_mc_dma_idling(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
333 tegra20_mc_reset_status(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
339 tegra20_mc_unblock_dma(struct tegra_mc *mc, const struct tegra_mc_reset *rst) argument
[all...]
/linux-master/drivers/mmc/host/
H A Dmmci.c1860 if (host->rst) {
1861 reset_control_assert(host->rst);
1863 reset_control_deassert(host->rst);
2338 host->rst = devm_reset_control_get_optional_exclusive(&dev->dev, NULL);
2339 if (IS_ERR(host->rst)) {
2340 ret = PTR_ERR(host->rst);
2343 ret = reset_control_deassert(host->rst);
H A Dmmci.h420 struct reset_control *rst; member in struct:mmci_host
H A Dmmci_stm32_sdmmc.c372 reset_control_assert(host->rst);
374 reset_control_deassert(host->rst);
H A Dsdhci-tegra.c169 struct reset_control *rst; member in struct:sdhci_tegra
1768 tegra_host->rst = devm_reset_control_get_exclusive(&pdev->dev,
1770 if (IS_ERR(tegra_host->rst)) {
1771 rc = PTR_ERR(tegra_host->rst);
1785 rc = reset_control_assert(tegra_host->rst);
1791 rc = reset_control_deassert(tegra_host->rst);
1806 reset_control_assert(tegra_host->rst);
1828 reset_control_assert(tegra_host->rst);
H A Dsdhci_f_sdh30.c26 struct reset_control *rst; member in struct:f_sdhost_priv
161 priv->rst = devm_reset_control_get_optional_shared(dev, NULL);
162 if (IS_ERR(priv->rst)) {
163 ret = PTR_ERR(priv->rst);
167 ret = reset_control_deassert(priv->rst);
198 reset_control_assert(priv->rst);
214 struct reset_control *rst = priv->rst; local
219 reset_control_assert(rst);
H A Duniphier-sd.c71 struct reset_control *rst; member in struct:uniphier_sd_priv
392 ret = reset_control_deassert(priv->rst);
403 reset_control_assert(priv->rst);
415 reset_control_assert(priv->rst);
639 priv->rst = devm_reset_control_get_shared(dev, "host");
640 if (IS_ERR(priv->rst)) {
642 return PTR_ERR(priv->rst);
/linux-master/drivers/mtd/nand/raw/
H A Ddenali_dt.c26 struct reset_control *rst; /* core reset */ member in struct:denali_dt
160 dt->rst = devm_reset_control_get_optional_shared(dev, "nand");
161 if (IS_ERR(dt->rst))
162 return PTR_ERR(dt->rst);
192 ret = reset_control_deassert(dt->rst);
222 reset_control_assert(dt->rst);
240 reset_control_assert(dt->rst);
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/net/ethernet/dec/tulip/
H A Dmedia.c201 unsigned char *rst = rleaf->leafdata; local
204 for (i = 0; i < rst[0]; i++)
205 iowrite32(get_u16(rst + 1 + (i<<1)) << 16, ioaddr + CSR15);
326 unsigned char *rst = rleaf->leafdata; local
329 for (i = 0; i < rst[0]; i++)
330 iowrite32(get_u16(rst + 1 + (i<<1)) << 16, ioaddr + CSR15);
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_txrx.c2926 if (th->fin || th->rst)
2932 /* sample on all syn/fin/rst packets or once every atr sample rate */
2935 !th->rst &&
2960 dtype_cmd |= (th->fin || th->rst) ?
/linux-master/drivers/net/ethernet/mellanox/mlxsw/
H A Dreg.h5956 MLXSW_ITEM32(reg, pmaos, rst, 0x00, 31, 1);
11797 MLXSW_ITEM32(reg, mddc, rst, 0x04, 29, 1);
11805 static inline void mlxsw_reg_mddc_pack(char *payload, u8 slot_index, bool rst, argument
11810 mlxsw_reg_mddc_rst_set(payload, rst);
/linux-master/drivers/net/ethernet/neterion/
H A Ds2io.c8318 if (tcp->urg || tcp->psh || tcp->rst ||
/linux-master/drivers/net/ethernet/sfc/
H A Dtx_tso.c194 EFX_WARN_ON_ONCE_PARANOID(tcp_hdr(skb)->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/net/ethernet/stmicro/stmmac/
H A Ddwmac-dwc-qos-eth.c31 struct reset_control *rst; member in struct:tegra_eqos
340 eqos->rst = devm_reset_control_get(&pdev->dev, "eqos");
341 if (IS_ERR(eqos->rst)) {
342 err = PTR_ERR(eqos->rst);
346 err = reset_control_assert(eqos->rst);
352 err = reset_control_deassert(eqos->rst);
370 reset_control_assert(eqos->rst);
389 reset_control_assert(eqos->rst);
/linux-master/drivers/net/slip/
H A Dslhc.c276 if(hlen > isize || th->syn || th->fin || th->rst ||

Completed in 353 milliseconds

1234567891011>>