mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-29 21:26:56 +07:00
a6557eb795
Break out the R-Car SYSC power management code from the r8a7779 SoC code. With this new shared R-Car SYSC code base it is possible to hook in Generation 2 SoCs as well. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
16 lines
377 B
C
16 lines
377 B
C
#ifndef PM_RCAR_H
|
|
#define PM_RCAR_H
|
|
|
|
struct rcar_sysc_ch {
|
|
unsigned long chan_offs;
|
|
unsigned int chan_bit;
|
|
unsigned int isr_bit;
|
|
};
|
|
|
|
int rcar_sysc_power_down(struct rcar_sysc_ch *sysc_ch);
|
|
int rcar_sysc_power_up(struct rcar_sysc_ch *sysc_ch);
|
|
bool rcar_sysc_power_is_off(struct rcar_sysc_ch *sysc_ch);
|
|
void __iomem *rcar_sysc_init(phys_addr_t base);
|
|
|
|
#endif /* PM_RCAR_H */
|