blob: 9027daf15be910d91d12ca225c7d15e1d89f6a9c [file] [log] [blame]
Hui Liu39ea6142022-07-28 20:28:32 +08001/*
2 * Copyright (c) 2022, MediaTek Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef PMIC_WRAP_INIT_H
8#define PMIC_WRAP_INIT_H
9
10#include <stdint.h>
11
12#include "platform_def.h"
13#include <pmic_wrap_init_common.h>
14
15static struct mt8188_pmic_wrap_regs *const mtk_pwrap = (void *)PMIC_WRAP_BASE;
16
17/* PMIC_WRAP registers */
18struct mt8188_pmic_wrap_regs {
19 uint32_t init_done;
20 uint32_t reserved[543];
21 uint32_t wacs2_cmd;
22 uint32_t wacs2_wdata;
23 uint32_t reserved1[3];
24 uint32_t wacs2_rdata;
25 uint32_t reserved2[3];
26 uint32_t wacs2_vldclr;
27 uint32_t wacs2_sta;
28};
29
30#endif /* PMIC_WRAP_INIT_H */