Linux Audio

Check our new training course

Linux kernel drivers training

Mar 31-Apr 9, 2025, special US time zones
Register
Loading...
v3.15
  1#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>
  9#include <linux/module.h>
 10#include <linux/slab.h>
 11#include <linux/export.h>
 12#include <linux/of.h>
 
 13
 14/*
 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
 38 * @name: name to be associated with the iomem resource
 39 *
 40 * Caller allocates a block.  If it is available, a pointer to a
 41 * pre-initialized struct atmel_tc is returned. The caller can access
 42 * the registers directly through the "regs" field.
 43 */
 44struct atmel_tc *atmel_tc_alloc(unsigned block, const char *name)
 45{
 46	struct atmel_tc		*tc;
 47	struct platform_device	*pdev = NULL;
 48	struct resource		*r;
 49	size_t			size;
 50
 51	spin_lock(&tc_list_lock);
 52	list_for_each_entry(tc, &tc_list, node) {
 53		if (tc->pdev->dev.of_node) {
 54			if (of_alias_get_id(tc->pdev->dev.of_node, "tcb")
 55					== block) {
 56				pdev = tc->pdev;
 57				break;
 58			}
 59		} else if (tc->pdev->id == block) {
 60			pdev = tc->pdev;
 
 61			break;
 62		}
 63	}
 64
 65	if (!pdev || tc->iomem)
 66		goto fail;
 67
 68	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 69	if (!r)
 70		goto fail;
 71
 72	size = resource_size(r);
 73	r = request_mem_region(r->start, size, name);
 74	if (!r)
 75		goto fail;
 76
 77	tc->regs = ioremap(r->start, size);
 78	if (!tc->regs)
 79		goto fail_ioremap;
 80
 81	tc->iomem = r;
 82
 83out:
 84	spin_unlock(&tc_list_lock);
 85	return tc;
 86
 87fail_ioremap:
 88	release_mem_region(r->start, size);
 89fail:
 90	tc = NULL;
 91	goto out;
 92}
 93EXPORT_SYMBOL_GPL(atmel_tc_alloc);
 94
 95/**
 96 * atmel_tc_free - release a specified TC block
 97 * @tc: Timer/counter block that was returned by atmel_tc_alloc()
 98 *
 99 * This reverses the effect of atmel_tc_alloc(), unmapping the I/O
100 * registers, invalidating the resource returned by that routine and
101 * making the TC available to other drivers.
102 */
103void atmel_tc_free(struct atmel_tc *tc)
104{
105	spin_lock(&tc_list_lock);
106	if (tc->regs) {
107		iounmap(tc->regs);
108		release_mem_region(tc->iomem->start, resource_size(tc->iomem));
109		tc->regs = NULL;
110		tc->iomem = NULL;
111	}
112	spin_unlock(&tc_list_lock);
113}
114EXPORT_SYMBOL_GPL(atmel_tc_free);
115
116#if defined(CONFIG_OF)
117static struct atmel_tcb_config tcb_rm9200_config = {
118	.counter_width = 16,
119};
120
121static struct atmel_tcb_config tcb_sam9x5_config = {
122	.counter_width = 32,
123};
124
125static const struct of_device_id atmel_tcb_dt_ids[] = {
126	{
127		.compatible = "atmel,at91rm9200-tcb",
128		.data = &tcb_rm9200_config,
129	}, {
130		.compatible = "atmel,at91sam9x5-tcb",
131		.data = &tcb_sam9x5_config,
132	}, {
133		/* sentinel */
134	}
135};
136
137MODULE_DEVICE_TABLE(of, atmel_tcb_dt_ids);
138#endif
139
140static int __init tc_probe(struct platform_device *pdev)
141{
142	struct atmel_tc *tc;
143	struct clk	*clk;
144	int		irq;
 
 
145
146	if (!platform_get_resource(pdev, IORESOURCE_MEM, 0))
147		return -EINVAL;
148
149	irq = platform_get_irq(pdev, 0);
150	if (irq < 0)
151		return -EINVAL;
152
153	tc = kzalloc(sizeof(struct atmel_tc), GFP_KERNEL);
154	if (!tc)
155		return -ENOMEM;
156
157	tc->pdev = pdev;
158
159	clk = clk_get(&pdev->dev, "t0_clk");
160	if (IS_ERR(clk)) {
161		kfree(tc);
162		return -EINVAL;
163	}
 
 
 
 
 
 
 
164
165	/* Now take SoC information if available */
166	if (pdev->dev.of_node) {
167		const struct of_device_id *match;
168		match = of_match_node(atmel_tcb_dt_ids, pdev->dev.of_node);
169		if (match)
170			tc->tcb_config = match->data;
 
 
 
 
171	}
172
173	tc->clk[0] = clk;
174	tc->clk[1] = clk_get(&pdev->dev, "t1_clk");
175	if (IS_ERR(tc->clk[1]))
176		tc->clk[1] = clk;
177	tc->clk[2] = clk_get(&pdev->dev, "t2_clk");
178	if (IS_ERR(tc->clk[2]))
179		tc->clk[2] = clk;
180
181	tc->irq[0] = irq;
182	tc->irq[1] = platform_get_irq(pdev, 1);
183	if (tc->irq[1] < 0)
184		tc->irq[1] = irq;
185	tc->irq[2] = platform_get_irq(pdev, 2);
186	if (tc->irq[2] < 0)
187		tc->irq[2] = irq;
188
 
 
 
189	spin_lock(&tc_list_lock);
190	list_add_tail(&tc->node, &tc_list);
191	spin_unlock(&tc_list_lock);
192
 
 
193	return 0;
194}
195
 
 
 
 
 
 
 
 
 
196static struct platform_driver tc_driver = {
197	.driver = {
198		.name	= "atmel_tcb",
199		.of_match_table	= of_match_ptr(atmel_tcb_dt_ids),
200	},
 
201};
202
203static int __init tc_init(void)
204{
205	return platform_driver_probe(&tc_driver, tc_probe);
206}
207arch_initcall(tc_init);
v5.4
  1// SPDX-License-Identifier: GPL-2.0-only
  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>
  9#include <linux/module.h>
 10#include <linux/slab.h>
 11#include <linux/export.h>
 12#include <linux/of.h>
 13#include <soc/at91/atmel_tcb.h>
 14
 15/*
 16 * This is a thin library to solve the problem of how to portably allocate
 17 * one of the TC blocks.  For simplicity, it doesn't currently expect to
 18 * share individual timers between different drivers.
 19 */
 20
 21#if defined(CONFIG_AVR32)
 22/* AVR32 has these divide PBB */
 23const u8 atmel_tc_divisors[5] = { 0, 4, 8, 16, 32, };
 24EXPORT_SYMBOL(atmel_tc_divisors);
 25
 26#elif defined(CONFIG_ARCH_AT91)
 27/* AT91 has these divide MCK */
 28const u8 atmel_tc_divisors[5] = { 2, 8, 32, 128, 0, };
 29EXPORT_SYMBOL(atmel_tc_divisors);
 30
 31#endif
 32
 33static DEFINE_SPINLOCK(tc_list_lock);
 34static LIST_HEAD(tc_list);
 35
 36/**
 37 * atmel_tc_alloc - allocate a specified TC block
 38 * @block: which block to allocate
 
 39 *
 40 * Caller allocates a block.  If it is available, a pointer to a
 41 * pre-initialized struct atmel_tc is returned. The caller can access
 42 * the registers directly through the "regs" field.
 43 */
 44struct atmel_tc *atmel_tc_alloc(unsigned block)
 45{
 46	struct atmel_tc		*tc;
 47	struct platform_device	*pdev = NULL;
 
 
 48
 49	spin_lock(&tc_list_lock);
 50	list_for_each_entry(tc, &tc_list, node) {
 51		if (tc->allocated)
 52			continue;
 53
 54		if ((tc->pdev->dev.of_node && tc->id == block) ||
 55		    (tc->pdev->id == block)) {
 
 
 56			pdev = tc->pdev;
 57			tc->allocated = true;
 58			break;
 59		}
 60	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 61	spin_unlock(&tc_list_lock);
 
 62
 63	return pdev ? tc : NULL;
 
 
 
 
 64}
 65EXPORT_SYMBOL_GPL(atmel_tc_alloc);
 66
 67/**
 68 * atmel_tc_free - release a specified TC block
 69 * @tc: Timer/counter block that was returned by atmel_tc_alloc()
 70 *
 71 * This reverses the effect of atmel_tc_alloc(), invalidating the resource
 72 * returned by that routine and making the TC available to other drivers.
 
 73 */
 74void atmel_tc_free(struct atmel_tc *tc)
 75{
 76	spin_lock(&tc_list_lock);
 77	if (tc->allocated)
 78		tc->allocated = false;
 
 
 
 
 79	spin_unlock(&tc_list_lock);
 80}
 81EXPORT_SYMBOL_GPL(atmel_tc_free);
 82
 83#if defined(CONFIG_OF)
 84static struct atmel_tcb_config tcb_rm9200_config = {
 85	.counter_width = 16,
 86};
 87
 88static struct atmel_tcb_config tcb_sam9x5_config = {
 89	.counter_width = 32,
 90};
 91
 92static const struct of_device_id atmel_tcb_dt_ids[] = {
 93	{
 94		.compatible = "atmel,at91rm9200-tcb",
 95		.data = &tcb_rm9200_config,
 96	}, {
 97		.compatible = "atmel,at91sam9x5-tcb",
 98		.data = &tcb_sam9x5_config,
 99	}, {
100		/* sentinel */
101	}
102};
103
104MODULE_DEVICE_TABLE(of, atmel_tcb_dt_ids);
105#endif
106
107static int __init tc_probe(struct platform_device *pdev)
108{
109	struct atmel_tc *tc;
110	struct clk	*clk;
111	int		irq;
112	struct resource	*r;
113	unsigned int	i;
114
115	if (of_get_child_count(pdev->dev.of_node))
116		return -EBUSY;
117
118	irq = platform_get_irq(pdev, 0);
119	if (irq < 0)
120		return -EINVAL;
121
122	tc = devm_kzalloc(&pdev->dev, sizeof(struct atmel_tc), GFP_KERNEL);
123	if (!tc)
124		return -ENOMEM;
125
126	tc->pdev = pdev;
127
128	clk = devm_clk_get(&pdev->dev, "t0_clk");
129	if (IS_ERR(clk))
130		return PTR_ERR(clk);
131
132	tc->slow_clk = devm_clk_get(&pdev->dev, "slow_clk");
133	if (IS_ERR(tc->slow_clk))
134		return PTR_ERR(tc->slow_clk);
135
136	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
137	tc->regs = devm_ioremap_resource(&pdev->dev, r);
138	if (IS_ERR(tc->regs))
139		return PTR_ERR(tc->regs);
140
141	/* Now take SoC information if available */
142	if (pdev->dev.of_node) {
143		const struct of_device_id *match;
144		match = of_match_node(atmel_tcb_dt_ids, pdev->dev.of_node);
145		if (match)
146			tc->tcb_config = match->data;
147
148		tc->id = of_alias_get_id(tc->pdev->dev.of_node, "tcb");
149	} else {
150		tc->id = pdev->id;
151	}
152
153	tc->clk[0] = clk;
154	tc->clk[1] = devm_clk_get(&pdev->dev, "t1_clk");
155	if (IS_ERR(tc->clk[1]))
156		tc->clk[1] = clk;
157	tc->clk[2] = devm_clk_get(&pdev->dev, "t2_clk");
158	if (IS_ERR(tc->clk[2]))
159		tc->clk[2] = clk;
160
161	tc->irq[0] = irq;
162	tc->irq[1] = platform_get_irq(pdev, 1);
163	if (tc->irq[1] < 0)
164		tc->irq[1] = irq;
165	tc->irq[2] = platform_get_irq(pdev, 2);
166	if (tc->irq[2] < 0)
167		tc->irq[2] = irq;
168
169	for (i = 0; i < 3; i++)
170		writel(ATMEL_TC_ALL_IRQ, tc->regs + ATMEL_TC_REG(i, IDR));
171
172	spin_lock(&tc_list_lock);
173	list_add_tail(&tc->node, &tc_list);
174	spin_unlock(&tc_list_lock);
175
176	platform_set_drvdata(pdev, tc);
177
178	return 0;
179}
180
181static void tc_shutdown(struct platform_device *pdev)
182{
183	int i;
184	struct atmel_tc *tc = platform_get_drvdata(pdev);
185
186	for (i = 0; i < 3; i++)
187		writel(ATMEL_TC_ALL_IRQ, tc->regs + ATMEL_TC_REG(i, IDR));
188}
189
190static struct platform_driver tc_driver = {
191	.driver = {
192		.name	= "atmel_tcb",
193		.of_match_table	= of_match_ptr(atmel_tcb_dt_ids),
194	},
195	.shutdown = tc_shutdown,
196};
197
198static int __init tc_init(void)
199{
200	return platform_driver_probe(&tc_driver, tc_probe);
201}
202arch_initcall(tc_init);