summaryrefslogtreecommitdiff
path: root/arch/arm/mach-omap2/dmtimers.c
blob: 368691e291bf3f9b2a6b1dd927dc7c1cb45b5ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/**
 * linux/arch/arm/mach-omap2/dmtimers.c
 *
 * Copyright (C) 2010 Texas Instruments, Inc.
 * Thara Gopinath <thara@ti.com>
 *
 * OMAP2 Dual-Mode Timers
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/err.h>
#include <linux/slab.h>

#include <mach/irqs.h>
#include <plat/dmtimer.h>
#include <plat/omap_hwmod.h>
#include <plat/omap_device.h>

#include "dmtimers.h"

#define NO_EARLY_TIMERS		2

struct omap2_dm_timer {
	struct clk *iclk, *fclk;
	int (*device_enable)(struct platform_device *pdev);
	int (*device_idle)(struct platform_device *pdev);
};

static const int dm_timer_count = NO_DM_TIMERS;
static struct omap2_dm_timer omap2_dm_timers[NO_DM_TIMERS];

#ifdef CONFIG_ARCH_OMAP2
static const char *omap2_dm_source_names[] __initdata = {
	"sys_ck",
	"func_32k_ck",
	"alt_ck",
	NULL
};

static struct clk *omap2_dm_source_clocks[3];
#elif defined(CONFIG_ARCH_OMAP3)
const char *omap2_dm_source_names[] __initdata = {
	"sys_ck",
	"omap_32k_fck",
	NULL
};
struct clk *omap2_dm_source_clocks[2];
#elif defined(CONFIG_ARCH_OMAP4)
static const char *omap2_dm_source_names[] __initdata = {
	"sys_clkin_ck",
	"sys_32k_ck",
	NULL
};
static struct clk *omap2_dm_source_clocks[2];
#endif

void omap2_dm_timer_enable(struct platform_device *pdev)
{
	if (cpu_is_omap24xx())	{
		clk_enable(omap2_dm_timers[pdev->id].iclk);
		clk_enable(omap2_dm_timers[pdev->id].fclk);
	} else
		omap2_dm_timers[pdev->id].device_enable(pdev);
}

void omap2_dm_timer_disable(struct platform_device *pdev)
{
	if (cpu_is_omap24xx())	{
		clk_disable(omap2_dm_timers[pdev->id].iclk);
		clk_disable(omap2_dm_timers[pdev->id].fclk);
	} else
		omap2_dm_timers[pdev->id].device_idle(pdev);
}

unsigned long omap2_dm_timer_set_clk(struct platform_device *pdev, int source)
{
	int ret = -EINVAL;

	if (cpu_is_omap24xx())	{
		clk_disable(omap2_dm_timers[pdev->id].fclk);
		ret = clk_set_parent(omap2_dm_timers[pdev->id].fclk,
				omap2_dm_source_clocks[source]);
		WARN(ret, " omap2 dmtimers: Not able to change the \
				fclk source\n");
		clk_enable(omap2_dm_timers[pdev->id].fclk);
		/*
		 * When the functional clock disappears, too quick writes seem
		 * to cause an abort. XXX Is this still necessary?
		 */
		__delay(150000);
		return clk_get_rate(omap2_dm_timers[pdev->id].fclk);
	} else {
		struct omap_device *odev = to_omap_device(pdev);

		clk_disable(odev->hwmods[0]->_clk);
		ret = clk_set_parent(odev->hwmods[0]->_clk,
				omap2_dm_source_clocks[source]);
		if (ret)
			pr_err(" omap2 dmtimers: Not able to change the \
				fclk source\n");
		clk_enable(odev->hwmods[0]->_clk);
		/*
		 * When the functional clock disappears, too quick writes seem
		 * to cause an abort. XXX Is this still necessary?
		 */
		__delay(150000);
		return clk_get_rate(odev->hwmods[0]->_clk);
	}
}

struct clk *omap2_dm_timer_get_fclk(struct platform_device *pdev)
{
	if (cpu_is_omap24xx())	{
		return omap2_dm_timers[pdev->id].fclk;
	} else {
		struct omap_device *odev = to_omap_device(pdev);

		return odev->hwmods[0]->_clk;
	}
}

/*
 * Define gpt1 and gpt2 as early devices. Later on during normal
 * init these devices will be defined again. But then the below
 * structures will be dropped after init. This is applicable only
 * for OMAP2 as OMAP3 and OMAP4 will currently use hwmod.
 */
static struct omap_dm_timer_plat_info omap2_gpt1_pdata = {
	.omap_dm_clk_enable = omap2_dm_timer_enable,
	.omap_dm_clk_disable = omap2_dm_timer_disable,
	.omap_dm_set_source_clk = omap2_dm_timer_set_clk,
	.omap_dm_get_timer_clk = omap2_dm_timer_get_fclk,
};

static struct platform_device omap2_gpt1_early_dev __initdata = {
	.name = "dmtimer",
	.id = 0,
	.dev = {
		.platform_data = &omap2_gpt1_pdata,
	},
};

static struct omap_dm_timer_plat_info omap2_gpt2_pdata = {
	.omap_dm_clk_enable = omap2_dm_timer_enable,
	.omap_dm_clk_disable = omap2_dm_timer_disable,
	.omap_dm_set_source_clk = omap2_dm_timer_set_clk,
	.omap_dm_get_timer_clk = omap2_dm_timer_get_fclk,
};

static struct platform_device omap2_gpt2_early_dev __initdata = {
	.name = "dmtimer",
	.id = 1,
	.dev = {
		.platform_data = &omap2_gpt2_pdata,
	},
};

static struct platform_device *omap2_dmtimer_early_devices[] __initdata = {
	&omap2_gpt1_early_dev,
	&omap2_gpt2_early_dev
};

struct omap_device_pm_latency omap2_dmtimer_latency[] = {
	{
	.deactivate_func = omap_device_idle_hwmods,
	.activate_func   = omap_device_enable_hwmods,
	.flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,

	},
};

void __init omap2_dm_timer_setup_clksrc(void)
{
	static int is_initialized;
	int i;

	/*
	 * Check if clock source setup has already been
	 * done as part of early init. If yes avoid it
	 * doing it again.
	 */
	if (is_initialized)
		return;

	for (i = 0; omap2_dm_source_names[i] != NULL; i++)
			omap2_dm_source_clocks[i] =
				clk_get(NULL, omap2_dm_source_names[i]);
	is_initialized = 1;
}

void __init omap2_dm_timer_early_init(void)
{
	int i = 0;

	/*
	 * OMAP 2 is not currently adapted to hwmods
	 * So implement the old way of platform_early_register
	 */
	if (cpu_is_omap24xx())	{
		for (i = 0; i < NO_EARLY_TIMERS; i++) {
			char clk_name[16];
			struct omap_dm_timer_plat_info *pdata =
				omap2_dmtimer_early_devices[i]->
				dev.platform_data;
			unsigned long base;

			switch (i) {
			case 0:
				base = OMAP24XX_GPTIMER1_BASE;
				pdata->irq = INT_24XX_GPTIMER1;
				break;
			case 1:
				base = OMAP24XX_GPTIMER2_BASE;
				pdata->irq = INT_24XX_GPTIMER2;
				break;
			default:
				/* Error should never enter here */
				return;
			}

			pdata->io_base = ioremap(base, SZ_8K);
			sprintf(clk_name, "gpt%d_ick", i + 1);
			omap2_dm_timers[i].iclk = clk_get(NULL, clk_name);
			sprintf(clk_name, "gpt%d_fck", i + 1);
			omap2_dm_timers[i].fclk = clk_get(NULL, clk_name);
		}
		early_platform_add_devices(omap2_dmtimer_early_devices,
					NO_EARLY_TIMERS);
	} else if ((cpu_is_omap34xx()) || (cpu_is_omap44xx())) {
		char *name = "dmtimer";

		do {
			struct omap_device *od;
			struct omap_hwmod *oh;
			int hw_mod_name_len = 16;
			char oh_name[hw_mod_name_len];
			struct omap_dm_timer_plat_info *pdata;

			snprintf(oh_name, hw_mod_name_len,
					"timer%d", i + 1);
			oh = omap_hwmod_lookup(oh_name);
			if (!oh)
				break;

			pdata = kzalloc(sizeof(struct omap_dm_timer_plat_info),
					GFP_KERNEL);

			pdata->omap_dm_clk_enable = omap2_dm_timer_enable;
			pdata->omap_dm_clk_disable = omap2_dm_timer_disable;
			pdata->omap_dm_set_source_clk = omap2_dm_timer_set_clk;
			pdata->omap_dm_get_timer_clk = omap2_dm_timer_get_fclk;
			pdata->io_base = oh->_rt_va;
			pdata->irq = oh->mpu_irqs[0].irq;

			od = omap_device_build(name, i, oh,
					pdata, sizeof(*pdata),
					omap2_dmtimer_latency,
					ARRAY_SIZE(omap2_dmtimer_latency), 1);

			WARN(IS_ERR(od), "Cant build omap_device for %s:%s.\n",
					name, oh->name);
			omap2_dm_timers[i].device_enable = omap_device_enable;
			omap2_dm_timers[i].device_idle = omap_device_idle;
			i++;
		} while (i < NO_EARLY_TIMERS);
	}
	omap2_dm_timer_setup_clksrc();
	early_platform_driver_register_all("earlytimer");
	early_platform_driver_probe("earlytimer", NO_EARLY_TIMERS, 0);
	return;
}

int __init omap2_dm_timer_init(void)
{
	int i = 0;

	omap2_dm_timer_setup_clksrc();
	if (cpu_is_omap24xx()) {
		for (i = 0; i < dm_timer_count; i++) {
			struct platform_device *pdev;
			struct omap_dm_timer_plat_info *pdata;
			unsigned long base;
			unsigned int irq;
			char clk_name[16];
			int ret;

			pdev = platform_device_alloc("dmtimer", i);

			switch (i) {
			case 0:
				base = OMAP24XX_GPTIMER1_BASE;
				irq = INT_24XX_GPTIMER1;
				break;
			case 1:
				base = OMAP24XX_GPTIMER2_BASE;
				irq = INT_24XX_GPTIMER2;
				break;
			case 2:
				base = OMAP24XX_GPTIMER3_BASE;
				irq = INT_24XX_GPTIMER3;
				break;
			case 3:
				base = OMAP24XX_GPTIMER4_BASE;
				irq = INT_24XX_GPTIMER4;
				break;
			case 4:
				base = OMAP24XX_GPTIMER5_BASE;
				irq = INT_24XX_GPTIMER5;
				break;
			case 5:
				base = OMAP24XX_GPTIMER6_BASE;
				irq = INT_24XX_GPTIMER6;
				break;
			case 6:
				base = OMAP24XX_GPTIMER7_BASE;
				irq = INT_24XX_GPTIMER7;
				break;
			case 7:
				base = OMAP24XX_GPTIMER8_BASE;
				irq = INT_24XX_GPTIMER8;
				break;
			case 8:
				base = OMAP24XX_GPTIMER9_BASE;
				irq = INT_24XX_GPTIMER9;
				break;
			case 9:
				base = OMAP24XX_GPTIMER10_BASE;
				irq = INT_24XX_GPTIMER10;
				break;
			case 10:
				base = OMAP24XX_GPTIMER11_BASE;
				irq = INT_24XX_GPTIMER11;
				break;
			case 11:
				base = OMAP24XX_GPTIMER12_BASE;
				irq = INT_24XX_GPTIMER12;
				break;
			default:
				/* Should never enter here */
				return -EINVAL;
			}

			pdata = kzalloc(sizeof(struct omap_dm_timer_plat_info),
					GFP_KERNEL);
			pdata->omap_dm_clk_enable = omap2_dm_timer_enable;
			pdata->omap_dm_clk_disable = omap2_dm_timer_disable;
			pdata->omap_dm_set_source_clk = omap2_dm_timer_set_clk;
			pdata->omap_dm_get_timer_clk = omap2_dm_timer_get_fclk;
			pdata->io_base = ioremap(base, SZ_8K);
			pdata->irq = irq;
			ret = platform_device_add_data(pdev, pdata,
					sizeof(*pdata));
			if (ret)
				goto fail;

			ret = platform_device_add(pdev);
			if (ret)
				goto fail;
			/*
			 * Check if an early init is already done
			 * for this dmtimer.If yes do not get the
			 * clock handles again.
			 */
			if (!omap2_dm_timers[i].iclk) {
				sprintf(clk_name, "gpt%d_ick", i + 1);
				omap2_dm_timers[i].iclk =
					clk_get(NULL, clk_name);
			}
			if (!omap2_dm_timers[i].fclk) {
				sprintf(clk_name, "gpt%d_fck", i + 1);
				omap2_dm_timers[i].fclk =
					clk_get(NULL, clk_name);
			}
			continue;
fail:
			platform_device_put(pdev);
			return ret;
		}
	} else if ((cpu_is_omap34xx()) || (cpu_is_omap44xx())) {
		char *name = "dmtimer";

		do {
			struct omap_device *od;
			struct omap_hwmod *oh;
			int hw_mod_name_len = 16;
			char oh_name[hw_mod_name_len];
			struct omap_dm_timer_plat_info *pdata;

			snprintf(oh_name, hw_mod_name_len,
					"timer%d", i + 1);
			oh = omap_hwmod_lookup(oh_name);
			if (!oh)
				break;
			pdata = kzalloc(sizeof(struct omap_dm_timer_plat_info),
					GFP_KERNEL);

			pdata->omap_dm_clk_enable = omap2_dm_timer_enable;
			pdata->omap_dm_clk_disable = omap2_dm_timer_disable;
			pdata->omap_dm_set_source_clk = omap2_dm_timer_set_clk;
			pdata->omap_dm_get_timer_clk = omap2_dm_timer_get_fclk;
			pdata->io_base = oh->_rt_va;
			pdata->irq = oh->mpu_irqs[0].irq;
			pdata->dmtimer_ip_type = oh->class->rev;
			/* Update Highlander offsets for GPTimer [3-9, 11-12].
			 * The offset1 & offset2 will be zero on OMAP3 and
			 * OMAP4 millisecond timers (GPT1, GPT2, GPT10).
			 */
			if (pdata->dmtimer_ip_type == 2) {
				pdata->offset1 = 0x10;
				pdata->offset2 = 0x14;
			}
			od = omap_device_build(name, i, oh,
					pdata, sizeof(*pdata),
					omap2_dmtimer_latency,
					ARRAY_SIZE(omap2_dmtimer_latency), 0);
			WARN(IS_ERR(od), "Cant build omap_device for %s:%s.\n",
					name, oh->name);
			omap2_dm_timers[i].device_enable = omap_device_enable;
			omap2_dm_timers[i].device_idle = omap_device_idle;
			i++;
		} while (1);
	}
	return 0;
}
arch_initcall(omap2_dm_timer_init);