blob: a951dc7b4e8ec38a90a41f07f0eb1df39382254d [file] [log] [blame]
Usama Arif82e95092019-06-18 16:46:05 +01001/*
2 * Copyright (c) 2019, ARM Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Vishnu Banavath2df6d172019-12-13 17:18:15 +00007#include <drivers/arm/scu.h>
Usama Arif82e95092019-06-18 16:46:05 +01008#include <plat/arm/common/plat_arm.h>
9
Vishnu Banavath2df6d172019-12-13 17:18:15 +000010
Usama Arif82e95092019-06-18 16:46:05 +010011void plat_arm_sp_min_early_platform_setup(u_register_t arg0, u_register_t arg1,
12 u_register_t arg2, u_register_t arg3)
13{
14 arm_sp_min_early_platform_setup((void *)arg0, arg1, arg2, (void *)arg3);
Vishnu Banavath2df6d172019-12-13 17:18:15 +000015
16 /* enable snoop control unit */
17 enable_snoop_ctrl_unit(A5DS_SCU_BASE);
Usama Arif82e95092019-06-18 16:46:05 +010018}
19
20/*
21 * A5DS will only have one always-on power domain and there
22 * is no power control present.
23 */
24void plat_arm_pwrc_setup(void)
25{
26}
27