Lines Matching refs:rst
280 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->control) & ~BIT(rst->bit);
320 mc_writel(mc, value, rst->control);
328 const struct tegra_mc_reset *rst)
330 return mc_readl(mc, rst->status) == 0;
334 const struct tegra_mc_reset *rst)
336 return (mc_readl(mc, rst->reset) & BIT(rst->bit)) == 0;
340 const struct tegra_mc_reset *rst)
347 value = mc_readl(mc, rst->control) | BIT(rst->bit);
348 mc_writel(mc, value, rst->control);