Lines Matching refs:rst
199 const struct tegra_mc_reset *rst)
206 value = mc_readl(mc, rst->reset);
207 mc_writel(mc, value & ~BIT(rst->bit), rst->reset);
215 const struct tegra_mc_reset *rst)
222 value = mc_readl(mc, rst->reset);
223 mc_writel(mc, value | BIT(rst->bit), rst->reset);
231 const struct tegra_mc_reset *rst)
238 value = mc_readl(mc, rst->control) & ~BIT(rst->bit);
239 mc_writel(mc, value, rst->control);
247 const struct tegra_mc_reset *rst)
249 return mc_readl(mc, rst->status) == 0;
253 const struct tegra_mc_reset *rst)
255 return (mc_readl(mc, rst->reset) & BIT(rst->bit)) == 0;
259 const struct tegra_mc_reset *rst)
266 value = mc_readl(mc, rst->control) | BIT(rst->bit);
267 mc_writel(mc, value, rst->control);