blob: 288357c98bdafe99a39d1217fba34111b9a5a239 [file] [log] [blame]
Thomas Choua54915d2015-10-22 22:28:53 +08001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
6 * Scott McNutt <smcnutt@psyent.com>
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11#include <common.h>
12#include <dm.h>
13#include <errno.h>
14#include <timer.h>
15#include <asm/io.h>
16
17DECLARE_GLOBAL_DATA_PTR;
18
19struct altera_timer_regs {
20 u32 status; /* Timer status reg */
21 u32 control; /* Timer control reg */
22 u32 periodl; /* Timeout period low */
23 u32 periodh; /* Timeout period high */
24 u32 snapl; /* Snapshot low */
25 u32 snaph; /* Snapshot high */
26};
27
28struct altera_timer_platdata {
29 struct altera_timer_regs *regs;
30 unsigned long clock_rate;
31};
32
33/* control register */
Thomas Chou430b43e2015-10-29 21:16:39 +080034#define ALTERA_TIMER_CONT BIT(1) /* Continuous mode */
35#define ALTERA_TIMER_START BIT(2) /* Start timer */
36#define ALTERA_TIMER_STOP BIT(3) /* Stop timer */
Thomas Choua54915d2015-10-22 22:28:53 +080037
38static int altera_timer_get_count(struct udevice *dev, unsigned long *count)
39{
40 struct altera_timer_platdata *plat = dev->platdata;
41 struct altera_timer_regs *const regs = plat->regs;
42 u32 val;
43
44 /* Trigger update */
45 writel(0x0, &regs->snapl);
46
47 /* Read timer value */
48 val = readl(&regs->snapl) & 0xffff;
49 val |= (readl(&regs->snaph) & 0xffff) << 16;
50 *count = ~val;
51
52 return 0;
53}
54
55static int altera_timer_probe(struct udevice *dev)
56{
57 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
58 struct altera_timer_platdata *plat = dev->platdata;
59 struct altera_timer_regs *const regs = plat->regs;
60
61 uc_priv->clock_rate = plat->clock_rate;
62
63 writel(0, &regs->status);
64 writel(0, &regs->control);
65 writel(ALTERA_TIMER_STOP, &regs->control);
66
67 writel(0xffff, &regs->periodl);
68 writel(0xffff, &regs->periodh);
69 writel(ALTERA_TIMER_CONT | ALTERA_TIMER_START, &regs->control);
70
71 return 0;
72}
73
74static int altera_timer_ofdata_to_platdata(struct udevice *dev)
75{
76 struct altera_timer_platdata *plat = dev_get_platdata(dev);
77
78 plat->regs = ioremap(dev_get_addr(dev),
79 sizeof(struct altera_timer_regs));
80 plat->clock_rate = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
81 "clock-frequency", 0);
82
83 return 0;
84}
85
86static const struct timer_ops altera_timer_ops = {
87 .get_count = altera_timer_get_count,
88};
89
90static const struct udevice_id altera_timer_ids[] = {
91 { .compatible = "altr,timer-1.0", },
92 { }
93};
94
95U_BOOT_DRIVER(altera_timer) = {
96 .name = "altera_timer",
97 .id = UCLASS_TIMER,
98 .of_match = altera_timer_ids,
99 .ofdata_to_platdata = altera_timer_ofdata_to_platdata,
100 .platdata_auto_alloc_size = sizeof(struct altera_timer_platdata),
101 .probe = altera_timer_probe,
102 .ops = &altera_timer_ops,
103 .flags = DM_FLAG_PRE_RELOC,
104};