summaryrefslogtreecommitdiffstats
path: root/bsps/arm/imx/start/ccm.c
blob: 3c3e701d9f6173503f220ef4a7a298754ddcb48c (plain) (blame)
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
30
31
32
33
34
35
36
37
/*
 * Copyright (c) 2017 embedded brains GmbH.  All rights reserved.
 *
 * 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_ecspi_hz(void)
{
  return IMX_CCM_ECSPI_HZ;
}

uint32_t imx_ccm_ahb_hz(void)
{
  return IMX_CCM_AHB_HZ;
}

uint32_t imx_ccm_sdhci_hz(void)
{
  return IMX_CCM_SDHCI_HZ;
}