mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-26 06:50:10 +00:00

Remove useless private structure in function prototypes. Add a reference counter on clocks. Prepare for future secured/shared/non-secured clocks. Change-Id: I3dbed81721da5ceff5e10b2c4155b1e340c036ee Signed-off-by: Yann Gautier <yann.gautier@st.com> Signed-off-by: Etienne Carriere <etienne.carriere@st.com> Signed-off-by: Lionel Debieve <lionel.debieve@st.com> Signed-off-by: Nicolas LE BAYON <nicolas.le.bayon@st.com>
24 lines
505 B
C
24 lines
505 B
C
/*
|
|
* Copyright (c) 2017-2019, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <platform_def.h>
|
|
|
|
#include <drivers/st/stm32mp1_ddr_helpers.h>
|
|
#include <lib/mmio.h>
|
|
|
|
void ddr_enable_clock(void)
|
|
{
|
|
stm32mp1_clk_rcc_regs_lock();
|
|
|
|
mmio_setbits_32(stm32mp_rcc_base() + RCC_DDRITFCR,
|
|
RCC_DDRITFCR_DDRC1EN |
|
|
RCC_DDRITFCR_DDRC2EN |
|
|
RCC_DDRITFCR_DDRPHYCEN |
|
|
RCC_DDRITFCR_DDRPHYCAPBEN |
|
|
RCC_DDRITFCR_DDRCAPBEN);
|
|
|
|
stm32mp1_clk_rcc_regs_unlock();
|
|
}
|