Lines Matching refs:value
283 u32 value;
287 value = mc_readl(mc, rst->reset);
288 mc_writel(mc, value & ~BIT(rst->bit), rst->reset);
299 u32 value;
303 value = mc_readl(mc, rst->reset);
304 mc_writel(mc, value | BIT(rst->bit), rst->reset);
315 u32 value;
319 value = mc_readl(mc, rst->control) & ~BIT(rst->bit);
320 mc_writel(mc, value, rst->control);
343 u32 value;
347 value = mc_readl(mc, rst->control) | BIT(rst->bit);
348 mc_writel(mc, value, rst->control);
733 u32 value, reg;
739 value = mc_readl(mc, reg);
741 id = value & mc->soc->client_id_mask;
744 if (value & BIT(31))
750 value = mc_readl(mc, reg);
752 id = (value >> 1) & mc->soc->client_id_mask;
755 if (value & BIT(0))
761 value = mc_readl(mc, reg);
763 id = value & mc->soc->client_id_mask;
764 type = (value & BIT(30)) ? 4 : 3;
768 if (value & BIT(31))