Files
rtems/bsps/arm/imx/start/ccm.c
Sebastian Huber 9964895866 bsps: Move startup files to bsps
Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-20 13:52:14 +02:00

34 lines
606 B
C

/*
* Copyright (c) 2017 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Dornierstr. 4
* 82178 Puchheim
* Germany
* <info@embedded-brains.de>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#include <stdint.h>
#include <bspopts.h>
#include <arm/freescale/imx/imx_ccmvar.h>
uint32_t imx_ccm_ipg_hz(void)
{
return IMX_CCM_IPG_HZ;
}
uint32_t imx_ccm_uart_hz(void)
{
return IMX_CCM_UART_HZ;
}
uint32_t imx_ccm_ahb_hz(void)
{
return IMX_CCM_AHB_HZ;
}