summaryrefslogtreecommitdiffstats
path: root/plat/mediatek/mt8186/include/sspm_reg.h
blob: 40b71ac93c567514184e1aeeb027c08b2bb6beb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2022, MediaTek Inc. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef __SSPM_REG_H__
#define __SSPM_REG_H__

#include "platform_def.h"

#define SSPM_CFGREG_ADDR(ofs)	(SSPM_CFGREG_BASE + (ofs))

#define SSPM_HW_SEM		SSPM_CFGREG_ADDR(0x0048)
#define SSPM_ACAO_INT_SET	SSPM_CFGREG_ADDR(0x00D8)
#define SSPM_ACAO_INT_CLR	SSPM_CFGREG_ADDR(0x00DC)

#define STANDBYWFI_EN(n)	(1 << (n + 8))
#define GIC_IRQOUT_EN(n)	(1 << (n + 0))

#endif /* __SSPM_REG_H__ */