1#ifndef PM_RCAR_H
2#define PM_RCAR_H
3
4struct rcar_sysc_ch {
5	u16 chan_offs;
6	u8 chan_bit;
7	u8 isr_bit;
8};
9
10int rcar_sysc_power_down(const struct rcar_sysc_ch *sysc_ch);
11int rcar_sysc_power_up(const struct rcar_sysc_ch *sysc_ch);
12bool rcar_sysc_power_is_off(const struct rcar_sysc_ch *sysc_ch);
13void __iomem *rcar_sysc_init(phys_addr_t base);
14
15#endif /* PM_RCAR_H */
16