Lines Matching refs:base
392 * @base: pointer to I/O remapped register region
410 * @lp0_vec_phys: physical base address of the LP0 warm boot code
428 void __iomem *base;
473 .base = NULL,
502 return readl(pmc->base + offset);
522 writel(value, pmc->base + offset);
2894 void __iomem *base;
2903 if (WARN_ON(!pmc->base || !pmc->soc))
2916 base = devm_platform_ioremap_resource(pdev, 0);
2917 if (IS_ERR(base))
2918 return PTR_ERR(base);
2926 pmc->wake = base;
2935 pmc->aotag = base;
2944 pmc->scratch = base;
3035 iounmap(pmc->base);
3036 pmc->base = base;
4334 saved = readl(pmc->base + pmc->soc->regs->scratch0);
4341 writel(value, pmc->base + pmc->soc->regs->scratch0);
4342 value = readl(pmc->base + pmc->soc->regs->scratch0);
4351 writel(saved, pmc->base + pmc->soc->regs->scratch0);
4409 pmc->base = ioremap(regs.start, resource_size(®s));
4410 if (!pmc->base) {