mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00

1. Add PMIC shutdown API 2. Add PMIC low power settings Change-Id: I634a60fa3e2a74a6031df9fe59e2f52956ef7114 Signed-off-by: Hope Wang <hope.wang@mediatek.corp-partner.google.com>
16 lines
277 B
C
16 lines
277 B
C
/*
|
|
* Copyright (c) 2025, Mediatek Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PMIC_SWAP_API_H
|
|
#define PMIC_SWAP_API_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <drivers/spmi_api.h>
|
|
|
|
bool is_second_pmic_pp_swap(void);
|
|
|
|
#endif /* PMIC_SWAP_API_H */
|