summaryrefslogtreecommitdiff
path: root/drivers/soc/fsl/layerscape/ftm_alarm.c
blob: 49865b0b266453b99eee8691b5a96e6334ccdb47 (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
/*
 * Freescale FlexTimer Module (FTM) Alarm driver.
 *
 * Copyright 2014 Freescale Semiconductor, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 */

#include <linux/device.h>
#include <linux/err.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/of_address.h>
#include <linux/of_irq.h>
#include <linux/platform_device.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/libata.h>
#include <linux/module.h>

#define FTM_SC			0x00
#define FTM_SC_CLK_SHIFT	3
#define FTM_SC_CLK_MASK		(0x3 << FTM_SC_CLK_SHIFT)
#define FTM_SC_CLK(c)		((c) << FTM_SC_CLK_SHIFT)
#define FTM_SC_PS_MASK		0x7
#define FTM_SC_TOIE		BIT(6)
#define FTM_SC_TOF		BIT(7)

#define FTM_SC_CLKS_FIXED_FREQ	0x02

#define FTM_CNT			0x04
#define FTM_MOD			0x08
#define FTM_CNTIN		0x4C

#define FIXED_FREQ_CLK		32000
#define MAX_FREQ_DIV		(1 << FTM_SC_PS_MASK)
#define MAX_COUNT_VAL		0xffff

static void __iomem *ftm1_base;
static void __iomem *rcpm_ftm_addr;
static u32 alarm_freq;
static bool big_endian;

enum pmu_endian_type {
	BIG_ENDIAN,
	LITTLE_ENDIAN,
};

struct rcpm_cfg {
	enum pmu_endian_type big_endian;	/* Big/Little endian of PMU module */
	u32 flextimer_set_bit;	/* FlexTimer1 is not powerdown during device LPM20 */
};

static struct rcpm_cfg ls1012a_rcpm_cfg = {
	.big_endian = BIG_ENDIAN,
	.flextimer_set_bit = 0x20000,
};

static struct rcpm_cfg ls1021a_rcpm_cfg = {
	.big_endian = BIG_ENDIAN,
	.flextimer_set_bit = 0x20000,
};

static struct rcpm_cfg ls1043a_rcpm_cfg = {
	.big_endian = BIG_ENDIAN,
	.flextimer_set_bit = 0x20000,
};

static struct rcpm_cfg ls1046a_rcpm_cfg = {
	.big_endian = BIG_ENDIAN,
	.flextimer_set_bit = 0x20000,
};

static struct rcpm_cfg ls1088a_rcpm_cfg = {
	.big_endian = LITTLE_ENDIAN,
	.flextimer_set_bit = 0x4000,
};

static struct rcpm_cfg ls208xa_rcpm_cfg = {
	.big_endian = LITTLE_ENDIAN,
	.flextimer_set_bit = 0x4000,
};

static const struct of_device_id ippdexpcr_of_match[] = {
	{ .compatible = "fsl,ls1012a-ftm", .data = &ls1012a_rcpm_cfg},
	{ .compatible = "fsl,ls1021a-ftm", .data = &ls1021a_rcpm_cfg},
	{ .compatible = "fsl,ls1043a-ftm", .data = &ls1043a_rcpm_cfg},
	{ .compatible = "fsl,ls1046a-ftm", .data = &ls1046a_rcpm_cfg},
	{ .compatible = "fsl,ls1088a-ftm", .data = &ls1088a_rcpm_cfg},
	{ .compatible = "fsl,ls208xa-ftm", .data = &ls208xa_rcpm_cfg},
	{},
};
MODULE_DEVICE_TABLE(of, ippdexpcr_of_match);

static inline u32 ftm_readl(void __iomem *addr)
{
	if (big_endian)
		return ioread32be(addr);

	return ioread32(addr);
}

static inline void ftm_writel(u32 val, void __iomem *addr)
{
	if (big_endian)
		iowrite32be(val, addr);
	else
		iowrite32(val, addr);
}

static inline void ftm_counter_enable(void __iomem *base)
{
	u32 val;

	/* select and enable counter clock source */
	val = ftm_readl(base + FTM_SC);
	val &= ~(FTM_SC_PS_MASK | FTM_SC_CLK_MASK);
	val |= (FTM_SC_PS_MASK | FTM_SC_CLK(FTM_SC_CLKS_FIXED_FREQ));
	ftm_writel(val, base + FTM_SC);
}

static inline void ftm_counter_disable(void __iomem *base)
{
	u32 val;

	/* disable counter clock source */
	val = ftm_readl(base + FTM_SC);
	val &= ~(FTM_SC_PS_MASK | FTM_SC_CLK_MASK);
	ftm_writel(val, base + FTM_SC);
}

static inline void ftm_irq_acknowledge(void __iomem *base)
{
	unsigned int timeout = 100;

	while ((FTM_SC_TOF & ftm_readl(base + FTM_SC)) && timeout--)
		ftm_writel(ftm_readl(base + FTM_SC) & (~FTM_SC_TOF),
			   base + FTM_SC);
}

static inline void ftm_irq_enable(void __iomem *base)
{
	u32 val;

	val = ftm_readl(base + FTM_SC);
	val |= FTM_SC_TOIE;
	ftm_writel(val, base + FTM_SC);
}

static inline void ftm_irq_disable(void __iomem *base)
{
	u32 val;

	val = ftm_readl(base + FTM_SC);
	val &= ~FTM_SC_TOIE;
	ftm_writel(val, base + FTM_SC);
}

static inline void ftm_reset_counter(void __iomem *base)
{
	/*
	 * The CNT register contains the FTM counter value.
	 * Reset clears the CNT register. Writing any value to COUNT
	 * updates the counter with its initial value, CNTIN.
	 */
	ftm_writel(0x00, base + FTM_CNT);
}

static u32 time_to_cycle(unsigned long time)
{
	u32 cycle;

	cycle = time * alarm_freq;
	if (cycle > MAX_COUNT_VAL) {
		pr_err("Out of alarm range.\n");
		cycle = 0;
	}

	return cycle;
}

static u32 cycle_to_time(u32 cycle)
{
	return cycle / alarm_freq + 1;
}

static void ftm_clean_alarm(void)
{
	ftm_counter_disable(ftm1_base);

	ftm_writel(0x00, ftm1_base + FTM_CNTIN);
	ftm_writel(~0U, ftm1_base + FTM_MOD);

	ftm_reset_counter(ftm1_base);
}

static int ftm_set_alarm(u64 cycle)
{
	ftm_irq_disable(ftm1_base);

	/*
	 * The counter increments until the value of MOD is reached,
	 * at which point the counter is reloaded with the value of CNTIN.
	 * The TOF (the overflow flag) bit is set when the FTM counter
	 * changes from MOD to CNTIN. So we should using the cycle - 1.
	 */
	ftm_writel(cycle - 1, ftm1_base + FTM_MOD);

	ftm_counter_enable(ftm1_base);

	ftm_irq_enable(ftm1_base);

	return 0;
}

static irqreturn_t ftm_alarm_interrupt(int irq, void *dev_id)
{
	ftm_irq_acknowledge(ftm1_base);
	ftm_irq_disable(ftm1_base);
	ftm_clean_alarm();

	return IRQ_HANDLED;
}

static ssize_t ftm_alarm_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	u32 count, val;

	count = ftm_readl(ftm1_base + FTM_MOD);
	val = ftm_readl(ftm1_base + FTM_CNT);
	val = (count & MAX_COUNT_VAL) - val;
	val = cycle_to_time(val);

	return sprintf(buf, "%u\n", val);
}

static ssize_t ftm_alarm_store(struct device *dev,
			       struct device_attribute *attr,
			       const char *buf, size_t count)
{
	u32 cycle;
	unsigned long time;

	if (kstrtoul(buf, 0, &time))
		return -EINVAL;

	ftm_clean_alarm();

	cycle = time_to_cycle(time);
	if (!cycle)
		return -EINVAL;

	ftm_set_alarm(cycle);

	return count;
}

static struct device_attribute ftm_alarm_attributes = __ATTR(ftm_alarm, 0644,
			ftm_alarm_show, ftm_alarm_store);

static int ftm_alarm_probe(struct platform_device *pdev)
{
	struct device_node *np = pdev->dev.of_node;
	struct resource *r;
	int irq;
	int ret;
	struct rcpm_cfg *rcpm_cfg;
	u32 ippdexpcr, flextimer;
	const struct of_device_id *of_id;
	enum pmu_endian_type endian;

	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!r)
		return -ENODEV;

	ftm1_base = devm_ioremap_resource(&pdev->dev, r);
	if (IS_ERR(ftm1_base))
		return PTR_ERR(ftm1_base);

	of_id = of_match_node(ippdexpcr_of_match, np);
	if (!of_id)
		return -ENODEV;

	rcpm_cfg = devm_kzalloc(&pdev->dev, sizeof(*rcpm_cfg), GFP_KERNEL);
	if (!rcpm_cfg)
		return -ENOMEM;

	rcpm_cfg = (struct rcpm_cfg*)of_id->data;
	endian = rcpm_cfg->big_endian;
	flextimer = rcpm_cfg->flextimer_set_bit;

	r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "FlexTimer1");
	if (r) {
		rcpm_ftm_addr = devm_ioremap_resource(&pdev->dev, r);
		if (IS_ERR(rcpm_ftm_addr))
			return PTR_ERR(rcpm_ftm_addr);
		if (endian == BIG_ENDIAN)
			ippdexpcr = ioread32be(rcpm_ftm_addr);
		else
			ippdexpcr = ioread32(rcpm_ftm_addr);
		ippdexpcr |= flextimer;
		if (endian == BIG_ENDIAN)
			iowrite32be(ippdexpcr, rcpm_ftm_addr);
		else
			iowrite32(ippdexpcr, rcpm_ftm_addr);
	}

	irq = irq_of_parse_and_map(np, 0);
	if (irq <= 0) {
		pr_err("ftm: unable to get IRQ from DT, %d\n", irq);
		return -EINVAL;
	}

	big_endian = of_property_read_bool(np, "big-endian");

	ret = devm_request_irq(&pdev->dev, irq, ftm_alarm_interrupt,
			       IRQF_NO_SUSPEND, dev_name(&pdev->dev), NULL);
	if (ret < 0) {
		dev_err(&pdev->dev, "failed to request irq\n");
		return ret;
	}

	ret = device_create_file(&pdev->dev, &ftm_alarm_attributes);
	if (ret) {
		dev_err(&pdev->dev, "create sysfs fail.\n");
		return ret;
	}

	alarm_freq = (u32)FIXED_FREQ_CLK / (u32)MAX_FREQ_DIV;

	ftm_clean_alarm();

	device_init_wakeup(&pdev->dev, true);

	return ret;
}

static const struct of_device_id ftm_alarm_match[] = {
	{ .compatible = "fsl,ls1012a-ftm", },
	{ .compatible = "fsl,ls1021a-ftm", },
	{ .compatible = "fsl,ls1043a-ftm", },
	{ .compatible = "fsl,ls1046a-ftm", },
	{ .compatible = "fsl,ls1088a-ftm", },
	{ .compatible = "fsl,ls208xa-ftm", },
	{ .compatible = "fsl,ftm-timer", },
	{ },
};

static struct platform_driver ftm_alarm_driver = {
	.probe		= ftm_alarm_probe,
	.driver		= {
		.name	= "ftm-alarm",
		.owner	= THIS_MODULE,
		.of_match_table = ftm_alarm_match,
	},
};

static int __init ftm_alarm_init(void)
{
	return platform_driver_register(&ftm_alarm_driver);
}
device_initcall(ftm_alarm_init);