summaryrefslogtreecommitdiffstats
path: root/plat/nxp/soc-ls1046a/ls1046afrwy/platform.c
blob: cef920f8f6b7d2538707f43e4d0a707b8d99f7fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright 2020-2022 NXP
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <plat_common.h>

#pragma weak board_enable_povdd
#pragma weak board_disable_povdd

bool board_enable_povdd(void)
{
#ifdef CONFIG_POVDD_ENABLE
	return true;
#else
	return false;
#endif
}

bool board_disable_povdd(void)
{
#ifdef CONFIG_POVDD_ENABLE
	return true;
#else
	return false;
#endif
}