summaryrefslogtreecommitdiffstats
path: root/bsps/arm/atsam/clock/systick-freq.c
blob: f89c66419f475bf8620fba889af1832edb377ab8 (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
/*
 * Copyright (c) 2016 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 <bsp.h>

#include <chip.h>

uint32_t atsam_systick_frequency(void)
{
  uint32_t mdiv = (PMC->PMC_MCKR & PMC_MCKR_MDIV_Msk) >> PMC_MCKR_MDIV_Pos;
  uint32_t fclk;

  if (mdiv == 3) {
    fclk = BOARD_MCK * mdiv;
  } else {
    fclk = BOARD_MCK * (1 << mdiv);
  }

  return fclk;
}