2020-01-18 18:19:00 +05:30
/* SPDX-License-Identifier: GPL-2.0 */
/*
2016-04-20 14:02:38 +02:00
* Renesas R - Car System Controller
*
* Copyright ( C ) 2016 Glider bvba
*/
# ifndef __SOC_RENESAS_RCAR_SYSC_H__
# define __SOC_RENESAS_RCAR_SYSC_H__
# include <linux/types.h>
/*
* Power Domain flags
*/
# define PD_CPU BIT(0) /* Area contains main CPU core */
# define PD_SCU BIT(1) /* Area contains SCU and L2 cache */
# define PD_NO_CR BIT(2) /* Area lacks PWR{ON,OFF}CR registers */
# define PD_CPU_CR PD_CPU /* CPU area has CR (R-Car H1) */
# define PD_CPU_NOCR PD_CPU | PD_NO_CR /* CPU area lacks CR (R-Car Gen2/3) */
# define PD_ALWAYS_ON PD_NO_CR /* Always-on area */
/*
* Description of a Power Area
*/
struct rcar_sysc_area {
const char * name ;
u16 chan_offs ; /* Offset of PWRSR register for this area */
u8 chan_bit ; /* Bit in PWR* (except for PWRUP in PWRSR) */
u8 isr_bit ; /* Bit in SYSCI*R */
2022-06-08 17:14:21 +02:00
s8 parent ; /* -1 if none */
u8 flags ; /* See PD_* */
2016-04-20 14:02:38 +02:00
} ;
/*
* SoC - specific Power Area Description
*/
struct rcar_sysc_info {
2017-03-31 11:01:55 +02:00
int ( * init ) ( void ) ; /* Optional */
2016-04-20 14:02:38 +02:00
const struct rcar_sysc_area * areas ;
unsigned int num_areas ;
2019-08-28 13:36:12 +02:00
/* Optional External Request Mask Register */
u32 extmask_offs ; /* SYSCEXTMASK register offset */
u32 extmask_val ; /* SYSCEXTMASK register mask value */
2016-04-20 14:02:38 +02:00
} ;
2020-04-23 22:40:43 +01:00
extern const struct rcar_sysc_info r8a7742_sysc_info ;
2016-10-05 14:35:01 -07:00
extern const struct rcar_sysc_info r8a7743_sysc_info ;
2016-11-05 00:46:13 +03:00
extern const struct rcar_sysc_info r8a7745_sysc_info ;
2018-03-28 20:26:09 +01:00
extern const struct rcar_sysc_info r8a77470_sysc_info ;
2018-08-02 15:53:19 +01:00
extern const struct rcar_sysc_info r8a774a1_sysc_info ;
2019-09-23 08:29:40 +01:00
extern const struct rcar_sysc_info r8a774b1_sysc_info ;
2018-09-10 15:41:27 +01:00
extern const struct rcar_sysc_info r8a774c0_sysc_info ;
2020-07-07 17:18:05 +01:00
extern const struct rcar_sysc_info r8a774e1_sysc_info ;
2016-04-20 14:02:41 +02:00
extern const struct rcar_sysc_info r8a7779_sysc_info ;
2016-04-20 14:02:42 +02:00
extern const struct rcar_sysc_info r8a7790_sysc_info ;
2016-04-20 14:02:43 +02:00
extern const struct rcar_sysc_info r8a7791_sysc_info ;
2016-06-12 23:56:50 +03:00
extern const struct rcar_sysc_info r8a7792_sysc_info ;
2016-04-20 14:02:45 +02:00
extern const struct rcar_sysc_info r8a7794_sysc_info ;
2019-08-28 13:36:13 +02:00
extern struct rcar_sysc_info r8a7795_sysc_info ;
2019-10-23 14:33:37 +02:00
extern const struct rcar_sysc_info r8a77960_sysc_info ;
extern const struct rcar_sysc_info r8a77961_sysc_info ;
2018-02-20 16:12:06 +01:00
extern const struct rcar_sysc_info r8a77965_sysc_info ;
2017-09-12 23:37:20 +03:00
extern const struct rcar_sysc_info r8a77970_sysc_info ;
2018-02-16 21:28:02 +03:00
extern const struct rcar_sysc_info r8a77980_sysc_info ;
2018-05-15 21:07:38 +09:00
extern const struct rcar_sysc_info r8a77990_sysc_info ;
2017-07-20 14:34:53 +02:00
extern const struct rcar_sysc_info r8a77995_sysc_info ;
2017-03-31 11:01:55 +02:00
/*
* Helpers for fixing up power area tables depending on SoC revision
*/
extern void rcar_sysc_nullify ( struct rcar_sysc_area * areas ,
unsigned int num_areas , u8 id ) ;
2016-04-20 14:02:38 +02:00
# endif /* __SOC_RENESAS_RCAR_SYSC_H__ */