Lines Matching defs:base
25 static int rcar_rst_enable_wdt_reset(void __iomem *base)
27 iowrite32(WDTRSTCR_RESET, base + WDTRSTCR);
31 static int rcar_rst_v3u_enable_wdt_reset(void __iomem *base)
33 iowrite32(WDTRSTCR_RESET, base + GEN4_WDTRSTCR);
58 int (*configure)(void __iomem *base); /* Platform specific config */
128 void __iomem *base;
135 base = of_iomap(np, 0);
136 if (!base) {
142 rcar_rst_base = base;
146 saved_mode = ioread32(base + cfg->modemr);
148 error = cfg->configure(base);