blob: fbc7fac1bba400396b1620603a06c505411444ce [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
rickb841b6e2017-05-18 14:37:53 +08002/*
3 * Andestech ATCPIT100 timer driver
4 *
5 * (C) Copyright 2016
6 * Rick Chen, NDS32 Software Engineering, rick@andestech.com
rickb841b6e2017-05-18 14:37:53 +08007 */
8#include <common.h>
9#include <dm.h>
10#include <errno.h>
11#include <timer.h>
12#include <linux/io.h>
13
Rick Chen0e920ef2017-11-23 11:04:34 +080014#define REG32_TMR(x) (*(u32 *) ((plat->regs) + (x>>2)))
rickb841b6e2017-05-18 14:37:53 +080015
16/*
17 * Definition of register offsets
18 */
19
20/* ID and Revision Register */
21#define ID_REV 0x0
22
23/* Configuration Register */
24#define CFG 0x10
25
26/* Interrupt Enable Register */
27#define INT_EN 0x14
28#define CH_INT_EN(c , i) ((1<<i)<<(4*c))
29
30/* Interrupt Status Register */
31#define INT_STA 0x18
32#define CH_INT_STA(c , i) ((1<<i)<<(4*c))
33
34/* Channel Enable Register */
35#define CH_EN 0x1C
36#define CH_TMR_EN(c , t) ((1<<t)<<(4*c))
37
38/* Ch n Control REgister */
39#define CH_CTL(n) (0x20+0x10*n)
40/* Channel clock source , bit 3 , 0:External clock , 1:APB clock */
41#define APB_CLK (1<<3)
42/* Channel mode , bit 0~2 */
43#define TMR_32 1
44#define TMR_16 2
45#define TMR_8 3
46#define PWM 4
47
48#define CH_REL(n) (0x24+0x10*n)
49#define CH_CNT(n) (0x28+0x10*n)
50
51struct atctmr_timer_regs {
52 u32 id_rev; /* 0x00 */
53 u32 reservd[3]; /* 0x04 ~ 0x0c */
54 u32 cfg; /* 0x10 */
55 u32 int_en; /* 0x14 */
56 u32 int_st; /* 0x18 */
57 u32 ch_en; /* 0x1c */
58 u32 ch0_ctrl; /* 0x20 */
59 u32 ch0_reload; /* 0x24 */
60 u32 ch0_cntr; /* 0x28 */
61 u32 reservd1; /* 0x2c */
62 u32 ch1_ctrl; /* 0x30 */
63 u32 ch1_reload; /* 0x34 */
64 u32 int_mask; /* 0x38 */
65};
66
Simon Glass8a8d24b2020-12-03 16:55:23 -070067struct atcpit_timer_plat {
Rick Chen0e920ef2017-11-23 11:04:34 +080068 u32 *regs;
rickb841b6e2017-05-18 14:37:53 +080069};
70
Sean Anderson8af7bb92020-10-07 14:37:44 -040071static u64 atcpit_timer_get_count(struct udevice *dev)
rickb841b6e2017-05-18 14:37:53 +080072{
Simon Glass8a8d24b2020-12-03 16:55:23 -070073 struct atcpit_timer_plat *plat = dev_get_plat(dev);
rickb841b6e2017-05-18 14:37:53 +080074 u32 val;
75 val = ~(REG32_TMR(CH_CNT(1))+0xffffffff);
Sean Anderson8af7bb92020-10-07 14:37:44 -040076 return timer_conv_64(val);
rickb841b6e2017-05-18 14:37:53 +080077}
78
Rick Chen033d4082017-11-23 10:15:20 +080079static int atcpit_timer_probe(struct udevice *dev)
rickb841b6e2017-05-18 14:37:53 +080080{
Simon Glass8a8d24b2020-12-03 16:55:23 -070081 struct atcpit_timer_plat *plat = dev_get_plat(dev);
rickb841b6e2017-05-18 14:37:53 +080082 REG32_TMR(CH_REL(1)) = 0xffffffff;
83 REG32_TMR(CH_CTL(1)) = APB_CLK|TMR_32;
84 REG32_TMR(CH_EN) |= CH_TMR_EN(1 , 0);
85 return 0;
86}
87
Simon Glassd1998a92020-12-03 16:55:21 -070088static int atcpit_timer_of_to_plat(struct udevice *dev)
rickb841b6e2017-05-18 14:37:53 +080089{
Simon Glass8a8d24b2020-12-03 16:55:23 -070090 struct atcpit_timer_plat *plat = dev_get_plat(dev);
Masahiro Yamada25484932020-07-17 14:36:48 +090091 plat->regs = map_physmem(dev_read_addr(dev), 0x100 , MAP_NOCACHE);
rickb841b6e2017-05-18 14:37:53 +080092 return 0;
93}
94
Rick Chen033d4082017-11-23 10:15:20 +080095static const struct timer_ops atcpit_timer_ops = {
96 .get_count = atcpit_timer_get_count,
rickb841b6e2017-05-18 14:37:53 +080097};
98
Rick Chen033d4082017-11-23 10:15:20 +080099static const struct udevice_id atcpit_timer_ids[] = {
rickb841b6e2017-05-18 14:37:53 +0800100 { .compatible = "andestech,atcpit100" },
101 {}
102};
103
Rick Chen033d4082017-11-23 10:15:20 +0800104U_BOOT_DRIVER(atcpit100_timer) = {
105 .name = "atcpit100_timer",
rickb841b6e2017-05-18 14:37:53 +0800106 .id = UCLASS_TIMER,
Rick Chen033d4082017-11-23 10:15:20 +0800107 .of_match = atcpit_timer_ids,
Simon Glassd1998a92020-12-03 16:55:21 -0700108 .of_to_plat = atcpit_timer_of_to_plat,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700109 .plat_auto = sizeof(struct atcpit_timer_plat),
Rick Chen033d4082017-11-23 10:15:20 +0800110 .probe = atcpit_timer_probe,
111 .ops = &atcpit_timer_ops,
rickb841b6e2017-05-18 14:37:53 +0800112};