blob: 5d94b404b9825b77353b66775a4f90048286d31b [file] [log] [blame]
Yann Gautierbb836ee2018-07-16 17:55:07 +02001/*
2 * Copyright (c) 2017-2018, STMicroelectronics - All Rights Reserved
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef __STM32MP1_PMIC_H__
8#define __STM32MP1_PMIC_H__
9
10#include <stdbool.h>
11
12bool dt_check_pmic(void);
13int dt_pmic_enable_boot_on_regulators(void);
14void initialize_pmic_i2c(void);
15void initialize_pmic(void);
16int pmic_ddr_power_init(enum ddr_type ddr_type);
17
18#endif /* __STM32MP1_PMIC_H__ */