1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef SOC_MEDIATEK_COMMON_MCUPM_H 4 #define SOC_MEDIATEK_COMMON_MCUPM_H 5 6 #include <soc/addressmap.h> 7 #include <types.h> 8 9 struct mcupm_regs { 10 u32 sw_rstn; 11 }; 12 static struct mcupm_regs *const mcupm_reg = (void *)MCUPM_CFG_BASE; 13 void mcupm_init(void); 14 #endif /* SOC_MEDIATEK_COMMON_MCUPM_H */ 15