-
Notifications
You must be signed in to change notification settings - Fork 1
/
at91-adc.c
373 lines (309 loc) · 9.25 KB
/
at91-adc.c
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
/*
* Driver for ADC on Atmel AT91 SoC Family
*
* Version for Aria G25 module or Terra board
* Copyright (C) 2013 Sergio Tanzilli - [email protected]
* Version for FOX G20 board
* Copyright (C) 2010 Claudio Mignanti - [email protected]
* Copyright (C) 2010 Stefano Barbato - [email protected]
* Copyright (C) 2010 Antonio Galea
*
* 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.
* ---------------------------------------------------------------------------
*/
#include <linux/cdev.h>
#include <linux/clk.h>
#include <linux/fs.h>
#include <linux/gpio.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/kernel.h>
// Fox Board G20
// Netus G20
//#define AT91SAMG20
// Aria G25
// Terra
#define AT91SAMG25
/* G20 specific registers and flags */
#ifdef AT91SAMG20
#define AT91SAM_BASE_ADC 0xfffe0000
#define AT91_ADC_CR 0x00 /* Control Register */
#define AT91_ADC_SWRST (1 << 0) /* Software Reset */
#define AT91_ADC_START (1 << 1) /* Start Conversion */
#define AT91_ADC_CHER 0x10 /* Channel Enable Register */
#define AT91_ADC_CH(n) (1 << (n)) /* Channel Number */
#define AT91_ADC_MR 0x04 /* Mode Register */
#define AT91_ADC_SHTIM (0xf << 24) /* Sample & Hold Time */
#define AT91_ADC_STARTUP (0x1f << 16) /* Startup Up Time */
#define AT91_ADC_PRESCAL (0x3f << 8) /* Prescalar Rate Selection */
#define AT91_ADC_SLEEP (1 << 5) /* Sleep Mode */
#define AT91_ADC_SR 0x1C /* Status Register */
#define AT91_ADC_EOC(n) (1 << (n)) /* End of Conversion on Channel N */
#define AT91_ADC_CHR(n) (0x30 + ((n) * 4)) /* Channel Data Register N */
#define AT91_ADC_DATA (0x3ff)
#endif
/* G25 specific registers and flags */
#ifdef AT91SAMG25
#define AT91SAM_BASE_ADC 0xf804C000
#define AT91_ADC_CR 0x00 /* Control Register */
#define AT91_ADC_SWRST (1 << 0) /* Software Reset */
#define AT91_ADC_START (1 << 1) /* Start Conversion */
#define AT91_ADC_CHER 0x10 /* Channel Enable Register */
#define AT91_ADC_CH(n) (1 << (n)) /* Channel Number */
#define AT91_ADC_MR 0x04 /* Mode Register */
#define AT91_ADC_SHTIM (0xf << 24) /* Sample & Hold Time */
#define AT91_ADC_STARTUP (0x0f << 16) /* Startup Up Time */
#define AT91_ADC_PRESCAL (0xff << 8) /* Prescalar Rate Selection */
#define AT91_ADC_SLEEP (1 << 5) /* Sleep Mode */
#define AT91_ADC_SR 0x30 /* Interrupt Status Register */
#define AT91_ADC_EOC(n) (1 << (n)) /* End of Conversion on Channel N */
#define AT91_ADC_CHR(n) (0x50 + ((n) * 4)) /* Channel Data Register N */
#define AT91_ADC_DATA (0xfff)
#endif
#include <asm/io.h>
#define DRV_CLASS "at91_adc"
#define ADC_REQUEST 1 //un-used atm
#define ADC_READ 2
#define ADC_FREE 3
/* Device functions */
#define at91_adc_read(reg) ioread32(at91_adc_base + (reg))
#define at91_adc_write(reg, val) iowrite32((val), at91_adc_base + (reg))
#define AT91_DEFAULT_CONFIG AT91_ADC_SHTIM | \
AT91_ADC_STARTUP | \
AT91_ADC_PRESCAL | \
AT91_ADC_SLEEP
static void at91_adc_device_release(struct device *dev) {}
struct platform_device at91_adc_device = {
.name = "at91_adc",
.id = -1,
.dev.release = at91_adc_device_release,
};
struct clk *at91_adc_clk;
void __iomem *at91_adc_base;
void __iomem *at91_pioc_base;
static struct cdev *at91_adc_cdev = NULL;
static dev_t at91_adc_devno = 0;
static struct class *at91_adc_class = NULL;
static int at91_adc_read_chan(int chan){
int val, sr;
if(chan<0 || chan>3){
return -EINVAL;
}
/* disable pull-up resistor */
iowrite32(1 << chan, at91_pioc_base + 0x60);
at91_adc_write(AT91_ADC_CHER,AT91_ADC_CH(chan)); //Enable Channel
at91_adc_write(AT91_ADC_CR,AT91_ADC_START); //Start the ADC
for(sr=0; !(sr & AT91_ADC_EOC(chan)); sr=at91_adc_read(AT91_ADC_SR))
cpu_relax();
val=at91_adc_read(AT91_ADC_CHR(chan)) & AT91_ADC_DATA; //Read up to 10 bits
return val;
}
/* PC0 -> AD0
PC1 -> AD1
PC2 -> AD2
PC3 -> AD3 */
static int mux_chan (int chan, int operation) {
int pin_chan;
if(chan<0 || chan>3){
return -EINVAL;
}
switch (chan) {
case 0:
pin_chan=AT91_PIN_PC0;
break;
case 1:
pin_chan=AT91_PIN_PC1;
break;
case 2:
pin_chan=AT91_PIN_PC2;
break;
case 3:
pin_chan=AT91_PIN_PC3;
break;
default:
return -EINVAL;
}
if (operation == 1) //request_chan
at91_set_A_periph(pin_chan, 0); //Mux PIN to GPIO
else //free_chan
at91_set_B_periph(pin_chan, 0); //Mux PIN to GPIO
return 0;
}
static int at91_adc_config(int requested_config){
int actual_config;
at91_adc_write(AT91_ADC_CR,AT91_ADC_SWRST); //Reset the ADC
at91_adc_write(AT91_ADC_MR,requested_config); //Mode setup
actual_config = at91_adc_read(AT91_ADC_MR); //Read it back
return (requested_config==actual_config? 0: -EINVAL);
return(0);
}
/* Sysfs interface */
static ssize_t at91_adc_chanX_show(
struct device *dev, struct device_attribute *attr, char *buf ){
ssize_t status = 0;
int chan = -1;
int value;
if(strlen(attr->attr.name)==5 && strncmp(attr->attr.name,"chan",4)==0){
chan = attr->attr.name[4]-'0';
}
if(chan<0 || chan>3){
return -EIO;
}
value = at91_adc_read_chan(chan);
status = sprintf(buf, "%d\n", value);
return status;
}
static DEVICE_ATTR(chan0, 0444, at91_adc_chanX_show, NULL);
static DEVICE_ATTR(chan1, 0444, at91_adc_chanX_show, NULL);
static DEVICE_ATTR(chan2, 0444, at91_adc_chanX_show, NULL);
static DEVICE_ATTR(chan3, 0444, at91_adc_chanX_show, NULL);
static const struct attribute *at91_adc_dev_attrs[] = {
&dev_attr_chan0.attr,
&dev_attr_chan1.attr,
&dev_attr_chan2.attr,
&dev_attr_chan3.attr,
NULL,
};
static const struct attribute_group at91_adc_dev_attr_group = {
.attrs = (struct attribute **) at91_adc_dev_attrs,
};
/* IOCTL interface */
#ifdef HAVE_UNLOCKED_IOCTL
static long at91_adc_unlocked_ioctl(
struct file *file, unsigned int cmd, unsigned long arg){
#else
static int at91_adc_ioctl(
struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg){
#endif
long retval = 0;
switch (cmd) {
case ADC_REQUEST:
retval = mux_chan ((int)arg, 1);
break;
case ADC_READ:
retval = at91_adc_read_chan((int)arg);
break;
case ADC_FREE:
retval = mux_chan ((int)arg, 0);
break;
default:
retval = -EINVAL;
}
return retval;
}
struct file_operations at91_adc_fops = {
.owner = THIS_MODULE,
#ifdef HAVE_UNLOCKED_IOCTL
.unlocked_ioctl = at91_adc_unlocked_ioctl,
#else
.ioctl = at91_adc_ioctl,
#endif
};
static void at91_adc_cdev_teardown(void){
if(at91_adc_class){
device_destroy(at91_adc_class, at91_adc_devno);
class_destroy(at91_adc_class);
}
if(at91_adc_devno){
unregister_chrdev_region(at91_adc_devno,1);
if(at91_adc_cdev){ cdev_del(at91_adc_cdev); }
}
at91_adc_devno = 0;
at91_adc_cdev = NULL;
at91_adc_class = NULL;
return;
}
static int at91_adc_cdev_setup(void){
int status;
/* alloc a new device number (major: dynamic, minor: 0) */
status = alloc_chrdev_region(&at91_adc_devno,0,1,at91_adc_device.name);
if(status){
goto err;
}
/* create a new char device */
at91_adc_cdev = cdev_alloc();
if(at91_adc_cdev == NULL){ status=-ENOMEM; goto err; }
at91_adc_cdev->owner = THIS_MODULE;
at91_adc_cdev->ops = &at91_adc_fops;
status = cdev_add(at91_adc_cdev,at91_adc_devno,1);
if(status){
goto err;
}
/* register the class */
at91_adc_class = class_create(THIS_MODULE, DRV_CLASS);
if(IS_ERR(at91_adc_class)){ status=-EFAULT; goto err; }
device_create(at91_adc_class, NULL, at91_adc_devno, NULL, at91_adc_device.name);
printk(KERN_INFO "Major: %u; minor: %u\n", \
MAJOR(at91_adc_devno), MINOR(at91_adc_devno) \
);
return 0;
err:
at91_adc_cdev_teardown();
return status;
}
/* Module init/exit */
static int __init at91_adc_init(void){
int status;
at91_adc_clk = clk_get(NULL,"adc_clk");
clk_enable(at91_adc_clk);
at91_adc_base = ioremap(AT91SAM_BASE_ADC,SZ_256);
if(!at91_adc_base){
status=-ENODEV;
goto fail_no_iomem_adc;
}
at91_pioc_base = ioremap(AT91_BASE_SYS + AT91_PIOC,SZ_512);
if(!at91_pioc_base){
status=-ENODEV;
goto fail_no_iomem_pioc;
}
status = platform_device_register(&at91_adc_device);
if(status){
goto fail_no_dev;
}
status = at91_adc_config(AT91_DEFAULT_CONFIG);
if(status){
goto fail_no_config;
}
status = sysfs_create_group(
&(at91_adc_device.dev.kobj), &at91_adc_dev_attr_group
);
if(status){
goto fail_no_sysfs;
}
status = at91_adc_cdev_setup();
if(status){
goto fail_no_cdev;
}
printk(KERN_INFO "Registered device at91_adc.\n");
return 0;
fail_no_cdev:
fail_no_sysfs:
// nothing to undo
fail_no_config:
platform_device_unregister(&at91_adc_device);
fail_no_dev:
iounmap(at91_adc_base);
fail_no_iomem_pioc:
iounmap(at91_pioc_base);
fail_no_iomem_adc:
clk_disable(at91_adc_clk);
clk_put(at91_adc_clk);
return status;
}
static void __exit at91_adc_exit(void){
at91_adc_cdev_teardown();
platform_device_unregister(&at91_adc_device);
iounmap(at91_adc_base);
iounmap(at91_pioc_base);
clk_disable(at91_adc_clk);
clk_put(at91_adc_clk);
printk(KERN_INFO "Unregistered device at91_adc.\n");
}
module_init(at91_adc_init);
module_exit(at91_adc_exit);
MODULE_AUTHOR("Sergio Tanzilli");
MODULE_DESCRIPTION("ADC Driver for Acme Boards");
MODULE_LICENSE("GPL");