summaryrefslogtreecommitdiff
path: root/drivers/char/lptimer.c
blob: d955cbd4c7fb4a70b5847bba2f0362044007284f (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
/*
 * drivers/char/lptimer.c
 *
 * Copyright (C) 2012 Freescale Semiconductor, Inc.  All rights reserved.
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

#include <linux/fs.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/ptrace.h>
#include <linux/errno.h>
#include <linux/ioport.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/spinlock.h>
#include <linux/workqueue.h>
#include <linux/bitops.h>
#include <linux/io.h>
#include <linux/irq.h>
#include <linux/clk.h>
#include <linux/cdev.h>
#include <asm/uaccess.h>
#include <linux/platform_device.h>
#include <linux/poll.h>
#include <mach/clock.h>
#include "lptimer_reg.h"
#include "lptimer.h"

//	define for timer master
#define TIMER_MASTER_MAX_TIMER			1
#define TIMER_MASTER_ENUM_AVAILABLE		1
#define TIMER_MASTER_ENUM_MAXCHANNEL	1
#include "mvf_timer_master.c"

////////////////////////////////////////////////////////////////

#define LPT_DRIVER_NAME	"lpt"

struct mvf_lpt_dev {
	void __iomem *membase;
	int irq;
	unsigned long configured;
	void (*event_handler)(void);
	struct clk *clk;
};


static irqreturn_t lpt_int_handler(int irq, void *dev_id)
{
	struct mvf_lpt_dev *timedevptr = dev_id;
	unsigned long val;
	irqreturn_t	iret;
	
	iret = IRQ_HANDLED;

	val = readl( timedevptr->membase + LPTMR_CSR_OFFSET);
	if (val & LPTMR_CSR_TCF){

		if ( timedevptr->event_handler){
			(*timedevptr->event_handler)();
		}
		//	clear 1 write.
		writel( val, timedevptr->membase + LPTMR_CSR_OFFSET);
	}else{
		iret = IRQ_NONE;
	}

	return iret;
	
}

int lpt_enable_timer( int timer_handle)
{
	struct platform_device *pdev;
	struct mvf_lpt_dev *timedevptr;
	void __iomem *membase;
	unsigned long val;

	if ( !timer_master_is_opened(timer_handle)){
		return -EAGAIN;
	}

	pdev = timer_master_get_pdev(timer_handle);
	timedevptr = platform_get_drvdata(pdev);

	if ( !timedevptr->configured){
		return -EAGAIN;
	}
	
	membase = timedevptr->membase;

	//	When TEN is set,the LPTMR is enabled. 
	//	While writing 1 to this field, CSR[5:1] 
	//	must not be altered.
	val = readl(membase + LPTMR_CSR_OFFSET);
	val |= ( LPTMR_CSR_TEN|LPTMR_CSR_TIE);
	writel( val, membase + LPTMR_CSR_OFFSET);

 	return 0;
}
EXPORT_SYMBOL(lpt_enable_timer);

int lpt_disable_timer( int timer_handle)
{
	struct platform_device *pdev;
	struct mvf_lpt_dev *timedevptr;
	void __iomem *membase;
	unsigned long val;

	if ( !timer_master_is_opened(timer_handle)){
		return -EAGAIN;
	}

	pdev = timer_master_get_pdev(timer_handle);
	timedevptr = platform_get_drvdata(pdev);

	if ( !timedevptr->configured){
		return -EAGAIN;
	}

	membase = timedevptr->membase;

	//	When TEN is clear, it resets the LPTMR internal logic, 
	//	including the CNR and TCF.
	val = readl(membase + LPTMR_CSR_OFFSET);
	val &= ~LPTMR_CSR_TEN;
	writel( val, membase + LPTMR_CSR_OFFSET);

	return  0;
}
EXPORT_SYMBOL(lpt_disable_timer);

int lpt_alloc_timer( void)
{
	return timer_master_alloc_timer(0);
}
EXPORT_SYMBOL(lpt_alloc_timer);

int lpt_free_timer( int timer_handle)
{
	if ( !lpt_disable_timer( timer_handle)){
		return timer_master_free( timer_handle);
	}

	return -EAGAIN;
}
EXPORT_SYMBOL( lpt_free_timer);

int lpt_read_counter( int timer_handle, unsigned long *counter)
{
	struct platform_device *pdev;
	struct mvf_lpt_dev *timedevptr;

	if ( !timer_master_is_opened( timer_handle)){
		return -EAGAIN;
	}
	pdev = timer_master_get_pdev(timer_handle);
	timedevptr = platform_get_drvdata(pdev);

	//	Synchronize temporary reg
	writel( 0, timedevptr->membase + LPTMR_CNR_OFFSET);

	//	16bit timer
	*counter = readl( timedevptr->membase + LPTMR_CNR_OFFSET) & 0x0000ffff;

	return 0;
}
EXPORT_SYMBOL( lpt_read_counter);

int lpt_param_set( int timer_handle, struct mvf_lpt_request *req, void (*event_handler)(void))
{
	void __iomem *membase;
	struct platform_device *pdev;
	struct mvf_lpt_dev *timedevptr;
	unsigned long val;

	if ( !timer_master_is_opened( timer_handle)){
		return -EAGAIN;
	}

	pdev = timer_master_get_pdev(timer_handle);
	timedevptr = platform_get_drvdata(pdev);

	membase = timedevptr->membase;
	if ( req == NULL){
        printk( KERN_ERR"lptmr param error \n");
        return -EINVAL;
	}
	
	if( req->timer_mode > LPT_PARAM_TM_PULSECOUNTER){
        printk( KERN_ERR"lptmr clock mode setting error\n");
        return -EINVAL;
	}

	if( req->pulse_pin_polarity > LPT_PARAM_PPP_ACTIVELOW){
        printk( KERN_ERR"lptmr clock pin polarity error\n");
        return -EINVAL;
	}

	if( req->pulse_pin_select > LPT_PARAM_PPS_INPUT3){
        printk( KERN_ERR"lptmr clock pin polarity error\n");
        return -EINVAL;
	}
	
	if( req->prs_clock_sel > LPT_PARAM_PCS_CLOCK3){
        printk( KERN_ERR"lptmr clock select error\n");
        return -EINVAL;
	}

	if( req->prs_bypass > LPT_PARAM_PB_GF_BYPASS){
        printk( KERN_ERR"lptmr clock bypass error\n");
        return -EINVAL;
	}
	

	if( req->prs_value > LPT_PARAM_PV_DIV65536_RISE32768){
        printk( KERN_ERR"lptmr clock bypass error\n");
        return -EINVAL;
	}

	if( req->compare_value > 0x0000ffff){
        printk( KERN_ERR"lptmr clock compare value over 16bit\n");
	}
	

	//	clear all param
	writel( 0, membase + LPTMR_CSR_OFFSET);

	//	CSR	:		TMS(1)						TPP(3)								TPS(4-5)
	val = ( req->timer_mode << 1) | ( req->pulse_pin_polarity << 3) |  ( req->pulse_pin_select << 4);
	writel( val, membase + LPTMR_CSR_OFFSET);

	//	PSR	:		PCS(0)						PBYP(2)				PRESCALE(3-6)
	val = ( req->prs_clock_sel) | ( req->prs_bypass << 2) |  ( req->prs_value << 3);
	writel( val, membase + LPTMR_PSR_OFFSET);

	//	compare
	writel( req->compare_value, membase + LPTMR_CMR_OFFSET);
#if 0
printk("register LPTMR_CSR_OFFSET %x\n", readl( timedevptr->membase + LPTMR_CSR_OFFSET));
printk("register LPTMR_PSR_OFFSET %x\n", readl( timedevptr->membase + LPTMR_PSR_OFFSET));
printk("register LPTMR_CMR_OFFSET %x\n", readl( timedevptr->membase + LPTMR_CMR_OFFSET));
#endif

	timedevptr->event_handler = event_handler;
	timedevptr->configured++;
	//	check 32bit cyclic
	if( timedevptr->configured ==0){
		timedevptr->configured++;
	}
	

	return 0;
}
EXPORT_SYMBOL( lpt_param_set);

static __devinit
int lpt_probe(struct platform_device *pdev)
{
	int size;
	int result;
	struct resource *lptmr_membase, *lptmr_irq;
	struct mvf_lpt_dev *timedevptr;

	lptmr_membase = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	lptmr_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);

	if (!lptmr_irq || !lptmr_membase){
		 printk(KERN_WARNING"lptmr resource allocation failed\n");
		return -ENODEV;
	}

	timedevptr = kzalloc(sizeof(struct mvf_lpt_dev), GFP_KERNEL);
	if (!timedevptr) {
		 printk(KERN_WARNING"lptmr malloc fail.\n");
		return  -ENOMEM;
	}
	timedevptr->clk = clk_get(&pdev->dev, "lptmr_clk");
	if ( IS_ERR( timedevptr->clk )) {
		dev_err(&pdev->dev, "Could not low power timer clk\n");
		return PTR_ERR( timedevptr->clk);
	}
	clk_enable( timedevptr->clk);

	size = lptmr_membase->end - lptmr_membase->start + 1;
	timedevptr->membase = ioremap(lptmr_membase->start, size);
	if (!timedevptr->membase){
		printk(KERN_WARNING"lptmr ioremap failed.\n");
		return  -ENOMEM;
	}
	timedevptr->irq = lptmr_irq->start;
	
	result = request_irq(timedevptr->irq, lpt_int_handler, 0, LPT_DRIVER_NAME, timedevptr);
	if (result < 0) {
		 printk(KERN_WARNING"lptmr Error %d can't get irq.\n", result);
		return result;
	}

	platform_set_drvdata(pdev, timedevptr);

	timer_master_register_platform(pdev);

	printk (KERN_INFO "Low Power Timer Driver Installed.\n");

	return 0;
}

static int __devexit lpt_remove(struct platform_device *pdev)
{
	struct mvf_lpt_dev *timedevptr;

	timedevptr = platform_get_drvdata(pdev);

	//	disable all
	lpt_disable_timer( 0);
	clk_disable( timedevptr->clk);
	kfree( timedevptr);
	return 0;
}

static struct platform_driver lpt_driver = {
	.driver = {
		   .owner = THIS_MODULE,
		   .name = "mvf-lpt",
		   },
	.probe = lpt_probe,
	.remove = lpt_remove,
};

static int __init lpt_plat_dev_init(void)
{
	return platform_driver_register(&lpt_driver);
}

static void __exit lpt_plat_dev_cleanup(void)
{
	platform_driver_unregister(&lpt_driver);
}

module_init(lpt_plat_dev_init);
module_exit(lpt_plat_dev_cleanup);