blob: 64bdeeb1c11a4c18f236a764e2e863cd4c1920c4 [file] [log] [blame]
Mattias Wallin5814fc32010-09-13 16:05:04 +02001/*
2 * Copyright (C) ST-Ericsson SA 2010
3 *
4 * Author: Mattias Wallin <mattias.wallin@stericsson.com> for ST-Ericsson.
5 * License Terms: GNU General Public License v2
6 */
7
8#include <linux/seq_file.h>
9#include <linux/uaccess.h>
10#include <linux/fs.h>
11#include <linux/debugfs.h>
12#include <linux/platform_device.h>
13
14#include <linux/mfd/abx500.h>
15#include <linux/mfd/ab8500.h>
16
17static u32 debug_bank;
18static u32 debug_address;
19
20/**
21 * struct ab8500_reg_range
22 * @first: the first address of the range
23 * @last: the last address of the range
24 * @perm: access permissions for the range
25 */
26struct ab8500_reg_range {
Mattias Wallind7b9f322010-11-26 13:06:39 +010027 u8 first;
28 u8 last;
29 u8 perm;
Mattias Wallin5814fc32010-09-13 16:05:04 +020030};
31
32/**
33 * struct ab8500_i2c_ranges
34 * @num_ranges: the number of ranges in the list
35 * @bankid: bank identifier
36 * @range: the list of register ranges
37 */
38struct ab8500_i2c_ranges {
Mattias Wallind7b9f322010-11-26 13:06:39 +010039 u8 num_ranges;
40 u8 bankid;
41 const struct ab8500_reg_range *range;
Mattias Wallin5814fc32010-09-13 16:05:04 +020042};
43
44#define AB8500_NAME_STRING "ab8500"
45#define AB8500_NUM_BANKS 22
46
47#define AB8500_REV_REG 0x80
48
49static struct ab8500_i2c_ranges debug_ranges[AB8500_NUM_BANKS] = {
Mattias Wallind7b9f322010-11-26 13:06:39 +010050 [0x0] = {
51 .num_ranges = 0,
52 .range = 0,
53 },
54 [AB8500_SYS_CTRL1_BLOCK] = {
55 .num_ranges = 3,
56 .range = (struct ab8500_reg_range[]) {
57 {
58 .first = 0x00,
59 .last = 0x02,
60 },
61 {
62 .first = 0x42,
63 .last = 0x42,
64 },
65 {
66 .first = 0x80,
67 .last = 0x81,
68 },
69 },
70 },
71 [AB8500_SYS_CTRL2_BLOCK] = {
72 .num_ranges = 4,
73 .range = (struct ab8500_reg_range[]) {
74 {
75 .first = 0x00,
76 .last = 0x0D,
77 },
78 {
79 .first = 0x0F,
80 .last = 0x17,
81 },
82 {
83 .first = 0x30,
84 .last = 0x30,
85 },
86 {
87 .first = 0x32,
88 .last = 0x33,
89 },
90 },
91 },
92 [AB8500_REGU_CTRL1] = {
93 .num_ranges = 3,
94 .range = (struct ab8500_reg_range[]) {
95 {
96 .first = 0x00,
97 .last = 0x00,
98 },
99 {
100 .first = 0x03,
101 .last = 0x10,
102 },
103 {
104 .first = 0x80,
105 .last = 0x84,
106 },
107 },
108 },
109 [AB8500_REGU_CTRL2] = {
110 .num_ranges = 5,
111 .range = (struct ab8500_reg_range[]) {
112 {
113 .first = 0x00,
114 .last = 0x15,
115 },
116 {
117 .first = 0x17,
118 .last = 0x19,
119 },
120 {
121 .first = 0x1B,
122 .last = 0x1D,
123 },
124 {
125 .first = 0x1F,
126 .last = 0x22,
127 },
128 {
129 .first = 0x40,
130 .last = 0x44,
131 },
132 /* 0x80-0x8B is SIM registers and should
133 * not be accessed from here */
134 },
135 },
136 [AB8500_USB] = {
137 .num_ranges = 2,
138 .range = (struct ab8500_reg_range[]) {
139 {
140 .first = 0x80,
141 .last = 0x83,
142 },
143 {
144 .first = 0x87,
145 .last = 0x8A,
146 },
147 },
148 },
149 [AB8500_TVOUT] = {
150 .num_ranges = 9,
151 .range = (struct ab8500_reg_range[]) {
152 {
153 .first = 0x00,
154 .last = 0x12,
155 },
156 {
157 .first = 0x15,
158 .last = 0x17,
159 },
160 {
161 .first = 0x19,
162 .last = 0x21,
163 },
164 {
165 .first = 0x27,
166 .last = 0x2C,
167 },
168 {
169 .first = 0x41,
170 .last = 0x41,
171 },
172 {
173 .first = 0x45,
174 .last = 0x5B,
175 },
176 {
177 .first = 0x5D,
178 .last = 0x5D,
179 },
180 {
181 .first = 0x69,
182 .last = 0x69,
183 },
184 {
185 .first = 0x80,
186 .last = 0x81,
187 },
188 },
189 },
190 [AB8500_DBI] = {
191 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000192 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100193 },
194 [AB8500_ECI_AV_ACC] = {
195 .num_ranges = 1,
196 .range = (struct ab8500_reg_range[]) {
197 {
198 .first = 0x80,
199 .last = 0x82,
200 },
201 },
202 },
203 [0x9] = {
204 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000205 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100206 },
207 [AB8500_GPADC] = {
208 .num_ranges = 1,
209 .range = (struct ab8500_reg_range[]) {
210 {
211 .first = 0x00,
212 .last = 0x08,
213 },
214 },
215 },
216 [AB8500_CHARGER] = {
217 .num_ranges = 8,
218 .range = (struct ab8500_reg_range[]) {
219 {
220 .first = 0x00,
221 .last = 0x03,
222 },
223 {
224 .first = 0x05,
225 .last = 0x05,
226 },
227 {
228 .first = 0x40,
229 .last = 0x40,
230 },
231 {
232 .first = 0x42,
233 .last = 0x42,
234 },
235 {
236 .first = 0x44,
237 .last = 0x44,
238 },
239 {
240 .first = 0x50,
241 .last = 0x55,
242 },
243 {
244 .first = 0x80,
245 .last = 0x82,
246 },
247 {
248 .first = 0xC0,
249 .last = 0xC2,
250 },
251 },
252 },
253 [AB8500_GAS_GAUGE] = {
254 .num_ranges = 3,
255 .range = (struct ab8500_reg_range[]) {
256 {
257 .first = 0x00,
258 .last = 0x00,
259 },
260 {
261 .first = 0x07,
262 .last = 0x0A,
263 },
264 {
265 .first = 0x10,
266 .last = 0x14,
267 },
268 },
269 },
270 [AB8500_AUDIO] = {
271 .num_ranges = 1,
272 .range = (struct ab8500_reg_range[]) {
273 {
274 .first = 0x00,
275 .last = 0x6F,
276 },
277 },
278 },
279 [AB8500_INTERRUPT] = {
280 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000281 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100282 },
283 [AB8500_RTC] = {
284 .num_ranges = 1,
285 .range = (struct ab8500_reg_range[]) {
286 {
287 .first = 0x00,
288 .last = 0x0F,
289 },
290 },
291 },
292 [AB8500_MISC] = {
293 .num_ranges = 8,
294 .range = (struct ab8500_reg_range[]) {
295 {
296 .first = 0x00,
297 .last = 0x05,
298 },
299 {
300 .first = 0x10,
301 .last = 0x15,
302 },
303 {
304 .first = 0x20,
305 .last = 0x25,
306 },
307 {
308 .first = 0x30,
309 .last = 0x35,
310 },
311 {
312 .first = 0x40,
313 .last = 0x45,
314 },
315 {
316 .first = 0x50,
317 .last = 0x50,
318 },
319 {
320 .first = 0x60,
321 .last = 0x67,
322 },
323 {
324 .first = 0x80,
325 .last = 0x80,
326 },
327 },
328 },
329 [0x11] = {
330 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000331 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100332 },
333 [0x12] = {
334 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000335 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100336 },
337 [0x13] = {
338 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000339 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100340 },
341 [0x14] = {
342 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000343 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100344 },
345 [AB8500_OTP_EMUL] = {
346 .num_ranges = 1,
347 .range = (struct ab8500_reg_range[]) {
348 {
349 .first = 0x01,
350 .last = 0x0F,
351 },
352 },
353 },
Mattias Wallin5814fc32010-09-13 16:05:04 +0200354};
355
356static int ab8500_registers_print(struct seq_file *s, void *p)
357{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100358 struct device *dev = s->private;
359 unsigned int i;
360 u32 bank = debug_bank;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200361
Mattias Wallind7b9f322010-11-26 13:06:39 +0100362 seq_printf(s, AB8500_NAME_STRING " register values:\n");
Mattias Wallin5814fc32010-09-13 16:05:04 +0200363
Mattias Wallind7b9f322010-11-26 13:06:39 +0100364 seq_printf(s, " bank %u:\n", bank);
365 for (i = 0; i < debug_ranges[bank].num_ranges; i++) {
366 u32 reg;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200367
Mattias Wallind7b9f322010-11-26 13:06:39 +0100368 for (reg = debug_ranges[bank].range[i].first;
369 reg <= debug_ranges[bank].range[i].last;
370 reg++) {
371 u8 value;
372 int err;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200373
Mattias Wallind7b9f322010-11-26 13:06:39 +0100374 err = abx500_get_register_interruptible(dev,
375 (u8)bank, (u8)reg, &value);
376 if (err < 0) {
377 dev_err(dev, "ab->read fail %d\n", err);
378 return err;
379 }
Mattias Wallin5814fc32010-09-13 16:05:04 +0200380
Mattias Wallind7b9f322010-11-26 13:06:39 +0100381 err = seq_printf(s, " [%u/0x%02X]: 0x%02X\n", bank,
382 reg, value);
383 if (err < 0) {
384 dev_err(dev, "seq_printf overflow\n");
385 /* Error is not returned here since
386 * the output is wanted in any case */
387 return 0;
388 }
389 }
390 }
391 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200392}
393
394static int ab8500_registers_open(struct inode *inode, struct file *file)
395{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100396 return single_open(file, ab8500_registers_print, inode->i_private);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200397}
398
399static const struct file_operations ab8500_registers_fops = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100400 .open = ab8500_registers_open,
401 .read = seq_read,
402 .llseek = seq_lseek,
403 .release = single_release,
404 .owner = THIS_MODULE,
Mattias Wallin5814fc32010-09-13 16:05:04 +0200405};
406
407static int ab8500_bank_print(struct seq_file *s, void *p)
408{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100409 return seq_printf(s, "%d\n", debug_bank);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200410}
411
412static int ab8500_bank_open(struct inode *inode, struct file *file)
413{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100414 return single_open(file, ab8500_bank_print, inode->i_private);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200415}
416
417static ssize_t ab8500_bank_write(struct file *file,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100418 const char __user *user_buf,
419 size_t count, loff_t *ppos)
Mattias Wallin5814fc32010-09-13 16:05:04 +0200420{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100421 struct device *dev = ((struct seq_file *)(file->private_data))->private;
Mattias Wallind7b9f322010-11-26 13:06:39 +0100422 unsigned long user_bank;
423 int err;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200424
Mattias Wallind7b9f322010-11-26 13:06:39 +0100425 /* Get userspace string and assure termination */
Peter Huewe8504d632011-06-06 22:43:32 +0200426 err = kstrtoul_from_user(user_buf, count, 0, &user_bank);
Mattias Wallind7b9f322010-11-26 13:06:39 +0100427 if (err)
Peter Huewe8504d632011-06-06 22:43:32 +0200428 return err;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200429
Mattias Wallind7b9f322010-11-26 13:06:39 +0100430 if (user_bank >= AB8500_NUM_BANKS) {
431 dev_err(dev, "debugfs error input > number of banks\n");
432 return -EINVAL;
433 }
Mattias Wallin5814fc32010-09-13 16:05:04 +0200434
Mattias Wallind7b9f322010-11-26 13:06:39 +0100435 debug_bank = user_bank;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200436
Peter Huewe8504d632011-06-06 22:43:32 +0200437 return count;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200438}
439
440static int ab8500_address_print(struct seq_file *s, void *p)
441{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100442 return seq_printf(s, "0x%02X\n", debug_address);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200443}
444
445static int ab8500_address_open(struct inode *inode, struct file *file)
446{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100447 return single_open(file, ab8500_address_print, inode->i_private);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200448}
449
450static ssize_t ab8500_address_write(struct file *file,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100451 const char __user *user_buf,
452 size_t count, loff_t *ppos)
Mattias Wallin5814fc32010-09-13 16:05:04 +0200453{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100454 struct device *dev = ((struct seq_file *)(file->private_data))->private;
Mattias Wallind7b9f322010-11-26 13:06:39 +0100455 unsigned long user_address;
456 int err;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200457
Mattias Wallind7b9f322010-11-26 13:06:39 +0100458 /* Get userspace string and assure termination */
Peter Huewe8504d632011-06-06 22:43:32 +0200459 err = kstrtoul_from_user(user_buf, count, 0, &user_address);
Mattias Wallind7b9f322010-11-26 13:06:39 +0100460 if (err)
Peter Huewe8504d632011-06-06 22:43:32 +0200461 return err;
462
Mattias Wallind7b9f322010-11-26 13:06:39 +0100463 if (user_address > 0xff) {
464 dev_err(dev, "debugfs error input > 0xff\n");
465 return -EINVAL;
466 }
467 debug_address = user_address;
Peter Huewe8504d632011-06-06 22:43:32 +0200468 return count;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200469}
470
471static int ab8500_val_print(struct seq_file *s, void *p)
472{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100473 struct device *dev = s->private;
474 int ret;
475 u8 regvalue;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200476
Mattias Wallind7b9f322010-11-26 13:06:39 +0100477 ret = abx500_get_register_interruptible(dev,
478 (u8)debug_bank, (u8)debug_address, &regvalue);
479 if (ret < 0) {
480 dev_err(dev, "abx500_get_reg fail %d, %d\n",
481 ret, __LINE__);
482 return -EINVAL;
483 }
484 seq_printf(s, "0x%02X\n", regvalue);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200485
Mattias Wallind7b9f322010-11-26 13:06:39 +0100486 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200487}
488
489static int ab8500_val_open(struct inode *inode, struct file *file)
490{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100491 return single_open(file, ab8500_val_print, inode->i_private);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200492}
493
494static ssize_t ab8500_val_write(struct file *file,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100495 const char __user *user_buf,
496 size_t count, loff_t *ppos)
Mattias Wallin5814fc32010-09-13 16:05:04 +0200497{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100498 struct device *dev = ((struct seq_file *)(file->private_data))->private;
Mattias Wallind7b9f322010-11-26 13:06:39 +0100499 unsigned long user_val;
500 int err;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200501
Mattias Wallind7b9f322010-11-26 13:06:39 +0100502 /* Get userspace string and assure termination */
Peter Huewe8504d632011-06-06 22:43:32 +0200503 err = kstrtoul_from_user(user_buf, count, 0, &user_val);
Mattias Wallind7b9f322010-11-26 13:06:39 +0100504 if (err)
Peter Huewe8504d632011-06-06 22:43:32 +0200505 return err;
506
Mattias Wallind7b9f322010-11-26 13:06:39 +0100507 if (user_val > 0xff) {
508 dev_err(dev, "debugfs error input > 0xff\n");
509 return -EINVAL;
510 }
511 err = abx500_set_register_interruptible(dev,
512 (u8)debug_bank, debug_address, (u8)user_val);
513 if (err < 0) {
514 printk(KERN_ERR "abx500_set_reg failed %d, %d", err, __LINE__);
515 return -EINVAL;
516 }
Mattias Wallin5814fc32010-09-13 16:05:04 +0200517
Peter Huewe8504d632011-06-06 22:43:32 +0200518 return count;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200519}
520
521static const struct file_operations ab8500_bank_fops = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100522 .open = ab8500_bank_open,
523 .write = ab8500_bank_write,
524 .read = seq_read,
525 .llseek = seq_lseek,
526 .release = single_release,
527 .owner = THIS_MODULE,
Mattias Wallin5814fc32010-09-13 16:05:04 +0200528};
529
530static const struct file_operations ab8500_address_fops = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100531 .open = ab8500_address_open,
532 .write = ab8500_address_write,
533 .read = seq_read,
534 .llseek = seq_lseek,
535 .release = single_release,
536 .owner = THIS_MODULE,
Mattias Wallin5814fc32010-09-13 16:05:04 +0200537};
538
539static const struct file_operations ab8500_val_fops = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100540 .open = ab8500_val_open,
541 .write = ab8500_val_write,
542 .read = seq_read,
543 .llseek = seq_lseek,
544 .release = single_release,
545 .owner = THIS_MODULE,
Mattias Wallin5814fc32010-09-13 16:05:04 +0200546};
547
548static struct dentry *ab8500_dir;
549static struct dentry *ab8500_reg_file;
550static struct dentry *ab8500_bank_file;
551static struct dentry *ab8500_address_file;
552static struct dentry *ab8500_val_file;
553
554static int __devinit ab8500_debug_probe(struct platform_device *plf)
555{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100556 debug_bank = AB8500_MISC;
557 debug_address = AB8500_REV_REG & 0x00FF;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200558
Mattias Wallind7b9f322010-11-26 13:06:39 +0100559 ab8500_dir = debugfs_create_dir(AB8500_NAME_STRING, NULL);
560 if (!ab8500_dir)
561 goto exit_no_debugfs;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200562
Mattias Wallind7b9f322010-11-26 13:06:39 +0100563 ab8500_reg_file = debugfs_create_file("all-bank-registers",
564 S_IRUGO, ab8500_dir, &plf->dev, &ab8500_registers_fops);
565 if (!ab8500_reg_file)
566 goto exit_destroy_dir;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200567
Mattias Wallind7b9f322010-11-26 13:06:39 +0100568 ab8500_bank_file = debugfs_create_file("register-bank",
Vasiliy Kulikov44bdcb52011-02-04 15:23:43 +0300569 (S_IRUGO | S_IWUSR), ab8500_dir, &plf->dev, &ab8500_bank_fops);
Mattias Wallind7b9f322010-11-26 13:06:39 +0100570 if (!ab8500_bank_file)
571 goto exit_destroy_reg;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200572
Mattias Wallind7b9f322010-11-26 13:06:39 +0100573 ab8500_address_file = debugfs_create_file("register-address",
Vasiliy Kulikov44bdcb52011-02-04 15:23:43 +0300574 (S_IRUGO | S_IWUSR), ab8500_dir, &plf->dev,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100575 &ab8500_address_fops);
576 if (!ab8500_address_file)
577 goto exit_destroy_bank;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200578
Mattias Wallind7b9f322010-11-26 13:06:39 +0100579 ab8500_val_file = debugfs_create_file("register-value",
Vasiliy Kulikov44bdcb52011-02-04 15:23:43 +0300580 (S_IRUGO | S_IWUSR), ab8500_dir, &plf->dev, &ab8500_val_fops);
Mattias Wallind7b9f322010-11-26 13:06:39 +0100581 if (!ab8500_val_file)
582 goto exit_destroy_address;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200583
Mattias Wallind7b9f322010-11-26 13:06:39 +0100584 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200585
586exit_destroy_address:
Mattias Wallind7b9f322010-11-26 13:06:39 +0100587 debugfs_remove(ab8500_address_file);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200588exit_destroy_bank:
Mattias Wallind7b9f322010-11-26 13:06:39 +0100589 debugfs_remove(ab8500_bank_file);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200590exit_destroy_reg:
Mattias Wallind7b9f322010-11-26 13:06:39 +0100591 debugfs_remove(ab8500_reg_file);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200592exit_destroy_dir:
Mattias Wallind7b9f322010-11-26 13:06:39 +0100593 debugfs_remove(ab8500_dir);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200594exit_no_debugfs:
Mattias Wallind7b9f322010-11-26 13:06:39 +0100595 dev_err(&plf->dev, "failed to create debugfs entries.\n");
596 return -ENOMEM;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200597}
598
599static int __devexit ab8500_debug_remove(struct platform_device *plf)
600{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100601 debugfs_remove(ab8500_val_file);
602 debugfs_remove(ab8500_address_file);
603 debugfs_remove(ab8500_bank_file);
604 debugfs_remove(ab8500_reg_file);
605 debugfs_remove(ab8500_dir);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200606
Mattias Wallind7b9f322010-11-26 13:06:39 +0100607 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200608}
609
610static struct platform_driver ab8500_debug_driver = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100611 .driver = {
612 .name = "ab8500-debug",
613 .owner = THIS_MODULE,
614 },
615 .probe = ab8500_debug_probe,
616 .remove = __devexit_p(ab8500_debug_remove)
Mattias Wallin5814fc32010-09-13 16:05:04 +0200617};
618
619static int __init ab8500_debug_init(void)
620{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100621 return platform_driver_register(&ab8500_debug_driver);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200622}
623
624static void __exit ab8500_debug_exit(void)
625{
Mattias Wallind7b9f322010-11-26 13:06:39 +0100626 platform_driver_unregister(&ab8500_debug_driver);
Mattias Wallin5814fc32010-09-13 16:05:04 +0200627}
628subsys_initcall(ab8500_debug_init);
629module_exit(ab8500_debug_exit);
630
631MODULE_AUTHOR("Mattias WALLIN <mattias.wallin@stericsson.com");
632MODULE_DESCRIPTION("AB8500 DEBUG");
633MODULE_LICENSE("GPL v2");