blob: e43dea89b0947a8b91430a818d19de43d6fe1240 [file] [log] [blame]
Thomas Gleixner03761482019-05-28 09:57:24 -07001// SPDX-License-Identifier: GPL-2.0-only
Mattias Wallin5814fc32010-09-13 16:05:04 +02002/*
3 * Copyright (C) ST-Ericsson SA 2010
4 *
5 * Author: Mattias Wallin <mattias.wallin@stericsson.com> for ST-Ericsson.
Mattias Wallin5814fc32010-09-13 16:05:04 +02006 */
carriere etienne0fbce762011-04-08 16:26:36 +02007/*
8 * AB8500 register access
9 * ======================
10 *
11 * read:
12 * # echo BANK > <debugfs>/ab8500/register-bank
13 * # echo ADDR > <debugfs>/ab8500/register-address
14 * # cat <debugfs>/ab8500/register-value
15 *
16 * write:
17 * # echo BANK > <debugfs>/ab8500/register-bank
18 * # echo ADDR > <debugfs>/ab8500/register-address
19 * # echo VALUE > <debugfs>/ab8500/register-value
20 *
21 * read all registers from a bank:
22 * # echo BANK > <debugfs>/ab8500/register-bank
23 * # cat <debugfs>/ab8500/all-bank-register
24 *
25 * BANK target AB8500 register bank
26 * ADDR target AB8500 register address
27 * VALUE decimal or 0x-prefixed hexadecimal
28 *
29 *
30 * User Space notification on AB8500 IRQ
31 * =====================================
32 *
33 * Allows user space entity to be notified when target AB8500 IRQ occurs.
34 * When subscribed, a sysfs entry is created in ab8500.i2c platform device.
35 * One can pool this file to get target IRQ occurence information.
36 *
37 * subscribe to an AB8500 IRQ:
38 * # echo IRQ > <debugfs>/ab8500/irq-subscribe
39 *
40 * unsubscribe from an AB8500 IRQ:
41 * # echo IRQ > <debugfs>/ab8500/irq-unsubscribe
42 *
43 *
44 * AB8500 register formated read/write access
45 * ==========================================
46 *
47 * Read: read data, data>>SHIFT, data&=MASK, output data
48 * [0xABCDEF98] shift=12 mask=0xFFF => 0x00000CDE
49 * Write: read data, data &= ~(MASK<<SHIFT), data |= (VALUE<<SHIFT), write data
50 * [0xABCDEF98] shift=12 mask=0xFFF value=0x123 => [0xAB123F98]
51 *
52 * Usage:
53 * # echo "CMD [OPTIONS] BANK ADRESS [VALUE]" > $debugfs/ab8500/hwreg
54 *
55 * CMD read read access
56 * write write access
57 *
58 * BANK target reg bank
59 * ADDRESS target reg address
60 * VALUE (write) value to be updated
61 *
62 * OPTIONS
63 * -d|-dec (read) output in decimal
64 * -h|-hexa (read) output in 0x-hexa (default)
65 * -l|-w|-b 32bit (default), 16bit or 8bit reg access
66 * -m|-mask MASK 0x-hexa mask (default 0xFFFFFFFF)
67 * -s|-shift SHIFT bit shift value (read:left, write:right)
68 * -o|-offset OFFSET address offset to add to ADDRESS value
69 *
70 * Warning: bit shift operation is applied to bit-mask.
71 * Warning: bit shift direction depends on read or right command.
72 */
Mattias Wallin5814fc32010-09-13 16:05:04 +020073
74#include <linux/seq_file.h>
75#include <linux/uaccess.h>
76#include <linux/fs.h>
Paul Gortmaker4b3f2b62016-10-29 21:24:37 -040077#include <linux/init.h>
Mattias Wallin5814fc32010-09-13 16:05:04 +020078#include <linux/debugfs.h>
79#include <linux/platform_device.h>
Lee Jones4b8ac082013-01-14 16:10:36 +000080#include <linux/interrupt.h>
81#include <linux/kobject.h>
82#include <linux/slab.h>
Jonas Aaberg2cf64e22012-05-31 07:57:07 +020083#include <linux/irq.h>
Mattias Wallin5814fc32010-09-13 16:05:04 +020084
85#include <linux/mfd/abx500.h>
Linus Walleij0cd5b6d02013-02-06 23:23:01 +010086#include <linux/mfd/abx500/ab8500.h>
Mattias Wallin5814fc32010-09-13 16:05:04 +020087
carriere etienne0fbce762011-04-08 16:26:36 +020088#ifdef CONFIG_DEBUG_FS
89#include <linux/string.h>
90#include <linux/ctype.h>
91#endif
92
Mattias Wallin5814fc32010-09-13 16:05:04 +020093static u32 debug_bank;
94static u32 debug_address;
95
Linus Walleij69991812013-04-12 17:02:09 +020096static int irq_ab8500;
Lee Jones4b8ac082013-01-14 16:10:36 +000097static int irq_first;
98static int irq_last;
Linus Walleijddba25f2012-02-03 11:19:05 +010099static u32 *irq_count;
100static int num_irqs;
Mattias Wallin0b337e72010-11-19 17:55:11 +0100101
Linus Walleijddba25f2012-02-03 11:19:05 +0100102static struct device_attribute **dev_attr;
103static char **event_name;
Lee Jones4b8ac082013-01-14 16:10:36 +0000104
Mattias Wallin5814fc32010-09-13 16:05:04 +0200105/**
106 * struct ab8500_reg_range
107 * @first: the first address of the range
108 * @last: the last address of the range
109 * @perm: access permissions for the range
110 */
111struct ab8500_reg_range {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100112 u8 first;
113 u8 last;
114 u8 perm;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200115};
116
117/**
Lee Jones822672a2012-06-20 13:56:38 +0100118 * struct ab8500_prcmu_ranges
Mattias Wallin5814fc32010-09-13 16:05:04 +0200119 * @num_ranges: the number of ranges in the list
120 * @bankid: bank identifier
121 * @range: the list of register ranges
122 */
Lee Jones822672a2012-06-20 13:56:38 +0100123struct ab8500_prcmu_ranges {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100124 u8 num_ranges;
125 u8 bankid;
126 const struct ab8500_reg_range *range;
Mattias Wallin5814fc32010-09-13 16:05:04 +0200127};
128
carriere etienne0fbce762011-04-08 16:26:36 +0200129/* hwreg- "mask" and "shift" entries ressources */
130struct hwreg_cfg {
131 u32 bank; /* target bank */
Lee Jones43621752014-07-14 18:29:16 +0100132 unsigned long addr; /* target address */
carriere etienne0fbce762011-04-08 16:26:36 +0200133 uint fmt; /* format */
Lee Jones43621752014-07-14 18:29:16 +0100134 unsigned long mask; /* read/write mask, applied before any bit shift */
135 long shift; /* bit shift (read:right shift, write:left shift */
carriere etienne0fbce762011-04-08 16:26:36 +0200136};
137/* fmt bit #0: 0=hexa, 1=dec */
138#define REG_FMT_DEC(c) ((c)->fmt & 0x1)
139#define REG_FMT_HEX(c) (!REG_FMT_DEC(c))
140
141static struct hwreg_cfg hwreg_cfg = {
142 .addr = 0, /* default: invalid phys addr */
143 .fmt = 0, /* default: 32bit access, hex output */
144 .mask = 0xFFFFFFFF, /* default: no mask */
145 .shift = 0, /* default: no bit shift */
146};
147
Mattias Wallin5814fc32010-09-13 16:05:04 +0200148#define AB8500_NAME_STRING "ab8500"
Lee Jonesc45eab22016-09-14 11:14:30 +0100149#define AB8500_NUM_BANKS AB8500_DEBUG_FIELD_LAST
Mattias Wallin5814fc32010-09-13 16:05:04 +0200150
151#define AB8500_REV_REG 0x80
152
Lee Jones9581ae32012-07-06 16:11:50 +0200153static struct ab8500_prcmu_ranges *debug_ranges;
154
Sachin Kamat8455eae2013-08-23 17:37:42 +0530155static struct ab8500_prcmu_ranges ab8500_debug_ranges[AB8500_NUM_BANKS] = {
Lee Jonesc45eab22016-09-14 11:14:30 +0100156 [AB8500_M_FSM_RANK] = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100157 .num_ranges = 0,
Lee Jonesfad55a82013-01-14 17:17:34 +0000158 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100159 },
160 [AB8500_SYS_CTRL1_BLOCK] = {
161 .num_ranges = 3,
162 .range = (struct ab8500_reg_range[]) {
163 {
164 .first = 0x00,
165 .last = 0x02,
166 },
167 {
168 .first = 0x42,
169 .last = 0x42,
170 },
171 {
172 .first = 0x80,
173 .last = 0x81,
174 },
175 },
176 },
177 [AB8500_SYS_CTRL2_BLOCK] = {
178 .num_ranges = 4,
179 .range = (struct ab8500_reg_range[]) {
180 {
181 .first = 0x00,
182 .last = 0x0D,
183 },
184 {
185 .first = 0x0F,
186 .last = 0x17,
187 },
188 {
189 .first = 0x30,
190 .last = 0x30,
191 },
192 {
193 .first = 0x32,
194 .last = 0x33,
195 },
196 },
197 },
198 [AB8500_REGU_CTRL1] = {
199 .num_ranges = 3,
200 .range = (struct ab8500_reg_range[]) {
201 {
202 .first = 0x00,
203 .last = 0x00,
204 },
205 {
206 .first = 0x03,
207 .last = 0x10,
208 },
209 {
210 .first = 0x80,
211 .last = 0x84,
212 },
213 },
214 },
215 [AB8500_REGU_CTRL2] = {
216 .num_ranges = 5,
217 .range = (struct ab8500_reg_range[]) {
218 {
219 .first = 0x00,
220 .last = 0x15,
221 },
222 {
223 .first = 0x17,
224 .last = 0x19,
225 },
226 {
227 .first = 0x1B,
228 .last = 0x1D,
229 },
230 {
231 .first = 0x1F,
232 .last = 0x22,
233 },
234 {
235 .first = 0x40,
236 .last = 0x44,
237 },
Lee Jonesde6a7692015-10-28 09:27:32 +0000238 /*
239 * 0x80-0x8B are SIM registers and should
240 * not be accessed from here
241 */
Mattias Wallind7b9f322010-11-26 13:06:39 +0100242 },
243 },
244 [AB8500_USB] = {
245 .num_ranges = 2,
246 .range = (struct ab8500_reg_range[]) {
247 {
248 .first = 0x80,
249 .last = 0x83,
250 },
251 {
252 .first = 0x87,
253 .last = 0x8A,
254 },
255 },
256 },
257 [AB8500_TVOUT] = {
258 .num_ranges = 9,
259 .range = (struct ab8500_reg_range[]) {
260 {
261 .first = 0x00,
262 .last = 0x12,
263 },
264 {
265 .first = 0x15,
266 .last = 0x17,
267 },
268 {
269 .first = 0x19,
270 .last = 0x21,
271 },
272 {
273 .first = 0x27,
274 .last = 0x2C,
275 },
276 {
277 .first = 0x41,
278 .last = 0x41,
279 },
280 {
281 .first = 0x45,
282 .last = 0x5B,
283 },
284 {
285 .first = 0x5D,
286 .last = 0x5D,
287 },
288 {
289 .first = 0x69,
290 .last = 0x69,
291 },
292 {
293 .first = 0x80,
294 .last = 0x81,
295 },
296 },
297 },
298 [AB8500_DBI] = {
299 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000300 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100301 },
302 [AB8500_ECI_AV_ACC] = {
303 .num_ranges = 1,
304 .range = (struct ab8500_reg_range[]) {
305 {
306 .first = 0x80,
307 .last = 0x82,
308 },
309 },
310 },
Lee Jonesc45eab22016-09-14 11:14:30 +0100311 [AB8500_RESERVED] = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100312 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000313 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100314 },
315 [AB8500_GPADC] = {
316 .num_ranges = 1,
317 .range = (struct ab8500_reg_range[]) {
318 {
319 .first = 0x00,
320 .last = 0x08,
321 },
322 },
323 },
324 [AB8500_CHARGER] = {
Philippe Langlais40c064e2011-10-17 09:48:55 +0200325 .num_ranges = 9,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100326 .range = (struct ab8500_reg_range[]) {
327 {
328 .first = 0x00,
329 .last = 0x03,
330 },
331 {
332 .first = 0x05,
333 .last = 0x05,
334 },
335 {
336 .first = 0x40,
337 .last = 0x40,
338 },
339 {
340 .first = 0x42,
341 .last = 0x42,
342 },
343 {
344 .first = 0x44,
345 .last = 0x44,
346 },
347 {
348 .first = 0x50,
349 .last = 0x55,
350 },
351 {
352 .first = 0x80,
353 .last = 0x82,
354 },
355 {
356 .first = 0xC0,
357 .last = 0xC2,
358 },
Philippe Langlais40c064e2011-10-17 09:48:55 +0200359 {
360 .first = 0xf5,
Lee Jones9581ae32012-07-06 16:11:50 +0200361 .last = 0xf6,
Philippe Langlais40c064e2011-10-17 09:48:55 +0200362 },
Mattias Wallind7b9f322010-11-26 13:06:39 +0100363 },
364 },
365 [AB8500_GAS_GAUGE] = {
366 .num_ranges = 3,
367 .range = (struct ab8500_reg_range[]) {
368 {
369 .first = 0x00,
370 .last = 0x00,
371 },
372 {
373 .first = 0x07,
374 .last = 0x0A,
375 },
376 {
377 .first = 0x10,
378 .last = 0x14,
379 },
380 },
381 },
382 [AB8500_AUDIO] = {
383 .num_ranges = 1,
384 .range = (struct ab8500_reg_range[]) {
385 {
386 .first = 0x00,
387 .last = 0x6F,
388 },
389 },
390 },
391 [AB8500_INTERRUPT] = {
392 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000393 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100394 },
395 [AB8500_RTC] = {
396 .num_ranges = 1,
397 .range = (struct ab8500_reg_range[]) {
398 {
399 .first = 0x00,
400 .last = 0x0F,
401 },
402 },
403 },
404 [AB8500_MISC] = {
405 .num_ranges = 8,
406 .range = (struct ab8500_reg_range[]) {
407 {
408 .first = 0x00,
409 .last = 0x05,
410 },
411 {
412 .first = 0x10,
413 .last = 0x15,
414 },
415 {
416 .first = 0x20,
417 .last = 0x25,
418 },
419 {
420 .first = 0x30,
421 .last = 0x35,
422 },
423 {
424 .first = 0x40,
425 .last = 0x45,
426 },
427 {
428 .first = 0x50,
429 .last = 0x50,
430 },
431 {
432 .first = 0x60,
433 .last = 0x67,
434 },
435 {
436 .first = 0x80,
437 .last = 0x80,
438 },
439 },
440 },
Lee Jonesc45eab22016-09-14 11:14:30 +0100441 [AB8500_DEVELOPMENT] = {
442 .num_ranges = 1,
443 .range = (struct ab8500_reg_range[]) {
444 {
445 .first = 0x00,
446 .last = 0x00,
447 },
448 },
449 },
450 [AB8500_DEBUG] = {
451 .num_ranges = 1,
452 .range = (struct ab8500_reg_range[]) {
453 {
454 .first = 0x05,
455 .last = 0x07,
456 },
457 },
458 },
459 [AB8500_PROD_TEST] = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100460 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000461 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100462 },
Lee Jonesc45eab22016-09-14 11:14:30 +0100463 [AB8500_STE_TEST] = {
Mattias Wallind7b9f322010-11-26 13:06:39 +0100464 .num_ranges = 0,
Mark Brown87fff232010-12-13 14:06:47 +0000465 .range = NULL,
Mattias Wallind7b9f322010-11-26 13:06:39 +0100466 },
467 [AB8500_OTP_EMUL] = {
468 .num_ranges = 1,
469 .range = (struct ab8500_reg_range[]) {
470 {
471 .first = 0x01,
472 .last = 0x0F,
473 },
474 },
475 },
Mattias Wallin5814fc32010-09-13 16:05:04 +0200476};
477
Sachin Kamat8455eae2013-08-23 17:37:42 +0530478static struct ab8500_prcmu_ranges ab8505_debug_ranges[AB8500_NUM_BANKS] = {
Lee Jones9581ae32012-07-06 16:11:50 +0200479 [0x0] = {
480 .num_ranges = 0,
481 .range = NULL,
482 },
483 [AB8500_SYS_CTRL1_BLOCK] = {
484 .num_ranges = 5,
485 .range = (struct ab8500_reg_range[]) {
486 {
487 .first = 0x00,
488 .last = 0x04,
489 },
490 {
491 .first = 0x42,
492 .last = 0x42,
493 },
494 {
495 .first = 0x52,
496 .last = 0x52,
497 },
498 {
499 .first = 0x54,
500 .last = 0x57,
501 },
502 {
503 .first = 0x80,
504 .last = 0x83,
505 },
506 },
507 },
508 [AB8500_SYS_CTRL2_BLOCK] = {
509 .num_ranges = 5,
510 .range = (struct ab8500_reg_range[]) {
511 {
512 .first = 0x00,
513 .last = 0x0D,
514 },
515 {
516 .first = 0x0F,
517 .last = 0x17,
518 },
519 {
520 .first = 0x20,
521 .last = 0x20,
522 },
523 {
524 .first = 0x30,
525 .last = 0x30,
526 },
527 {
528 .first = 0x32,
529 .last = 0x3A,
530 },
531 },
532 },
533 [AB8500_REGU_CTRL1] = {
534 .num_ranges = 3,
535 .range = (struct ab8500_reg_range[]) {
536 {
537 .first = 0x00,
538 .last = 0x00,
539 },
540 {
541 .first = 0x03,
542 .last = 0x11,
543 },
544 {
545 .first = 0x80,
546 .last = 0x86,
547 },
548 },
549 },
550 [AB8500_REGU_CTRL2] = {
551 .num_ranges = 6,
552 .range = (struct ab8500_reg_range[]) {
553 {
554 .first = 0x00,
555 .last = 0x06,
556 },
557 {
558 .first = 0x08,
559 .last = 0x15,
560 },
561 {
562 .first = 0x17,
563 .last = 0x19,
564 },
565 {
566 .first = 0x1B,
567 .last = 0x1D,
568 },
569 {
570 .first = 0x1F,
571 .last = 0x30,
572 },
573 {
574 .first = 0x40,
575 .last = 0x48,
576 },
Lee Jonesde6a7692015-10-28 09:27:32 +0000577 /*
578 * 0x80-0x8B are SIM registers and should
579 * not be accessed from here
580 */
Lee Jones9581ae32012-07-06 16:11:50 +0200581 },
582 },
583 [AB8500_USB] = {
584 .num_ranges = 3,
585 .range = (struct ab8500_reg_range[]) {
586 {
587 .first = 0x80,
588 .last = 0x83,
589 },
590 {
591 .first = 0x87,
592 .last = 0x8A,
593 },
594 {
595 .first = 0x91,
596 .last = 0x94,
597 },
598 },
599 },
600 [AB8500_TVOUT] = {
601 .num_ranges = 0,
602 .range = NULL,
603 },
604 [AB8500_DBI] = {
605 .num_ranges = 0,
606 .range = NULL,
607 },
608 [AB8500_ECI_AV_ACC] = {
609 .num_ranges = 1,
610 .range = (struct ab8500_reg_range[]) {
611 {
612 .first = 0x80,
613 .last = 0x82,
614 },
615 },
616 },
617 [AB8500_RESERVED] = {
618 .num_ranges = 0,
619 .range = NULL,
620 },
621 [AB8500_GPADC] = {
622 .num_ranges = 1,
623 .range = (struct ab8500_reg_range[]) {
624 {
625 .first = 0x00,
626 .last = 0x08,
627 },
628 },
629 },
630 [AB8500_CHARGER] = {
631 .num_ranges = 9,
632 .range = (struct ab8500_reg_range[]) {
633 {
634 .first = 0x02,
635 .last = 0x03,
636 },
637 {
638 .first = 0x05,
639 .last = 0x05,
640 },
641 {
642 .first = 0x40,
643 .last = 0x44,
644 },
645 {
646 .first = 0x50,
647 .last = 0x57,
648 },
649 {
650 .first = 0x60,
651 .last = 0x60,
652 },
653 {
654 .first = 0xA0,
655 .last = 0xA7,
656 },
657 {
658 .first = 0xAF,
659 .last = 0xB2,
660 },
661 {
662 .first = 0xC0,
663 .last = 0xC2,
664 },
665 {
666 .first = 0xF5,
667 .last = 0xF5,
668 },
669 },
670 },
671 [AB8500_GAS_GAUGE] = {
672 .num_ranges = 3,
673 .range = (struct ab8500_reg_range[]) {
674 {
675 .first = 0x00,
676 .last = 0x00,
677 },
678 {
679 .first = 0x07,
680 .last = 0x0A,
681 },
682 {
683 .first = 0x10,
684 .last = 0x14,
685 },
686 },
687 },
688 [AB8500_AUDIO] = {
689 .num_ranges = 1,
690 .range = (struct ab8500_reg_range[]) {
691 {
692 .first = 0x00,
693 .last = 0x83,
694 },
695 },
696 },
697 [AB8500_INTERRUPT] = {
698 .num_ranges = 11,
699 .range = (struct ab8500_reg_range[]) {
700 {
701 .first = 0x00,
702 .last = 0x04,
703 },
704 {
705 .first = 0x06,
706 .last = 0x07,
707 },
708 {
709 .first = 0x09,
710 .last = 0x09,
711 },
712 {
713 .first = 0x0B,
714 .last = 0x0C,
715 },
716 {
717 .first = 0x12,
718 .last = 0x15,
719 },
720 {
721 .first = 0x18,
722 .last = 0x18,
723 },
724 /* Latch registers should not be read here */
725 {
726 .first = 0x40,
727 .last = 0x44,
728 },
729 {
730 .first = 0x46,
731 .last = 0x49,
732 },
733 {
734 .first = 0x4B,
735 .last = 0x4D,
736 },
737 {
738 .first = 0x52,
739 .last = 0x55,
740 },
741 {
742 .first = 0x58,
743 .last = 0x58,
744 },
745 /* LatchHier registers should not be read here */
746 },
747 },
748 [AB8500_RTC] = {
749 .num_ranges = 2,
750 .range = (struct ab8500_reg_range[]) {
751 {
752 .first = 0x00,
753 .last = 0x14,
754 },
755 {
756 .first = 0x16,
757 .last = 0x17,
758 },
759 },
760 },
761 [AB8500_MISC] = {
762 .num_ranges = 8,
763 .range = (struct ab8500_reg_range[]) {
764 {
765 .first = 0x00,
766 .last = 0x06,
767 },
768 {
769 .first = 0x10,
770 .last = 0x16,
771 },
772 {
773 .first = 0x20,
774 .last = 0x26,
775 },
776 {
777 .first = 0x30,
778 .last = 0x36,
779 },
780 {
781 .first = 0x40,
782 .last = 0x46,
783 },
784 {
785 .first = 0x50,
786 .last = 0x50,
787 },
788 {
789 .first = 0x60,
790 .last = 0x6B,
791 },
792 {
793 .first = 0x80,
794 .last = 0x82,
795 },
796 },
797 },
798 [AB8500_DEVELOPMENT] = {
799 .num_ranges = 2,
800 .range = (struct ab8500_reg_range[]) {
801 {
802 .first = 0x00,
803 .last = 0x00,
804 },
805 {
806 .first = 0x05,
807 .last = 0x05,
808 },
809 },
810 },
811 [AB8500_DEBUG] = {
812 .num_ranges = 1,
813 .range = (struct ab8500_reg_range[]) {
814 {
815 .first = 0x05,
816 .last = 0x07,
817 },
818 },
819 },
820 [AB8500_PROD_TEST] = {
821 .num_ranges = 0,
822 .range = NULL,
823 },
824 [AB8500_STE_TEST] = {
825 .num_ranges = 0,
826 .range = NULL,
827 },
828 [AB8500_OTP_EMUL] = {
829 .num_ranges = 1,
830 .range = (struct ab8500_reg_range[]) {
831 {
832 .first = 0x01,
833 .last = 0x15,
834 },
835 },
836 },
837};
838
Sachin Kamat8455eae2013-08-23 17:37:42 +0530839static struct ab8500_prcmu_ranges ab8540_debug_ranges[AB8500_NUM_BANKS] = {
Lee Jones971480f2012-11-19 12:20:03 +0100840 [AB8500_M_FSM_RANK] = {
841 .num_ranges = 1,
842 .range = (struct ab8500_reg_range[]) {
843 {
844 .first = 0x00,
845 .last = 0x0B,
846 },
847 },
848 },
849 [AB8500_SYS_CTRL1_BLOCK] = {
850 .num_ranges = 6,
851 .range = (struct ab8500_reg_range[]) {
852 {
853 .first = 0x00,
854 .last = 0x04,
855 },
856 {
857 .first = 0x42,
858 .last = 0x42,
859 },
860 {
861 .first = 0x50,
862 .last = 0x54,
863 },
864 {
865 .first = 0x57,
866 .last = 0x57,
867 },
868 {
869 .first = 0x80,
870 .last = 0x83,
871 },
872 {
873 .first = 0x90,
874 .last = 0x90,
875 },
876 },
877 },
878 [AB8500_SYS_CTRL2_BLOCK] = {
879 .num_ranges = 5,
880 .range = (struct ab8500_reg_range[]) {
881 {
882 .first = 0x00,
883 .last = 0x0D,
884 },
885 {
886 .first = 0x0F,
887 .last = 0x10,
888 },
889 {
890 .first = 0x20,
891 .last = 0x21,
892 },
893 {
894 .first = 0x32,
895 .last = 0x3C,
896 },
897 {
898 .first = 0x40,
899 .last = 0x42,
900 },
901 },
902 },
903 [AB8500_REGU_CTRL1] = {
904 .num_ranges = 4,
905 .range = (struct ab8500_reg_range[]) {
906 {
907 .first = 0x03,
908 .last = 0x15,
909 },
910 {
911 .first = 0x20,
912 .last = 0x20,
913 },
914 {
915 .first = 0x80,
916 .last = 0x85,
917 },
918 {
919 .first = 0x87,
920 .last = 0x88,
921 },
922 },
923 },
924 [AB8500_REGU_CTRL2] = {
925 .num_ranges = 8,
926 .range = (struct ab8500_reg_range[]) {
927 {
928 .first = 0x00,
929 .last = 0x06,
930 },
931 {
932 .first = 0x08,
933 .last = 0x15,
934 },
935 {
936 .first = 0x17,
937 .last = 0x19,
938 },
939 {
940 .first = 0x1B,
941 .last = 0x1D,
942 },
943 {
944 .first = 0x1F,
945 .last = 0x2F,
946 },
947 {
948 .first = 0x31,
949 .last = 0x3A,
950 },
951 {
952 .first = 0x43,
953 .last = 0x44,
954 },
955 {
956 .first = 0x48,
957 .last = 0x49,
958 },
959 },
960 },
961 [AB8500_USB] = {
962 .num_ranges = 3,
963 .range = (struct ab8500_reg_range[]) {
964 {
965 .first = 0x80,
966 .last = 0x83,
967 },
968 {
969 .first = 0x87,
970 .last = 0x8A,
971 },
972 {
973 .first = 0x91,
974 .last = 0x94,
975 },
976 },
977 },
978 [AB8500_TVOUT] = {
979 .num_ranges = 0,
980 .range = NULL
981 },
982 [AB8500_DBI] = {
983 .num_ranges = 4,
984 .range = (struct ab8500_reg_range[]) {
985 {
986 .first = 0x00,
987 .last = 0x07,
988 },
989 {
990 .first = 0x10,
991 .last = 0x11,
992 },
993 {
994 .first = 0x20,
995 .last = 0x21,
996 },
997 {
998 .first = 0x30,
999 .last = 0x43,
1000 },
1001 },
1002 },
1003 [AB8500_ECI_AV_ACC] = {
1004 .num_ranges = 2,
1005 .range = (struct ab8500_reg_range[]) {
1006 {
1007 .first = 0x00,
1008 .last = 0x03,
1009 },
1010 {
1011 .first = 0x80,
1012 .last = 0x82,
1013 },
1014 },
1015 },
1016 [AB8500_RESERVED] = {
1017 .num_ranges = 0,
1018 .range = NULL,
1019 },
1020 [AB8500_GPADC] = {
1021 .num_ranges = 4,
1022 .range = (struct ab8500_reg_range[]) {
1023 {
1024 .first = 0x00,
1025 .last = 0x01,
1026 },
1027 {
1028 .first = 0x04,
1029 .last = 0x06,
1030 },
1031 {
1032 .first = 0x09,
1033 .last = 0x0A,
1034 },
1035 {
1036 .first = 0x10,
1037 .last = 0x14,
1038 },
1039 },
1040 },
1041 [AB8500_CHARGER] = {
1042 .num_ranges = 10,
1043 .range = (struct ab8500_reg_range[]) {
1044 {
1045 .first = 0x00,
1046 .last = 0x00,
1047 },
1048 {
1049 .first = 0x02,
1050 .last = 0x05,
1051 },
1052 {
1053 .first = 0x40,
1054 .last = 0x44,
1055 },
1056 {
1057 .first = 0x50,
1058 .last = 0x57,
1059 },
1060 {
1061 .first = 0x60,
1062 .last = 0x60,
1063 },
1064 {
1065 .first = 0x70,
1066 .last = 0x70,
1067 },
1068 {
1069 .first = 0xA0,
1070 .last = 0xA9,
1071 },
1072 {
1073 .first = 0xAF,
1074 .last = 0xB2,
1075 },
1076 {
1077 .first = 0xC0,
1078 .last = 0xC6,
1079 },
1080 {
1081 .first = 0xF5,
1082 .last = 0xF5,
1083 },
1084 },
1085 },
1086 [AB8500_GAS_GAUGE] = {
1087 .num_ranges = 3,
1088 .range = (struct ab8500_reg_range[]) {
1089 {
1090 .first = 0x00,
1091 .last = 0x00,
1092 },
1093 {
1094 .first = 0x07,
1095 .last = 0x0A,
1096 },
1097 {
1098 .first = 0x10,
1099 .last = 0x14,
1100 },
1101 },
1102 },
1103 [AB8500_AUDIO] = {
1104 .num_ranges = 1,
1105 .range = (struct ab8500_reg_range[]) {
1106 {
1107 .first = 0x00,
1108 .last = 0x9f,
1109 },
1110 },
1111 },
1112 [AB8500_INTERRUPT] = {
1113 .num_ranges = 6,
1114 .range = (struct ab8500_reg_range[]) {
1115 {
1116 .first = 0x00,
1117 .last = 0x05,
1118 },
1119 {
1120 .first = 0x0B,
1121 .last = 0x0D,
1122 },
1123 {
1124 .first = 0x12,
1125 .last = 0x20,
1126 },
1127 /* Latch registers should not be read here */
1128 {
1129 .first = 0x40,
1130 .last = 0x45,
1131 },
1132 {
1133 .first = 0x4B,
1134 .last = 0x4D,
1135 },
1136 {
1137 .first = 0x52,
1138 .last = 0x60,
1139 },
1140 /* LatchHier registers should not be read here */
1141 },
1142 },
1143 [AB8500_RTC] = {
1144 .num_ranges = 3,
1145 .range = (struct ab8500_reg_range[]) {
1146 {
1147 .first = 0x00,
1148 .last = 0x07,
1149 },
1150 {
1151 .first = 0x0B,
1152 .last = 0x18,
1153 },
1154 {
1155 .first = 0x20,
1156 .last = 0x25,
1157 },
1158 },
1159 },
1160 [AB8500_MISC] = {
1161 .num_ranges = 9,
1162 .range = (struct ab8500_reg_range[]) {
1163 {
1164 .first = 0x00,
1165 .last = 0x06,
1166 },
1167 {
1168 .first = 0x10,
1169 .last = 0x16,
1170 },
1171 {
1172 .first = 0x20,
1173 .last = 0x26,
1174 },
1175 {
1176 .first = 0x30,
1177 .last = 0x36,
1178 },
1179 {
1180 .first = 0x40,
1181 .last = 0x49,
1182 },
1183 {
1184 .first = 0x50,
1185 .last = 0x50,
1186 },
1187 {
1188 .first = 0x60,
1189 .last = 0x6B,
1190 },
1191 {
1192 .first = 0x70,
1193 .last = 0x74,
1194 },
1195 {
1196 .first = 0x80,
1197 .last = 0x82,
1198 },
1199 },
1200 },
1201 [AB8500_DEVELOPMENT] = {
1202 .num_ranges = 3,
1203 .range = (struct ab8500_reg_range[]) {
1204 {
1205 .first = 0x00,
1206 .last = 0x01,
1207 },
1208 {
1209 .first = 0x06,
1210 .last = 0x06,
1211 },
1212 {
1213 .first = 0x10,
1214 .last = 0x21,
1215 },
1216 },
1217 },
1218 [AB8500_DEBUG] = {
1219 .num_ranges = 3,
1220 .range = (struct ab8500_reg_range[]) {
1221 {
1222 .first = 0x01,
1223 .last = 0x0C,
1224 },
1225 {
1226 .first = 0x0E,
1227 .last = 0x11,
1228 },
1229 {
1230 .first = 0x80,
1231 .last = 0x81,
1232 },
1233 },
1234 },
1235 [AB8500_PROD_TEST] = {
1236 .num_ranges = 0,
1237 .range = NULL,
1238 },
1239 [AB8500_STE_TEST] = {
1240 .num_ranges = 0,
1241 .range = NULL,
1242 },
1243 [AB8500_OTP_EMUL] = {
1244 .num_ranges = 1,
1245 .range = (struct ab8500_reg_range[]) {
1246 {
1247 .first = 0x00,
1248 .last = 0x3F,
1249 },
1250 },
1251 },
1252};
1253
Lee Jones4b8ac082013-01-14 16:10:36 +00001254static irqreturn_t ab8500_debug_handler(int irq, void *data)
1255{
1256 char buf[16];
1257 struct kobject *kobj = (struct kobject *)data;
Mattias Wallin0b337e72010-11-19 17:55:11 +01001258 unsigned int irq_abb = irq - irq_first;
Lee Jones4b8ac082013-01-14 16:10:36 +00001259
Linus Walleijddba25f2012-02-03 11:19:05 +01001260 if (irq_abb < num_irqs)
Mattias Wallin0b337e72010-11-19 17:55:11 +01001261 irq_count[irq_abb]++;
Lee Jones4b8ac082013-01-14 16:10:36 +00001262 /*
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001263 * This makes it possible to use poll for events (EPOLLPRI | EPOLLERR)
Mattias Wallin0b337e72010-11-19 17:55:11 +01001264 * from userspace on sysfs file named <irq-nr>
Lee Jones4b8ac082013-01-14 16:10:36 +00001265 */
Mattias Wallin0b337e72010-11-19 17:55:11 +01001266 sprintf(buf, "%d", irq);
Lee Jones4b8ac082013-01-14 16:10:36 +00001267 sysfs_notify(kobj, NULL, buf);
1268
1269 return IRQ_HANDLED;
1270}
1271
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001272/* Prints to seq_file or log_buf */
1273static int ab8500_registers_print(struct device *dev, u32 bank,
Joe Perches9a503a72015-02-21 18:53:43 -08001274 struct seq_file *s)
Mattias Wallin5814fc32010-09-13 16:05:04 +02001275{
Mattias Wallind7b9f322010-11-26 13:06:39 +01001276 unsigned int i;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001277
Mattias Wallind7b9f322010-11-26 13:06:39 +01001278 for (i = 0; i < debug_ranges[bank].num_ranges; i++) {
1279 u32 reg;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001280
Mattias Wallind7b9f322010-11-26 13:06:39 +01001281 for (reg = debug_ranges[bank].range[i].first;
1282 reg <= debug_ranges[bank].range[i].last;
1283 reg++) {
1284 u8 value;
1285 int err;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001286
Mattias Wallind7b9f322010-11-26 13:06:39 +01001287 err = abx500_get_register_interruptible(dev,
1288 (u8)bank, (u8)reg, &value);
1289 if (err < 0) {
1290 dev_err(dev, "ab->read fail %d\n", err);
1291 return err;
1292 }
Mattias Wallin5814fc32010-09-13 16:05:04 +02001293
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001294 if (s) {
Joe Perches9a503a72015-02-21 18:53:43 -08001295 seq_printf(s, " [0x%02X/0x%02X]: 0x%02X\n",
1296 bank, reg, value);
Lee Jonesde6a7692015-10-28 09:27:32 +00001297 /*
1298 * Error is not returned here since
1299 * the output is wanted in any case
1300 */
Joe Perches9a503a72015-02-21 18:53:43 -08001301 if (seq_has_overflowed(s))
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001302 return 0;
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001303 } else {
Lee Jones43621752014-07-14 18:29:16 +01001304 dev_info(dev, " [0x%02X/0x%02X]: 0x%02X\n",
1305 bank, reg, value);
Mattias Wallind7b9f322010-11-26 13:06:39 +01001306 }
1307 }
1308 }
Joe Perches9a503a72015-02-21 18:53:43 -08001309
Mattias Wallind7b9f322010-11-26 13:06:39 +01001310 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001311}
1312
Andy Shevchenko156d0702017-12-14 12:51:21 +02001313static int ab8500_bank_registers_show(struct seq_file *s, void *p)
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001314{
1315 struct device *dev = s->private;
1316 u32 bank = debug_bank;
1317
Lee Jones43621752014-07-14 18:29:16 +01001318 seq_puts(s, AB8500_NAME_STRING " register values:\n");
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001319
Mattias Wallincfc08492012-05-28 15:53:58 +02001320 seq_printf(s, " bank 0x%02X:\n", bank);
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001321
Joe Perches9a503a72015-02-21 18:53:43 -08001322 return ab8500_registers_print(dev, bank, s);
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001323}
1324
Andy Shevchenko156d0702017-12-14 12:51:21 +02001325DEFINE_SHOW_ATTRIBUTE(ab8500_bank_registers);
Mattias Wallin5814fc32010-09-13 16:05:04 +02001326
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001327static int ab8500_print_all_banks(struct seq_file *s, void *p)
1328{
1329 struct device *dev = s->private;
1330 unsigned int i;
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001331
Lee Jones43621752014-07-14 18:29:16 +01001332 seq_puts(s, AB8500_NAME_STRING " register values:\n");
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001333
Lee Jones971480f2012-11-19 12:20:03 +01001334 for (i = 0; i < AB8500_NUM_BANKS; i++) {
Joe Perches9a503a72015-02-21 18:53:43 -08001335 int err;
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001336
Joe Perches9a503a72015-02-21 18:53:43 -08001337 seq_printf(s, " bank 0x%02X:\n", i);
1338 err = ab8500_registers_print(dev, i, s);
1339 if (err)
1340 return err;
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001341 }
1342 return 0;
1343}
1344
Mian Yousaf Kaukab1d843a62012-01-27 11:35:41 +01001345/* Dump registers to kernel log */
1346void ab8500_dump_all_banks(struct device *dev)
1347{
1348 unsigned int i;
1349
Lee Jones43621752014-07-14 18:29:16 +01001350 dev_info(dev, "ab8500 register values:\n");
Mian Yousaf Kaukab1d843a62012-01-27 11:35:41 +01001351
1352 for (i = 1; i < AB8500_NUM_BANKS; i++) {
Lee Jones43621752014-07-14 18:29:16 +01001353 dev_info(dev, " bank 0x%02X:\n", i);
Mian Yousaf Kaukab1d843a62012-01-27 11:35:41 +01001354 ab8500_registers_print(dev, i, NULL);
1355 }
1356}
1357
Mian Yousaf Kaukab42002c62012-01-26 15:39:20 +01001358static int ab8500_all_banks_open(struct inode *inode, struct file *file)
1359{
1360 struct seq_file *s;
1361 int err;
1362
1363 err = single_open(file, ab8500_print_all_banks, inode->i_private);
1364 if (!err) {
1365 /* Default buf size in seq_read is not enough */
1366 s = (struct seq_file *)file->private_data;
1367 s->size = (PAGE_SIZE * 2);
1368 s->buf = kmalloc(s->size, GFP_KERNEL);
1369 if (!s->buf) {
1370 single_release(inode, file);
1371 err = -ENOMEM;
1372 }
1373 }
1374 return err;
1375}
1376
1377static const struct file_operations ab8500_all_banks_fops = {
1378 .open = ab8500_all_banks_open,
1379 .read = seq_read,
1380 .llseek = seq_lseek,
1381 .release = single_release,
1382 .owner = THIS_MODULE,
1383};
1384
Mattias Wallin5814fc32010-09-13 16:05:04 +02001385static int ab8500_bank_print(struct seq_file *s, void *p)
1386{
Joe Perches9a503a72015-02-21 18:53:43 -08001387 seq_printf(s, "0x%02X\n", debug_bank);
1388 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001389}
1390
1391static int ab8500_bank_open(struct inode *inode, struct file *file)
1392{
Mattias Wallind7b9f322010-11-26 13:06:39 +01001393 return single_open(file, ab8500_bank_print, inode->i_private);
Mattias Wallin5814fc32010-09-13 16:05:04 +02001394}
1395
1396static ssize_t ab8500_bank_write(struct file *file,
Mattias Wallind7b9f322010-11-26 13:06:39 +01001397 const char __user *user_buf,
1398 size_t count, loff_t *ppos)
Mattias Wallin5814fc32010-09-13 16:05:04 +02001399{
Mattias Wallind7b9f322010-11-26 13:06:39 +01001400 struct device *dev = ((struct seq_file *)(file->private_data))->private;
Mattias Wallind7b9f322010-11-26 13:06:39 +01001401 unsigned long user_bank;
1402 int err;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001403
Peter Huewe8504d632011-06-06 22:43:32 +02001404 err = kstrtoul_from_user(user_buf, count, 0, &user_bank);
Mattias Wallind7b9f322010-11-26 13:06:39 +01001405 if (err)
Peter Huewe8504d632011-06-06 22:43:32 +02001406 return err;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001407
Mattias Wallind7b9f322010-11-26 13:06:39 +01001408 if (user_bank >= AB8500_NUM_BANKS) {
1409 dev_err(dev, "debugfs error input > number of banks\n");
1410 return -EINVAL;
1411 }
Mattias Wallin5814fc32010-09-13 16:05:04 +02001412
Mattias Wallind7b9f322010-11-26 13:06:39 +01001413 debug_bank = user_bank;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001414
Peter Huewe8504d632011-06-06 22:43:32 +02001415 return count;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001416}
1417
1418static int ab8500_address_print(struct seq_file *s, void *p)
1419{
Joe Perches9a503a72015-02-21 18:53:43 -08001420 seq_printf(s, "0x%02X\n", debug_address);
1421 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001422}
1423
1424static int ab8500_address_open(struct inode *inode, struct file *file)
1425{
Mattias Wallind7b9f322010-11-26 13:06:39 +01001426 return single_open(file, ab8500_address_print, inode->i_private);
Mattias Wallin5814fc32010-09-13 16:05:04 +02001427}
1428
1429static ssize_t ab8500_address_write(struct file *file,
Lee Jones9f9ba152013-02-26 12:05:15 +00001430 const char __user *user_buf,
1431 size_t count, loff_t *ppos)
Mattias Wallin5814fc32010-09-13 16:05:04 +02001432{
Mattias Wallind7b9f322010-11-26 13:06:39 +01001433 struct device *dev = ((struct seq_file *)(file->private_data))->private;
Mattias Wallind7b9f322010-11-26 13:06:39 +01001434 unsigned long user_address;
1435 int err;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001436
Peter Huewe8504d632011-06-06 22:43:32 +02001437 err = kstrtoul_from_user(user_buf, count, 0, &user_address);
Mattias Wallind7b9f322010-11-26 13:06:39 +01001438 if (err)
Peter Huewe8504d632011-06-06 22:43:32 +02001439 return err;
1440
Mattias Wallind7b9f322010-11-26 13:06:39 +01001441 if (user_address > 0xff) {
1442 dev_err(dev, "debugfs error input > 0xff\n");
1443 return -EINVAL;
1444 }
1445 debug_address = user_address;
srinidhi kasagar7b830ae2012-11-23 15:11:00 +05301446
Peter Huewe8504d632011-06-06 22:43:32 +02001447 return count;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001448}
1449
1450static int ab8500_val_print(struct seq_file *s, void *p)
1451{
Mattias Wallind7b9f322010-11-26 13:06:39 +01001452 struct device *dev = s->private;
1453 int ret;
1454 u8 regvalue;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001455
Mattias Wallind7b9f322010-11-26 13:06:39 +01001456 ret = abx500_get_register_interruptible(dev,
1457 (u8)debug_bank, (u8)debug_address, &regvalue);
1458 if (ret < 0) {
1459 dev_err(dev, "abx500_get_reg fail %d, %d\n",
1460 ret, __LINE__);
1461 return -EINVAL;
1462 }
1463 seq_printf(s, "0x%02X\n", regvalue);
Mattias Wallin5814fc32010-09-13 16:05:04 +02001464
Mattias Wallind7b9f322010-11-26 13:06:39 +01001465 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001466}
1467
1468static int ab8500_val_open(struct inode *inode, struct file *file)
1469{
Mattias Wallind7b9f322010-11-26 13:06:39 +01001470 return single_open(file, ab8500_val_print, inode->i_private);
Mattias Wallin5814fc32010-09-13 16:05:04 +02001471}
1472
1473static ssize_t ab8500_val_write(struct file *file,
Lee Jones9f9ba152013-02-26 12:05:15 +00001474 const char __user *user_buf,
1475 size_t count, loff_t *ppos)
Mattias Wallin5814fc32010-09-13 16:05:04 +02001476{
Mattias Wallind7b9f322010-11-26 13:06:39 +01001477 struct device *dev = ((struct seq_file *)(file->private_data))->private;
Mattias Wallind7b9f322010-11-26 13:06:39 +01001478 unsigned long user_val;
1479 int err;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001480
Peter Huewe8504d632011-06-06 22:43:32 +02001481 err = kstrtoul_from_user(user_buf, count, 0, &user_val);
Mattias Wallind7b9f322010-11-26 13:06:39 +01001482 if (err)
Peter Huewe8504d632011-06-06 22:43:32 +02001483 return err;
1484
Mattias Wallind7b9f322010-11-26 13:06:39 +01001485 if (user_val > 0xff) {
1486 dev_err(dev, "debugfs error input > 0xff\n");
1487 return -EINVAL;
1488 }
1489 err = abx500_set_register_interruptible(dev,
1490 (u8)debug_bank, debug_address, (u8)user_val);
1491 if (err < 0) {
Lee Jones43621752014-07-14 18:29:16 +01001492 pr_err("abx500_set_reg failed %d, %d", err, __LINE__);
Mattias Wallind7b9f322010-11-26 13:06:39 +01001493 return -EINVAL;
1494 }
Mattias Wallin5814fc32010-09-13 16:05:04 +02001495
Peter Huewe8504d632011-06-06 22:43:32 +02001496 return count;
Mattias Wallin5814fc32010-09-13 16:05:04 +02001497}
1498
carriere etienne0fbce762011-04-08 16:26:36 +02001499/*
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01001500 * Interrupt status
1501 */
1502static u32 num_interrupts[AB8500_MAX_NR_IRQS];
Jonas Aaberg2cf64e22012-05-31 07:57:07 +02001503static u32 num_wake_interrupts[AB8500_MAX_NR_IRQS];
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01001504static int num_interrupt_lines;
1505
1506void ab8500_debug_register_interrupt(int line)
1507{
Lee Jones364c5172016-09-14 11:56:34 +01001508 if (line < num_interrupt_lines)
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01001509 num_interrupts[line]++;
1510}
1511
Andy Shevchenko156d0702017-12-14 12:51:21 +02001512static int ab8500_interrupts_show(struct seq_file *s, void *p)
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01001513{
1514 int line;
1515
Thomas Gleixner886c8122020-12-10 20:25:52 +01001516 seq_puts(s, "name: number: irq: number of: wake:\n");
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01001517
Jonas Aaberg2cf64e22012-05-31 07:57:07 +02001518 for (line = 0; line < num_interrupt_lines; line++) {
Thomas Gleixner886c8122020-12-10 20:25:52 +01001519 seq_printf(s, "%3i: %4i %6i %4i\n",
Joe Perches9a503a72015-02-21 18:53:43 -08001520 line,
Thomas Gleixner886c8122020-12-10 20:25:52 +01001521 line + irq_first,
Jonas Aaberg2cf64e22012-05-31 07:57:07 +02001522 num_interrupts[line],
1523 num_wake_interrupts[line]);
Jonas Aaberg2cf64e22012-05-31 07:57:07 +02001524 }
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01001525
1526 return 0;
1527}
1528
Andy Shevchenko156d0702017-12-14 12:51:21 +02001529DEFINE_SHOW_ATTRIBUTE(ab8500_interrupts);
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01001530
1531/*
carriere etienne0fbce762011-04-08 16:26:36 +02001532 * - HWREG DB8500 formated routines
1533 */
1534static int ab8500_hwreg_print(struct seq_file *s, void *d)
1535{
1536 struct device *dev = s->private;
1537 int ret;
1538 u8 regvalue;
1539
1540 ret = abx500_get_register_interruptible(dev,
1541 (u8)hwreg_cfg.bank, (u8)hwreg_cfg.addr, &regvalue);
1542 if (ret < 0) {
1543 dev_err(dev, "abx500_get_reg fail %d, %d\n",
1544 ret, __LINE__);
1545 return -EINVAL;
1546 }
1547
1548 if (hwreg_cfg.shift >= 0)
1549 regvalue >>= hwreg_cfg.shift;
1550 else
1551 regvalue <<= -hwreg_cfg.shift;
1552 regvalue &= hwreg_cfg.mask;
1553
1554 if (REG_FMT_DEC(&hwreg_cfg))
1555 seq_printf(s, "%d\n", regvalue);
1556 else
1557 seq_printf(s, "0x%02X\n", regvalue);
1558 return 0;
1559}
1560
1561static int ab8500_hwreg_open(struct inode *inode, struct file *file)
1562{
1563 return single_open(file, ab8500_hwreg_print, inode->i_private);
1564}
1565
Lee Jonesc7ebaee2013-02-26 14:03:33 +00001566#define AB8500_SUPPLY_CONTROL_CONFIG_1 0x01
1567#define AB8500_SUPPLY_CONTROL_REG 0x00
1568#define AB8500_FIRST_SIM_REG 0x80
1569#define AB8500_LAST_SIM_REG 0x8B
1570#define AB8505_LAST_SIM_REG 0x8C
1571
Andy Shevchenko156d0702017-12-14 12:51:21 +02001572static int ab8500_modem_show(struct seq_file *s, void *p)
Lee Jonesc7ebaee2013-02-26 14:03:33 +00001573{
1574 struct device *dev = s->private;
1575 struct ab8500 *ab8500;
1576 int err;
1577 u8 value;
1578 u8 orig_value;
1579 u32 bank = AB8500_REGU_CTRL2;
1580 u32 last_sim_reg = AB8500_LAST_SIM_REG;
1581 u32 reg;
1582
1583 ab8500 = dev_get_drvdata(dev->parent);
1584 dev_warn(dev, "WARNING! This operation can interfer with modem side\n"
1585 "and should only be done with care\n");
1586
1587 err = abx500_get_register_interruptible(dev,
1588 AB8500_REGU_CTRL1, AB8500_SUPPLY_CONTROL_REG, &orig_value);
Markus Elfring0a5d79b2017-10-27 17:20:45 +02001589 if (err < 0)
1590 goto report_read_failure;
1591
Lee Jonesc7ebaee2013-02-26 14:03:33 +00001592 /* Config 1 will allow APE side to read SIM registers */
1593 err = abx500_set_register_interruptible(dev,
1594 AB8500_REGU_CTRL1, AB8500_SUPPLY_CONTROL_REG,
1595 AB8500_SUPPLY_CONTROL_CONFIG_1);
Markus Elfring0a5d79b2017-10-27 17:20:45 +02001596 if (err < 0)
1597 goto report_write_failure;
Lee Jonesc7ebaee2013-02-26 14:03:33 +00001598
1599 seq_printf(s, " bank 0x%02X:\n", bank);
1600
1601 if (is_ab9540(ab8500) || is_ab8505(ab8500))
1602 last_sim_reg = AB8505_LAST_SIM_REG;
1603
1604 for (reg = AB8500_FIRST_SIM_REG; reg <= last_sim_reg; reg++) {
1605 err = abx500_get_register_interruptible(dev,
1606 bank, reg, &value);
Markus Elfring0a5d79b2017-10-27 17:20:45 +02001607 if (err < 0)
1608 goto report_read_failure;
1609
Joe Perches9a503a72015-02-21 18:53:43 -08001610 seq_printf(s, " [0x%02X/0x%02X]: 0x%02X\n", bank, reg, value);
Lee Jonesc7ebaee2013-02-26 14:03:33 +00001611 }
1612 err = abx500_set_register_interruptible(dev,
1613 AB8500_REGU_CTRL1, AB8500_SUPPLY_CONTROL_REG, orig_value);
Markus Elfring0a5d79b2017-10-27 17:20:45 +02001614 if (err < 0)
1615 goto report_write_failure;
1616
Lee Jonesc7ebaee2013-02-26 14:03:33 +00001617 return 0;
Markus Elfring0a5d79b2017-10-27 17:20:45 +02001618
1619report_read_failure:
1620 dev_err(dev, "ab->read fail %d\n", err);
1621 return err;
1622
1623report_write_failure:
1624 dev_err(dev, "ab->write fail %d\n", err);
1625 return err;
Lee Jonesc7ebaee2013-02-26 14:03:33 +00001626}
1627
Andy Shevchenko156d0702017-12-14 12:51:21 +02001628DEFINE_SHOW_ATTRIBUTE(ab8500_modem);
Lee Jonesc7ebaee2013-02-26 14:03:33 +00001629
carriere etienne0fbce762011-04-08 16:26:36 +02001630/*
1631 * return length of an ASCII numerical value, 0 is string is not a
1632 * numerical value.
1633 * string shall start at value 1st char.
1634 * string can be tailed with \0 or space or newline chars only.
1635 * value can be decimal or hexadecimal (prefixed 0x or 0X).
1636 */
1637static int strval_len(char *b)
1638{
1639 char *s = b;
Lee Jones43621752014-07-14 18:29:16 +01001640
carriere etienne0fbce762011-04-08 16:26:36 +02001641 if ((*s == '0') && ((*(s+1) == 'x') || (*(s+1) == 'X'))) {
1642 s += 2;
1643 for (; *s && (*s != ' ') && (*s != '\n'); s++) {
1644 if (!isxdigit(*s))
1645 return 0;
1646 }
1647 } else {
1648 if (*s == '-')
1649 s++;
1650 for (; *s && (*s != ' ') && (*s != '\n'); s++) {
1651 if (!isdigit(*s))
1652 return 0;
1653 }
1654 }
1655 return (int) (s-b);
1656}
1657
1658/*
1659 * parse hwreg input data.
1660 * update global hwreg_cfg only if input data syntax is ok.
1661 */
1662static ssize_t hwreg_common_write(char *b, struct hwreg_cfg *cfg,
1663 struct device *dev)
1664{
1665 uint write, val = 0;
1666 u8 regvalue;
1667 int ret;
1668 struct hwreg_cfg loc = {
1669 .bank = 0, /* default: invalid phys addr */
1670 .addr = 0, /* default: invalid phys addr */
1671 .fmt = 0, /* default: 32bit access, hex output */
1672 .mask = 0xFFFFFFFF, /* default: no mask */
1673 .shift = 0, /* default: no bit shift */
1674 };
1675
1676 /* read or write ? */
1677 if (!strncmp(b, "read ", 5)) {
1678 write = 0;
1679 b += 5;
1680 } else if (!strncmp(b, "write ", 6)) {
1681 write = 1;
1682 b += 6;
1683 } else
1684 return -EINVAL;
1685
1686 /* OPTIONS -l|-w|-b -s -m -o */
1687 while ((*b == ' ') || (*b == '-')) {
1688 if (*(b-1) != ' ') {
1689 b++;
1690 continue;
1691 }
1692 if ((!strncmp(b, "-d ", 3)) ||
1693 (!strncmp(b, "-dec ", 5))) {
1694 b += (*(b+2) == ' ') ? 3 : 5;
1695 loc.fmt |= (1<<0);
1696 } else if ((!strncmp(b, "-h ", 3)) ||
1697 (!strncmp(b, "-hex ", 5))) {
1698 b += (*(b+2) == ' ') ? 3 : 5;
1699 loc.fmt &= ~(1<<0);
1700 } else if ((!strncmp(b, "-m ", 3)) ||
1701 (!strncmp(b, "-mask ", 6))) {
1702 b += (*(b+2) == ' ') ? 3 : 6;
1703 if (strval_len(b) == 0)
1704 return -EINVAL;
Lee Jones43621752014-07-14 18:29:16 +01001705 ret = kstrtoul(b, 0, &loc.mask);
1706 if (ret)
1707 return ret;
carriere etienne0fbce762011-04-08 16:26:36 +02001708 } else if ((!strncmp(b, "-s ", 3)) ||
1709 (!strncmp(b, "-shift ", 7))) {
1710 b += (*(b+2) == ' ') ? 3 : 7;
1711 if (strval_len(b) == 0)
1712 return -EINVAL;
Lee Jones43621752014-07-14 18:29:16 +01001713 ret = kstrtol(b, 0, &loc.shift);
1714 if (ret)
1715 return ret;
carriere etienne0fbce762011-04-08 16:26:36 +02001716 } else {
1717 return -EINVAL;
1718 }
1719 }
1720 /* get arg BANK and ADDRESS */
1721 if (strval_len(b) == 0)
1722 return -EINVAL;
Lee Jones43621752014-07-14 18:29:16 +01001723 ret = kstrtouint(b, 0, &loc.bank);
1724 if (ret)
1725 return ret;
carriere etienne0fbce762011-04-08 16:26:36 +02001726 while (*b == ' ')
1727 b++;
1728 if (strval_len(b) == 0)
1729 return -EINVAL;
Lee Jones43621752014-07-14 18:29:16 +01001730 ret = kstrtoul(b, 0, &loc.addr);
1731 if (ret)
1732 return ret;
carriere etienne0fbce762011-04-08 16:26:36 +02001733
1734 if (write) {
1735 while (*b == ' ')
1736 b++;
1737 if (strval_len(b) == 0)
1738 return -EINVAL;
Lee Jones43621752014-07-14 18:29:16 +01001739 ret = kstrtouint(b, 0, &val);
1740 if (ret)
1741 return ret;
carriere etienne0fbce762011-04-08 16:26:36 +02001742 }
1743
1744 /* args are ok, update target cfg (mainly for read) */
1745 *cfg = loc;
1746
1747#ifdef ABB_HWREG_DEBUG
Lee Jonesde6a7692015-10-28 09:27:32 +00001748 pr_warn("HWREG request: %s, %s,\n", (write) ? "write" : "read",
1749 REG_FMT_DEC(cfg) ? "decimal" : "hexa");
1750 pr_warn(" addr=0x%08X, mask=0x%X, shift=%d" "value=0x%X\n",
Lee Jones43621752014-07-14 18:29:16 +01001751 cfg->addr, cfg->mask, cfg->shift, val);
carriere etienne0fbce762011-04-08 16:26:36 +02001752#endif
1753
1754 if (!write)
1755 return 0;
1756
1757 ret = abx500_get_register_interruptible(dev,
1758 (u8)cfg->bank, (u8)cfg->addr, &regvalue);
1759 if (ret < 0) {
1760 dev_err(dev, "abx500_get_reg fail %d, %d\n",
1761 ret, __LINE__);
1762 return -EINVAL;
1763 }
1764
1765 if (cfg->shift >= 0) {
1766 regvalue &= ~(cfg->mask << (cfg->shift));
1767 val = (val & cfg->mask) << (cfg->shift);
1768 } else {
1769 regvalue &= ~(cfg->mask >> (-cfg->shift));
1770 val = (val & cfg->mask) >> (-cfg->shift);
1771 }
1772 val = val | regvalue;
1773
1774 ret = abx500_set_register_interruptible(dev,
1775 (u8)cfg->bank, (u8)cfg->addr, (u8)val);
1776 if (ret < 0) {
1777 pr_err("abx500_set_reg failed %d, %d", ret, __LINE__);
1778 return -EINVAL;
1779 }
1780
1781 return 0;
1782}
1783
1784static ssize_t ab8500_hwreg_write(struct file *file,
1785 const char __user *user_buf, size_t count, loff_t *ppos)
1786{
1787 struct device *dev = ((struct seq_file *)(file->private_data))->private;
1788 char buf[128];
1789 int buf_size, ret;
1790
1791 /* Get userspace string and assure termination */
Lee Jonesddb6b262020-06-23 11:05:23 +01001792 buf_size = min((int)count, (int)(sizeof(buf)-1));
carriere etienne0fbce762011-04-08 16:26:36 +02001793 if (copy_from_user(buf, user_buf, buf_size))
1794 return -EFAULT;
1795 buf[buf_size] = 0;
1796
1797 /* get args and process */
1798 ret = hwreg_common_write(buf, &hwreg_cfg, dev);
1799 return (ret) ? ret : buf_size;
1800}
1801
1802/*
1803 * - irq subscribe/unsubscribe stuff
1804 */
Lee Jones4b8ac082013-01-14 16:10:36 +00001805static int ab8500_subscribe_unsubscribe_print(struct seq_file *s, void *p)
1806{
1807 seq_printf(s, "%d\n", irq_first);
1808
1809 return 0;
1810}
1811
1812static int ab8500_subscribe_unsubscribe_open(struct inode *inode,
1813 struct file *file)
1814{
1815 return single_open(file, ab8500_subscribe_unsubscribe_print,
Lee Jones9f9ba152013-02-26 12:05:15 +00001816 inode->i_private);
Lee Jones4b8ac082013-01-14 16:10:36 +00001817}
1818
1819/*
Mattias Wallin0b337e72010-11-19 17:55:11 +01001820 * Userspace should use poll() on this file. When an event occur
Lee Jones4b8ac082013-01-14 16:10:36 +00001821 * the blocking poll will be released.
1822 */
1823static ssize_t show_irq(struct device *dev,
1824 struct device_attribute *attr, char *buf)
1825{
Mattias Wallin0b337e72010-11-19 17:55:11 +01001826 unsigned long name;
1827 unsigned int irq_index;
1828 int err;
Lee Jones4b8ac082013-01-14 16:10:36 +00001829
Jingoo Han8420a242013-06-04 13:11:50 +09001830 err = kstrtoul(attr->attr.name, 0, &name);
Mattias Wallin0b337e72010-11-19 17:55:11 +01001831 if (err)
1832 return err;
1833
1834 irq_index = name - irq_first;
Linus Walleijddba25f2012-02-03 11:19:05 +01001835 if (irq_index >= num_irqs)
Mattias Wallin0b337e72010-11-19 17:55:11 +01001836 return -EINVAL;
Lee Jonesc3f27a22014-07-02 11:22:10 +01001837
1838 return sprintf(buf, "%u\n", irq_count[irq_index]);
Mattias Wallin0b337e72010-11-19 17:55:11 +01001839}
Lee Jones4b8ac082013-01-14 16:10:36 +00001840
1841static ssize_t ab8500_subscribe_write(struct file *file,
1842 const char __user *user_buf,
1843 size_t count, loff_t *ppos)
1844{
1845 struct device *dev = ((struct seq_file *)(file->private_data))->private;
Lee Jones4b8ac082013-01-14 16:10:36 +00001846 unsigned long user_val;
1847 int err;
Mattias Wallin0b337e72010-11-19 17:55:11 +01001848 unsigned int irq_index;
Lee Jones4b8ac082013-01-14 16:10:36 +00001849
srinidhi kasagar7b830ae2012-11-23 15:11:00 +05301850 err = kstrtoul_from_user(user_buf, count, 0, &user_val);
Lee Jones4b8ac082013-01-14 16:10:36 +00001851 if (err)
srinidhi kasagar7b830ae2012-11-23 15:11:00 +05301852 return err;
1853
Lee Jones4b8ac082013-01-14 16:10:36 +00001854 if (user_val < irq_first) {
1855 dev_err(dev, "debugfs error input < %d\n", irq_first);
1856 return -EINVAL;
1857 }
1858 if (user_val > irq_last) {
1859 dev_err(dev, "debugfs error input > %d\n", irq_last);
1860 return -EINVAL;
1861 }
1862
Mattias Wallin0b337e72010-11-19 17:55:11 +01001863 irq_index = user_val - irq_first;
Linus Walleijddba25f2012-02-03 11:19:05 +01001864 if (irq_index >= num_irqs)
Mattias Wallin0b337e72010-11-19 17:55:11 +01001865 return -EINVAL;
1866
Lee Jones4b8ac082013-01-14 16:10:36 +00001867 /*
Mattias Wallin0b337e72010-11-19 17:55:11 +01001868 * This will create a sysfs file named <irq-nr> which userspace can
Lee Jones4b8ac082013-01-14 16:10:36 +00001869 * use to select or poll and get the AB8500 events
1870 */
Mattias Wallin0b337e72010-11-19 17:55:11 +01001871 dev_attr[irq_index] = kmalloc(sizeof(struct device_attribute),
1872 GFP_KERNEL);
Lee Jonesf840e232013-07-19 08:44:50 +01001873 if (!dev_attr[irq_index])
1874 return -ENOMEM;
1875
Himanshu Jha3683e9e2018-03-07 23:36:01 +05301876 event_name[irq_index] = kasprintf(GFP_KERNEL, "%lu", user_val);
Lee Jonesd551c4c2013-07-19 08:53:24 +01001877 if (!event_name[irq_index])
1878 return -ENOMEM;
1879
Mattias Wallin0b337e72010-11-19 17:55:11 +01001880 dev_attr[irq_index]->show = show_irq;
1881 dev_attr[irq_index]->store = NULL;
1882 dev_attr[irq_index]->attr.name = event_name[irq_index];
1883 dev_attr[irq_index]->attr.mode = S_IRUGO;
1884 err = sysfs_create_file(&dev->kobj, &dev_attr[irq_index]->attr);
Lee Jones4b8ac082013-01-14 16:10:36 +00001885 if (err < 0) {
Lee Jones43621752014-07-14 18:29:16 +01001886 pr_info("sysfs_create_file failed %d\n", err);
Lee Jones4b8ac082013-01-14 16:10:36 +00001887 return err;
1888 }
1889
1890 err = request_threaded_irq(user_val, NULL, ab8500_debug_handler,
Fabio Estevamabe5b472015-05-16 15:42:15 -03001891 IRQF_SHARED | IRQF_NO_SUSPEND | IRQF_ONESHOT,
Lee Jones4b8ac082013-01-14 16:10:36 +00001892 "ab8500-debug", &dev->kobj);
1893 if (err < 0) {
Lee Jones43621752014-07-14 18:29:16 +01001894 pr_info("request_threaded_irq failed %d, %lu\n",
1895 err, user_val);
Mattias Wallin0b337e72010-11-19 17:55:11 +01001896 sysfs_remove_file(&dev->kobj, &dev_attr[irq_index]->attr);
Lee Jones4b8ac082013-01-14 16:10:36 +00001897 return err;
1898 }
1899
srinidhi kasagar7b830ae2012-11-23 15:11:00 +05301900 return count;
Lee Jones4b8ac082013-01-14 16:10:36 +00001901}
1902
1903static ssize_t ab8500_unsubscribe_write(struct file *file,
1904 const char __user *user_buf,
1905 size_t count, loff_t *ppos)
1906{
1907 struct device *dev = ((struct seq_file *)(file->private_data))->private;
Lee Jones4b8ac082013-01-14 16:10:36 +00001908 unsigned long user_val;
1909 int err;
Mattias Wallin0b337e72010-11-19 17:55:11 +01001910 unsigned int irq_index;
Lee Jones4b8ac082013-01-14 16:10:36 +00001911
srinidhi kasagar7b830ae2012-11-23 15:11:00 +05301912 err = kstrtoul_from_user(user_buf, count, 0, &user_val);
Lee Jones4b8ac082013-01-14 16:10:36 +00001913 if (err)
srinidhi kasagar7b830ae2012-11-23 15:11:00 +05301914 return err;
1915
Lee Jones4b8ac082013-01-14 16:10:36 +00001916 if (user_val < irq_first) {
1917 dev_err(dev, "debugfs error input < %d\n", irq_first);
1918 return -EINVAL;
1919 }
1920 if (user_val > irq_last) {
1921 dev_err(dev, "debugfs error input > %d\n", irq_last);
1922 return -EINVAL;
1923 }
1924
Mattias Wallin0b337e72010-11-19 17:55:11 +01001925 irq_index = user_val - irq_first;
Linus Walleijddba25f2012-02-03 11:19:05 +01001926 if (irq_index >= num_irqs)
Mattias Wallin0b337e72010-11-19 17:55:11 +01001927 return -EINVAL;
Lee Jones4b8ac082013-01-14 16:10:36 +00001928
Mattias Wallin0b337e72010-11-19 17:55:11 +01001929 /* Set irq count to 0 when unsubscribe */
1930 irq_count[irq_index] = 0;
1931
1932 if (dev_attr[irq_index])
1933 sysfs_remove_file(&dev->kobj, &dev_attr[irq_index]->attr);
1934
1935
1936 free_irq(user_val, &dev->kobj);
1937 kfree(event_name[irq_index]);
1938 kfree(dev_attr[irq_index]);
Lee Jones4b8ac082013-01-14 16:10:36 +00001939
srinidhi kasagar7b830ae2012-11-23 15:11:00 +05301940 return count;
Lee Jones4b8ac082013-01-14 16:10:36 +00001941}
1942
carriere etienne0fbce762011-04-08 16:26:36 +02001943/*
Jonathan Neuschäfer38a32272019-04-30 17:17:26 +02001944 * - several debugfs nodes fops
carriere etienne0fbce762011-04-08 16:26:36 +02001945 */
1946
Mattias Wallin5814fc32010-09-13 16:05:04 +02001947static const struct file_operations ab8500_bank_fops = {
Mattias Wallind7b9f322010-11-26 13:06:39 +01001948 .open = ab8500_bank_open,
1949 .write = ab8500_bank_write,
1950 .read = seq_read,
1951 .llseek = seq_lseek,
1952 .release = single_release,
1953 .owner = THIS_MODULE,
Mattias Wallin5814fc32010-09-13 16:05:04 +02001954};
1955
1956static const struct file_operations ab8500_address_fops = {
Mattias Wallind7b9f322010-11-26 13:06:39 +01001957 .open = ab8500_address_open,
1958 .write = ab8500_address_write,
1959 .read = seq_read,
1960 .llseek = seq_lseek,
1961 .release = single_release,
1962 .owner = THIS_MODULE,
Mattias Wallin5814fc32010-09-13 16:05:04 +02001963};
1964
1965static const struct file_operations ab8500_val_fops = {
Mattias Wallind7b9f322010-11-26 13:06:39 +01001966 .open = ab8500_val_open,
1967 .write = ab8500_val_write,
1968 .read = seq_read,
1969 .llseek = seq_lseek,
1970 .release = single_release,
1971 .owner = THIS_MODULE,
Mattias Wallin5814fc32010-09-13 16:05:04 +02001972};
1973
Lee Jones4b8ac082013-01-14 16:10:36 +00001974static const struct file_operations ab8500_subscribe_fops = {
1975 .open = ab8500_subscribe_unsubscribe_open,
1976 .write = ab8500_subscribe_write,
1977 .read = seq_read,
1978 .llseek = seq_lseek,
1979 .release = single_release,
1980 .owner = THIS_MODULE,
1981};
1982
1983static const struct file_operations ab8500_unsubscribe_fops = {
1984 .open = ab8500_subscribe_unsubscribe_open,
1985 .write = ab8500_unsubscribe_write,
1986 .read = seq_read,
1987 .llseek = seq_lseek,
1988 .release = single_release,
1989 .owner = THIS_MODULE,
1990};
1991
carriere etienne0fbce762011-04-08 16:26:36 +02001992static const struct file_operations ab8500_hwreg_fops = {
1993 .open = ab8500_hwreg_open,
1994 .write = ab8500_hwreg_write,
1995 .read = seq_read,
1996 .llseek = seq_lseek,
1997 .release = single_release,
1998 .owner = THIS_MODULE,
1999};
2000
Bill Pembertonf791be42012-11-19 13:23:04 -05002001static int ab8500_debug_probe(struct platform_device *plf)
Mattias Wallin5814fc32010-09-13 16:05:04 +02002002{
Greg Kroah-Hartman64e8a9b2019-07-06 18:47:21 +02002003 struct dentry *ab8500_dir;
Linus Walleijddba25f2012-02-03 11:19:05 +01002004 struct ab8500 *ab8500;
Linus Walleij69991812013-04-12 17:02:09 +02002005 struct resource *res;
Lee Jones43621752014-07-14 18:29:16 +01002006
Mattias Wallind7b9f322010-11-26 13:06:39 +01002007 debug_bank = AB8500_MISC;
2008 debug_address = AB8500_REV_REG & 0x00FF;
Mattias Wallin5814fc32010-09-13 16:05:04 +02002009
Linus Walleijddba25f2012-02-03 11:19:05 +01002010 ab8500 = dev_get_drvdata(plf->dev.parent);
2011 num_irqs = ab8500->mask_size;
2012
Kees Cooka86854d2018-06-12 14:07:58 -07002013 irq_count = devm_kcalloc(&plf->dev,
2014 num_irqs, sizeof(*irq_count), GFP_KERNEL);
Linus Walleijddba25f2012-02-03 11:19:05 +01002015 if (!irq_count)
2016 return -ENOMEM;
2017
Kees Cooka86854d2018-06-12 14:07:58 -07002018 dev_attr = devm_kcalloc(&plf->dev,
2019 num_irqs, sizeof(*dev_attr), GFP_KERNEL);
Linus Walleijddba25f2012-02-03 11:19:05 +01002020 if (!dev_attr)
Lee Jonesc18cf6d2013-05-23 16:25:05 +01002021 return -ENOMEM;
Linus Walleijddba25f2012-02-03 11:19:05 +01002022
Kees Cooka86854d2018-06-12 14:07:58 -07002023 event_name = devm_kcalloc(&plf->dev,
2024 num_irqs, sizeof(*event_name), GFP_KERNEL);
Linus Walleijddba25f2012-02-03 11:19:05 +01002025 if (!event_name)
Lee Jonesc18cf6d2013-05-23 16:25:05 +01002026 return -ENOMEM;
Linus Walleijddba25f2012-02-03 11:19:05 +01002027
Linus Walleij69991812013-04-12 17:02:09 +02002028 res = platform_get_resource_byname(plf, 0, "IRQ_AB8500");
2029 if (!res) {
Lee Jones43621752014-07-14 18:29:16 +01002030 dev_err(&plf->dev, "AB8500 irq not found, err %d\n", irq_first);
2031 return -ENXIO;
Linus Walleij69991812013-04-12 17:02:09 +02002032 }
2033 irq_ab8500 = res->start;
2034
Lee Jones4b8ac082013-01-14 16:10:36 +00002035 irq_first = platform_get_irq_byname(plf, "IRQ_FIRST");
Stephen Boyd802d9bd2019-07-30 11:15:27 -07002036 if (irq_first < 0)
Lee Jonesc18cf6d2013-05-23 16:25:05 +01002037 return irq_first;
Lee Jones4b8ac082013-01-14 16:10:36 +00002038
2039 irq_last = platform_get_irq_byname(plf, "IRQ_LAST");
Stephen Boyd802d9bd2019-07-30 11:15:27 -07002040 if (irq_last < 0)
Lee Jonesc18cf6d2013-05-23 16:25:05 +01002041 return irq_last;
Lee Jones4b8ac082013-01-14 16:10:36 +00002042
Mattias Wallind7b9f322010-11-26 13:06:39 +01002043 ab8500_dir = debugfs_create_dir(AB8500_NAME_STRING, NULL);
Mattias Wallin5814fc32010-09-13 16:05:04 +02002044
Greg Kroah-Hartman64e8a9b2019-07-06 18:47:21 +02002045 debugfs_create_file("all-bank-registers", S_IRUGO, ab8500_dir,
2046 &plf->dev, &ab8500_bank_registers_fops);
2047 debugfs_create_file("all-banks", S_IRUGO, ab8500_dir,
2048 &plf->dev, &ab8500_all_banks_fops);
2049 debugfs_create_file("register-bank", (S_IRUGO | S_IWUSR | S_IWGRP),
2050 ab8500_dir, &plf->dev, &ab8500_bank_fops);
2051 debugfs_create_file("register-address", (S_IRUGO | S_IWUSR | S_IWGRP),
2052 ab8500_dir, &plf->dev, &ab8500_address_fops);
2053 debugfs_create_file("register-value", (S_IRUGO | S_IWUSR | S_IWGRP),
2054 ab8500_dir, &plf->dev, &ab8500_val_fops);
2055 debugfs_create_file("irq-subscribe", (S_IRUGO | S_IWUSR | S_IWGRP),
2056 ab8500_dir, &plf->dev, &ab8500_subscribe_fops);
Lee Jones4b8ac082013-01-14 16:10:36 +00002057
Lee Jones9581ae32012-07-06 16:11:50 +02002058 if (is_ab8500(ab8500)) {
2059 debug_ranges = ab8500_debug_ranges;
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01002060 num_interrupt_lines = AB8500_NR_IRQS;
Lee Jones9581ae32012-07-06 16:11:50 +02002061 } else if (is_ab8505(ab8500)) {
2062 debug_ranges = ab8505_debug_ranges;
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01002063 num_interrupt_lines = AB8505_NR_IRQS;
Lee Jones9581ae32012-07-06 16:11:50 +02002064 } else if (is_ab9540(ab8500)) {
2065 debug_ranges = ab8505_debug_ranges;
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01002066 num_interrupt_lines = AB9540_NR_IRQS;
Lee Jones9581ae32012-07-06 16:11:50 +02002067 } else if (is_ab8540(ab8500)) {
Lee Jones971480f2012-11-19 12:20:03 +01002068 debug_ranges = ab8540_debug_ranges;
Lee Jonese436ddf2013-02-26 10:09:41 +00002069 num_interrupt_lines = AB8540_NR_IRQS;
Lee Jones9581ae32012-07-06 16:11:50 +02002070 }
Bengt Jonsson8f0eb432012-02-14 13:01:00 +01002071
Greg Kroah-Hartman64e8a9b2019-07-06 18:47:21 +02002072 debugfs_create_file("interrupts", (S_IRUGO), ab8500_dir, &plf->dev,
2073 &ab8500_interrupts_fops);
2074 debugfs_create_file("irq-unsubscribe", (S_IRUGO | S_IWUSR | S_IWGRP),
2075 ab8500_dir, &plf->dev, &ab8500_unsubscribe_fops);
2076 debugfs_create_file("hwreg", (S_IRUGO | S_IWUSR | S_IWGRP), ab8500_dir,
2077 &plf->dev, &ab8500_hwreg_fops);
2078 debugfs_create_file("all-modem-registers", (S_IRUGO | S_IWUSR | S_IWGRP),
2079 ab8500_dir, &plf->dev, &ab8500_modem_fops);
Lee Jones73482342013-02-26 10:06:55 +00002080
Mattias Wallind7b9f322010-11-26 13:06:39 +01002081 return 0;
Mattias Wallin5814fc32010-09-13 16:05:04 +02002082}
2083
Mattias Wallin5814fc32010-09-13 16:05:04 +02002084static struct platform_driver ab8500_debug_driver = {
Mattias Wallind7b9f322010-11-26 13:06:39 +01002085 .driver = {
2086 .name = "ab8500-debug",
Paul Gortmaker4b3f2b62016-10-29 21:24:37 -04002087 .suppress_bind_attrs = true,
Mattias Wallind7b9f322010-11-26 13:06:39 +01002088 },
2089 .probe = ab8500_debug_probe,
Mattias Wallin5814fc32010-09-13 16:05:04 +02002090};
2091
2092static int __init ab8500_debug_init(void)
2093{
Mattias Wallind7b9f322010-11-26 13:06:39 +01002094 return platform_driver_register(&ab8500_debug_driver);
Mattias Wallin5814fc32010-09-13 16:05:04 +02002095}
Mattias Wallin5814fc32010-09-13 16:05:04 +02002096subsys_initcall(ab8500_debug_init);