blob: ac24a4bd63f755d2aa08e9fa2310072d0c65b719 [file] [log] [blame]
David Brownell2a341f52008-02-22 17:23:23 -08001#include <linux/atmel_tc.h>
2#include <linux/clk.h>
3#include <linux/err.h>
4#include <linux/init.h>
5#include <linux/io.h>
6#include <linux/ioport.h>
7#include <linux/kernel.h>
8#include <linux/platform_device.h>
Nicolas Ferre3a61a5d2012-01-19 10:13:40 +01009#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Paul Gortmaker7a321292011-07-10 12:41:41 -040011#include <linux/export.h>
Nicolas Ferre3a61a5d2012-01-19 10:13:40 +010012#include <linux/of.h>
David Brownell2a341f52008-02-22 17:23:23 -080013
David Brownell2a341f52008-02-22 17:23:23 -080014/*
15 * This is a thin library to solve the problem of how to portably allocate
16 * one of the TC blocks. For simplicity, it doesn't currently expect to
17 * share individual timers between different drivers.
18 */
19
20#if defined(CONFIG_AVR32)
21/* AVR32 has these divide PBB */
22const u8 atmel_tc_divisors[5] = { 0, 4, 8, 16, 32, };
23EXPORT_SYMBOL(atmel_tc_divisors);
24
25#elif defined(CONFIG_ARCH_AT91)
26/* AT91 has these divide MCK */
27const u8 atmel_tc_divisors[5] = { 2, 8, 32, 128, 0, };
28EXPORT_SYMBOL(atmel_tc_divisors);
29
30#endif
31
32static DEFINE_SPINLOCK(tc_list_lock);
33static LIST_HEAD(tc_list);
34
35/**
36 * atmel_tc_alloc - allocate a specified TC block
37 * @block: which block to allocate
David Brownell2a341f52008-02-22 17:23:23 -080038 *
39 * Caller allocates a block. If it is available, a pointer to a
40 * pre-initialized struct atmel_tc is returned. The caller can access
41 * the registers directly through the "regs" field.
42 */
Gaël PORTAY4930d242014-09-06 19:52:35 +020043struct atmel_tc *atmel_tc_alloc(unsigned block)
David Brownell2a341f52008-02-22 17:23:23 -080044{
45 struct atmel_tc *tc;
46 struct platform_device *pdev = NULL;
David Brownell2a341f52008-02-22 17:23:23 -080047
48 spin_lock(&tc_list_lock);
49 list_for_each_entry(tc, &tc_list, node) {
Gaël PORTAY4930d242014-09-06 19:52:35 +020050 if (tc->allocated)
51 continue;
52
53 if ((tc->pdev->dev.of_node && tc->id == block) ||
54 (tc->pdev->id == block)) {
David Brownell2a341f52008-02-22 17:23:23 -080055 pdev = tc->pdev;
Gaël PORTAY4930d242014-09-06 19:52:35 +020056 tc->allocated = true;
David Brownell2a341f52008-02-22 17:23:23 -080057 break;
58 }
59 }
David Brownell2a341f52008-02-22 17:23:23 -080060 spin_unlock(&tc_list_lock);
David Brownell2a341f52008-02-22 17:23:23 -080061
Gaël PORTAY4930d242014-09-06 19:52:35 +020062 return pdev ? tc : NULL;
David Brownell2a341f52008-02-22 17:23:23 -080063}
64EXPORT_SYMBOL_GPL(atmel_tc_alloc);
65
66/**
67 * atmel_tc_free - release a specified TC block
68 * @tc: Timer/counter block that was returned by atmel_tc_alloc()
69 *
Gaël PORTAY4930d242014-09-06 19:52:35 +020070 * This reverses the effect of atmel_tc_alloc(), invalidating the resource
71 * returned by that routine and making the TC available to other drivers.
David Brownell2a341f52008-02-22 17:23:23 -080072 */
73void atmel_tc_free(struct atmel_tc *tc)
74{
75 spin_lock(&tc_list_lock);
Gaël PORTAY4930d242014-09-06 19:52:35 +020076 if (tc->allocated)
77 tc->allocated = false;
David Brownell2a341f52008-02-22 17:23:23 -080078 spin_unlock(&tc_list_lock);
79}
80EXPORT_SYMBOL_GPL(atmel_tc_free);
81
Nicolas Ferre3a61a5d2012-01-19 10:13:40 +010082#if defined(CONFIG_OF)
Nicolas Ferre8e315a72012-01-19 18:44:49 +010083static struct atmel_tcb_config tcb_rm9200_config = {
84 .counter_width = 16,
85};
86
87static struct atmel_tcb_config tcb_sam9x5_config = {
88 .counter_width = 32,
89};
90
Nicolas Ferre3a61a5d2012-01-19 10:13:40 +010091static const struct of_device_id atmel_tcb_dt_ids[] = {
92 {
93 .compatible = "atmel,at91rm9200-tcb",
Nicolas Ferre8e315a72012-01-19 18:44:49 +010094 .data = &tcb_rm9200_config,
95 }, {
96 .compatible = "atmel,at91sam9x5-tcb",
97 .data = &tcb_sam9x5_config,
Nicolas Ferre3a61a5d2012-01-19 10:13:40 +010098 }, {
99 /* sentinel */
100 }
101};
102
103MODULE_DEVICE_TABLE(of, atmel_tcb_dt_ids);
104#endif
105
David Brownell2a341f52008-02-22 17:23:23 -0800106static int __init tc_probe(struct platform_device *pdev)
107{
108 struct atmel_tc *tc;
109 struct clk *clk;
110 int irq;
Gaël PORTAY4930d242014-09-06 19:52:35 +0200111 struct resource *r;
Gaël PORTAY84f46232014-09-06 19:52:36 +0200112 unsigned int i;
David Brownell2a341f52008-02-22 17:23:23 -0800113
114 irq = platform_get_irq(pdev, 0);
115 if (irq < 0)
116 return -EINVAL;
117
Gaël PORTAY84954972014-09-06 19:52:34 +0200118 tc = devm_kzalloc(&pdev->dev, sizeof(struct atmel_tc), GFP_KERNEL);
David Brownell2a341f52008-02-22 17:23:23 -0800119 if (!tc)
120 return -ENOMEM;
121
122 tc->pdev = pdev;
123
Gaël PORTAY84954972014-09-06 19:52:34 +0200124 clk = devm_clk_get(&pdev->dev, "t0_clk");
125 if (IS_ERR(clk))
126 return PTR_ERR(clk);
David Brownell2a341f52008-02-22 17:23:23 -0800127
Boris Brezillon7d8d05d2015-08-16 11:23:46 +0200128 tc->slow_clk = devm_clk_get(&pdev->dev, "slow_clk");
129 if (IS_ERR(tc->slow_clk))
130 return PTR_ERR(tc->slow_clk);
131
Gaël PORTAY4930d242014-09-06 19:52:35 +0200132 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
133 tc->regs = devm_ioremap_resource(&pdev->dev, r);
134 if (IS_ERR(tc->regs))
135 return PTR_ERR(tc->regs);
136
Nicolas Ferre8e315a72012-01-19 18:44:49 +0100137 /* Now take SoC information if available */
138 if (pdev->dev.of_node) {
139 const struct of_device_id *match;
140 match = of_match_node(atmel_tcb_dt_ids, pdev->dev.of_node);
141 if (match)
142 tc->tcb_config = match->data;
Gaël PORTAY4930d242014-09-06 19:52:35 +0200143
144 tc->id = of_alias_get_id(tc->pdev->dev.of_node, "tcb");
145 } else {
146 tc->id = pdev->id;
Nicolas Ferre8e315a72012-01-19 18:44:49 +0100147 }
148
David Brownell2a341f52008-02-22 17:23:23 -0800149 tc->clk[0] = clk;
Gaël PORTAY84954972014-09-06 19:52:34 +0200150 tc->clk[1] = devm_clk_get(&pdev->dev, "t1_clk");
David Brownell2a341f52008-02-22 17:23:23 -0800151 if (IS_ERR(tc->clk[1]))
152 tc->clk[1] = clk;
Gaël PORTAY84954972014-09-06 19:52:34 +0200153 tc->clk[2] = devm_clk_get(&pdev->dev, "t2_clk");
David Brownell2a341f52008-02-22 17:23:23 -0800154 if (IS_ERR(tc->clk[2]))
155 tc->clk[2] = clk;
156
157 tc->irq[0] = irq;
158 tc->irq[1] = platform_get_irq(pdev, 1);
159 if (tc->irq[1] < 0)
160 tc->irq[1] = irq;
161 tc->irq[2] = platform_get_irq(pdev, 2);
162 if (tc->irq[2] < 0)
163 tc->irq[2] = irq;
164
Gaël PORTAY84f46232014-09-06 19:52:36 +0200165 for (i = 0; i < 3; i++)
166 writel(ATMEL_TC_ALL_IRQ, tc->regs + ATMEL_TC_REG(i, IDR));
167
David Brownell2a341f52008-02-22 17:23:23 -0800168 spin_lock(&tc_list_lock);
169 list_add_tail(&tc->node, &tc_list);
170 spin_unlock(&tc_list_lock);
171
Gaël PORTAY84f46232014-09-06 19:52:36 +0200172 platform_set_drvdata(pdev, tc);
173
David Brownell2a341f52008-02-22 17:23:23 -0800174 return 0;
175}
176
Gaël PORTAY84f46232014-09-06 19:52:36 +0200177static void tc_shutdown(struct platform_device *pdev)
178{
179 int i;
180 struct atmel_tc *tc = platform_get_drvdata(pdev);
181
182 for (i = 0; i < 3; i++)
183 writel(ATMEL_TC_ALL_IRQ, tc->regs + ATMEL_TC_REG(i, IDR));
184}
185
David Brownell2a341f52008-02-22 17:23:23 -0800186static struct platform_driver tc_driver = {
Nicolas Ferre3a61a5d2012-01-19 10:13:40 +0100187 .driver = {
188 .name = "atmel_tcb",
189 .of_match_table = of_match_ptr(atmel_tcb_dt_ids),
190 },
Gaël PORTAY84f46232014-09-06 19:52:36 +0200191 .shutdown = tc_shutdown,
David Brownell2a341f52008-02-22 17:23:23 -0800192};
193
194static int __init tc_init(void)
195{
196 return platform_driver_probe(&tc_driver, tc_probe);
197}
198arch_initcall(tc_init);