summaryrefslogtreecommitdiffstats
path: root/plat/nxp/soc-lx2160a/lx2160aqds/platform.c
blob: b00adb51d121d36364d4d89b6f468d7a24d4afc0 (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
29
/*
 * Copyright 2021 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
}