blob: 40b71ac93c567514184e1aeeb027c08b2bb6beb7 [file] [log] [blame]
jason-ch chenfa82b9b2021-11-16 09:48:20 +08001/*
2 * Copyright (c) 2022, MediaTek Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef __SSPM_REG_H__
8#define __SSPM_REG_H__
9
10#include "platform_def.h"
11
jason-ch chenfa82b9b2021-11-16 09:48:20 +080012#define SSPM_CFGREG_ADDR(ofs) (SSPM_CFGREG_BASE + (ofs))
13
jason-ch chenfa82b9b2021-11-16 09:48:20 +080014#define SSPM_HW_SEM SSPM_CFGREG_ADDR(0x0048)
15#define SSPM_ACAO_INT_SET SSPM_CFGREG_ADDR(0x00D8)
16#define SSPM_ACAO_INT_CLR SSPM_CFGREG_ADDR(0x00DC)
17
18#define STANDBYWFI_EN(n) (1 << (n + 8))
19#define GIC_IRQOUT_EN(n) (1 << (n + 0))
20
21#endif /* __SSPM_REG_H__ */