blob: a58f1cf9d3a1a3a4edd02fede3376723536016b0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dinh Nguyen77754402012-10-04 06:46:02 +00002/*
3 * Copyright (C) 2012 Altera Corporation <www.altera.com>
Dinh Nguyen77754402012-10-04 06:46:02 +00004 */
5
6#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -06007#include <init.h>
Dinh Nguyen77754402012-10-04 06:46:02 +00008#include <asm/io.h>
9#include <asm/arch/timer.h>
10
Marek Vasut2110eea2014-09-08 14:08:45 +020011#define TIMER_LOAD_VAL 0xFFFFFFFF
12
Dinh Nguyen77754402012-10-04 06:46:02 +000013static const struct socfpga_timer *timer_base = (void *)CONFIG_SYS_TIMERBASE;
14
15/*
16 * Timer initialization
17 */
18int timer_init(void)
19{
20 writel(TIMER_LOAD_VAL, &timer_base->load_val);
21 writel(TIMER_LOAD_VAL, &timer_base->curr_val);
22 writel(readl(&timer_base->ctrl) | 0x3, &timer_base->ctrl);
23 return 0;
24}