123456789101112131415161718192021222324252627282930 |
- /*
- * Copyright (c) 2022, MediaTek Inc. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
- #ifndef PMIC_WRAP_INIT_H
- #define PMIC_WRAP_INIT_H
- #include <stdint.h>
- #include "platform_def.h"
- #include <pmic_wrap_init_common.h>
- static struct mt8188_pmic_wrap_regs *const mtk_pwrap = (void *)PMIC_WRAP_BASE;
- /* PMIC_WRAP registers */
- struct mt8188_pmic_wrap_regs {
- uint32_t init_done;
- uint32_t reserved[543];
- uint32_t wacs2_cmd;
- uint32_t wacs2_wdata;
- uint32_t reserved1[3];
- uint32_t wacs2_rdata;
- uint32_t reserved2[3];
- uint32_t wacs2_vldclr;
- uint32_t wacs2_sta;
- };
- #endif /* PMIC_WRAP_INIT_H */
|