2 * Copyright (C) ST-Ericsson SA 2010
4 * Author: Mattias Wallin <mattias.wallin@stericsson.com> for ST-Ericsson.
5 * License Terms: GNU General Public License v2
8 * AB8500 register access
9 * ======================
12 * # echo BANK > <debugfs>/ab8500/register-bank
13 * # echo ADDR > <debugfs>/ab8500/register-address
14 * # cat <debugfs>/ab8500/register-value
17 * # echo BANK > <debugfs>/ab8500/register-bank
18 * # echo ADDR > <debugfs>/ab8500/register-address
19 * # echo VALUE > <debugfs>/ab8500/register-value
21 * read all registers from a bank:
22 * # echo BANK > <debugfs>/ab8500/register-bank
23 * # cat <debugfs>/ab8500/all-bank-register
25 * BANK target AB8500 register bank
26 * ADDR target AB8500 register address
27 * VALUE decimal or 0x-prefixed hexadecimal
30 * User Space notification on AB8500 IRQ
31 * =====================================
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.
37 * subscribe to an AB8500 IRQ:
38 * # echo IRQ > <debugfs>/ab8500/irq-subscribe
40 * unsubscribe from an AB8500 IRQ:
41 * # echo IRQ > <debugfs>/ab8500/irq-unsubscribe
44 * AB8500 register formated read/write access
45 * ==========================================
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]
53 * # echo "CMD [OPTIONS] BANK ADRESS [VALUE]" > $debugfs/ab8500/hwreg
55 * CMD read read access
58 * BANK target reg bank
59 * ADDRESS target reg address
60 * VALUE (write) value to be updated
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
70 * Warning: bit shift operation is applied to bit-mask.
71 * Warning: bit shift direction depends on read or right command.
74 #include <linux/seq_file.h>
75 #include <linux/uaccess.h>
77 #include <linux/module.h>
78 #include <linux/debugfs.h>
79 #include <linux/platform_device.h>
80 #include <linux/interrupt.h>
81 #include <linux/kobject.h>
82 #include <linux/slab.h>
83 #include <linux/irq.h>
85 #include <linux/mfd/abx500.h>
86 #include <linux/mfd/abx500/ab8500.h>
87 #include <linux/mfd/abx500/ab8500-gpadc.h>
89 #ifdef CONFIG_DEBUG_FS
90 #include <linux/string.h>
91 #include <linux/ctype.h>
94 static u32 debug_bank;
95 static u32 debug_address;
97 static int irq_ab8500;
100 static u32 *irq_count;
103 static struct device_attribute **dev_attr;
104 static char **event_name;
106 static u8 avg_sample = SAMPLE_16;
107 static u8 trig_edge = RISING_EDGE;
108 static u8 conv_type = ADC_SW;
109 static u8 trig_timer;
112 * struct ab8500_reg_range
113 * @first: the first address of the range
114 * @last: the last address of the range
115 * @perm: access permissions for the range
117 struct ab8500_reg_range {
124 * struct ab8500_prcmu_ranges
125 * @num_ranges: the number of ranges in the list
126 * @bankid: bank identifier
127 * @range: the list of register ranges
129 struct ab8500_prcmu_ranges {
132 const struct ab8500_reg_range *range;
135 /* hwreg- "mask" and "shift" entries ressources */
137 u32 bank; /* target bank */
138 u32 addr; /* target address */
139 uint fmt; /* format */
140 uint mask; /* read/write mask, applied before any bit shift */
141 int shift; /* bit shift (read:right shift, write:left shift */
143 /* fmt bit #0: 0=hexa, 1=dec */
144 #define REG_FMT_DEC(c) ((c)->fmt & 0x1)
145 #define REG_FMT_HEX(c) (!REG_FMT_DEC(c))
147 static struct hwreg_cfg hwreg_cfg = {
148 .addr = 0, /* default: invalid phys addr */
149 .fmt = 0, /* default: 32bit access, hex output */
150 .mask = 0xFFFFFFFF, /* default: no mask */
151 .shift = 0, /* default: no bit shift */
154 #define AB8500_NAME_STRING "ab8500"
155 #define AB8500_ADC_NAME_STRING "gpadc"
156 #define AB8500_NUM_BANKS 24
158 #define AB8500_REV_REG 0x80
160 static struct ab8500_prcmu_ranges *debug_ranges;
162 static struct ab8500_prcmu_ranges ab8500_debug_ranges[AB8500_NUM_BANKS] = {
167 [AB8500_SYS_CTRL1_BLOCK] = {
169 .range = (struct ab8500_reg_range[]) {
184 [AB8500_SYS_CTRL2_BLOCK] = {
186 .range = (struct ab8500_reg_range[]) {
205 [AB8500_REGU_CTRL1] = {
207 .range = (struct ab8500_reg_range[]) {
222 [AB8500_REGU_CTRL2] = {
224 .range = (struct ab8500_reg_range[]) {
245 /* 0x80-0x8B is SIM registers and should
246 * not be accessed from here */
251 .range = (struct ab8500_reg_range[]) {
264 .range = (struct ab8500_reg_range[]) {
307 [AB8500_ECI_AV_ACC] = {
309 .range = (struct ab8500_reg_range[]) {
322 .range = (struct ab8500_reg_range[]) {
331 .range = (struct ab8500_reg_range[]) {
370 [AB8500_GAS_GAUGE] = {
372 .range = (struct ab8500_reg_range[]) {
387 [AB8500_DEVELOPMENT] = {
389 .range = (struct ab8500_reg_range[]) {
398 .range = (struct ab8500_reg_range[]) {
407 .range = (struct ab8500_reg_range[]) {
414 [AB8500_INTERRUPT] = {
420 .range = (struct ab8500_reg_range[]) {
429 .range = (struct ab8500_reg_range[]) {
480 [AB8500_OTP_EMUL] = {
482 .range = (struct ab8500_reg_range[]) {
491 static struct ab8500_prcmu_ranges ab8505_debug_ranges[AB8500_NUM_BANKS] = {
496 [AB8500_SYS_CTRL1_BLOCK] = {
498 .range = (struct ab8500_reg_range[]) {
521 [AB8500_SYS_CTRL2_BLOCK] = {
523 .range = (struct ab8500_reg_range[]) {
546 [AB8500_REGU_CTRL1] = {
548 .range = (struct ab8500_reg_range[]) {
563 [AB8500_REGU_CTRL2] = {
565 .range = (struct ab8500_reg_range[]) {
590 /* 0x80-0x8B is SIM registers and should
591 * not be accessed from here */
596 .range = (struct ab8500_reg_range[]) {
619 [AB8500_ECI_AV_ACC] = {
621 .range = (struct ab8500_reg_range[]) {
628 [AB8500_RESERVED] = {
634 .range = (struct ab8500_reg_range[]) {
643 .range = (struct ab8500_reg_range[]) {
682 [AB8500_GAS_GAUGE] = {
684 .range = (struct ab8500_reg_range[]) {
701 .range = (struct ab8500_reg_range[]) {
708 [AB8500_INTERRUPT] = {
710 .range = (struct ab8500_reg_range[]) {
735 /* Latch registers should not be read here */
756 /* LatchHier registers should not be read here */
761 .range = (struct ab8500_reg_range[]) {
774 .range = (struct ab8500_reg_range[]) {
809 [AB8500_DEVELOPMENT] = {
811 .range = (struct ab8500_reg_range[]) {
824 .range = (struct ab8500_reg_range[]) {
831 [AB8500_PROD_TEST] = {
835 [AB8500_STE_TEST] = {
839 [AB8500_OTP_EMUL] = {
841 .range = (struct ab8500_reg_range[]) {
850 static struct ab8500_prcmu_ranges ab8540_debug_ranges[AB8500_NUM_BANKS] = {
851 [AB8500_M_FSM_RANK] = {
853 .range = (struct ab8500_reg_range[]) {
860 [AB8500_SYS_CTRL1_BLOCK] = {
862 .range = (struct ab8500_reg_range[]) {
889 [AB8500_SYS_CTRL2_BLOCK] = {
891 .range = (struct ab8500_reg_range[]) {
914 [AB8500_REGU_CTRL1] = {
916 .range = (struct ab8500_reg_range[]) {
935 [AB8500_REGU_CTRL2] = {
937 .range = (struct ab8500_reg_range[]) {
974 .range = (struct ab8500_reg_range[]) {
995 .range = (struct ab8500_reg_range[]) {
1014 [AB8500_ECI_AV_ACC] = {
1016 .range = (struct ab8500_reg_range[]) {
1027 [AB8500_RESERVED] = {
1033 .range = (struct ab8500_reg_range[]) {
1052 [AB8500_CHARGER] = {
1054 .range = (struct ab8500_reg_range[]) {
1097 [AB8500_GAS_GAUGE] = {
1099 .range = (struct ab8500_reg_range[]) {
1116 .range = (struct ab8500_reg_range[]) {
1123 [AB8500_INTERRUPT] = {
1125 .range = (struct ab8500_reg_range[]) {
1138 /* Latch registers should not be read here */
1151 /* LatchHier registers should not be read here */
1156 .range = (struct ab8500_reg_range[]) {
1173 .range = (struct ab8500_reg_range[]) {
1212 [AB8500_DEVELOPMENT] = {
1214 .range = (struct ab8500_reg_range[]) {
1231 .range = (struct ab8500_reg_range[]) {
1246 [AB8500_PROD_TEST] = {
1250 [AB8500_STE_TEST] = {
1254 [AB8500_OTP_EMUL] = {
1256 .range = (struct ab8500_reg_range[]) {
1266 static irqreturn_t ab8500_debug_handler(int irq, void *data)
1269 struct kobject *kobj = (struct kobject *)data;
1270 unsigned int irq_abb = irq - irq_first;
1272 if (irq_abb < num_irqs)
1273 irq_count[irq_abb]++;
1275 * This makes it possible to use poll for events (POLLPRI | POLLERR)
1276 * from userspace on sysfs file named <irq-nr>
1278 sprintf(buf, "%d", irq);
1279 sysfs_notify(kobj, NULL, buf);
1284 /* Prints to seq_file or log_buf */
1285 static int ab8500_registers_print(struct device *dev, u32 bank,
1290 for (i = 0; i < debug_ranges[bank].num_ranges; i++) {
1293 for (reg = debug_ranges[bank].range[i].first;
1294 reg <= debug_ranges[bank].range[i].last;
1299 err = abx500_get_register_interruptible(dev,
1300 (u8)bank, (u8)reg, &value);
1302 dev_err(dev, "ab->read fail %d\n", err);
1307 err = seq_printf(s, " [0x%02X/0x%02X]: 0x%02X\n",
1310 /* Error is not returned here since
1311 * the output is wanted in any case */
1315 printk(KERN_INFO" [0x%02X/0x%02X]: 0x%02X\n",
1323 static int ab8500_print_bank_registers(struct seq_file *s, void *p)
1325 struct device *dev = s->private;
1326 u32 bank = debug_bank;
1328 seq_printf(s, AB8500_NAME_STRING " register values:\n");
1330 seq_printf(s, " bank 0x%02X:\n", bank);
1332 ab8500_registers_print(dev, bank, s);
1336 static int ab8500_registers_open(struct inode *inode, struct file *file)
1338 return single_open(file, ab8500_print_bank_registers, inode->i_private);
1341 static const struct file_operations ab8500_registers_fops = {
1342 .open = ab8500_registers_open,
1344 .llseek = seq_lseek,
1345 .release = single_release,
1346 .owner = THIS_MODULE,
1349 static int ab8500_print_all_banks(struct seq_file *s, void *p)
1351 struct device *dev = s->private;
1355 seq_printf(s, AB8500_NAME_STRING " register values:\n");
1357 for (i = 0; i < AB8500_NUM_BANKS; i++) {
1358 err = seq_printf(s, " bank 0x%02X:\n", i);
1360 ab8500_registers_print(dev, i, s);
1365 /* Dump registers to kernel log */
1366 void ab8500_dump_all_banks(struct device *dev)
1370 printk(KERN_INFO"ab8500 register values:\n");
1372 for (i = 1; i < AB8500_NUM_BANKS; i++) {
1373 printk(KERN_INFO" bank 0x%02X:\n", i);
1374 ab8500_registers_print(dev, i, NULL);
1378 /* Space for 500 registers. */
1379 #define DUMP_MAX_REGS 700
1380 static struct ab8500_register_dump
1385 } ab8500_complete_register_dump[DUMP_MAX_REGS];
1387 extern int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size);
1389 /* This shall only be called upon kernel panic! */
1390 void ab8500_dump_all_banks_to_mem(void)
1396 pr_info("Saving all ABB registers at \"ab8500_complete_register_dump\" "
1397 "for crash analyze.\n");
1399 for (bank = 0; bank < AB8500_NUM_BANKS; bank++) {
1400 for (i = 0; i < debug_ranges[bank].num_ranges; i++) {
1403 for (reg = debug_ranges[bank].range[i].first;
1404 reg <= debug_ranges[bank].range[i].last;
1408 err = prcmu_abb_read(bank, reg, &value, 1);
1413 ab8500_complete_register_dump[r].bank = bank;
1414 ab8500_complete_register_dump[r].reg = reg;
1415 ab8500_complete_register_dump[r].value = value;
1419 if (r >= DUMP_MAX_REGS) {
1420 pr_err("%s: too many register to dump!\n",
1430 pr_info("Saved all ABB registers.\n");
1432 pr_info("Failed to save all ABB registers.\n");
1435 static int ab8500_all_banks_open(struct inode *inode, struct file *file)
1440 err = single_open(file, ab8500_print_all_banks, inode->i_private);
1442 /* Default buf size in seq_read is not enough */
1443 s = (struct seq_file *)file->private_data;
1444 s->size = (PAGE_SIZE * 2);
1445 s->buf = kmalloc(s->size, GFP_KERNEL);
1447 single_release(inode, file);
1454 static const struct file_operations ab8500_all_banks_fops = {
1455 .open = ab8500_all_banks_open,
1457 .llseek = seq_lseek,
1458 .release = single_release,
1459 .owner = THIS_MODULE,
1462 static int ab8500_bank_print(struct seq_file *s, void *p)
1464 return seq_printf(s, "0x%02X\n", debug_bank);
1467 static int ab8500_bank_open(struct inode *inode, struct file *file)
1469 return single_open(file, ab8500_bank_print, inode->i_private);
1472 static ssize_t ab8500_bank_write(struct file *file,
1473 const char __user *user_buf,
1474 size_t count, loff_t *ppos)
1476 struct device *dev = ((struct seq_file *)(file->private_data))->private;
1477 unsigned long user_bank;
1480 err = kstrtoul_from_user(user_buf, count, 0, &user_bank);
1484 if (user_bank >= AB8500_NUM_BANKS) {
1485 dev_err(dev, "debugfs error input > number of banks\n");
1489 debug_bank = user_bank;
1494 static int ab8500_address_print(struct seq_file *s, void *p)
1496 return seq_printf(s, "0x%02X\n", debug_address);
1499 static int ab8500_address_open(struct inode *inode, struct file *file)
1501 return single_open(file, ab8500_address_print, inode->i_private);
1504 static ssize_t ab8500_address_write(struct file *file,
1505 const char __user *user_buf,
1506 size_t count, loff_t *ppos)
1508 struct device *dev = ((struct seq_file *)(file->private_data))->private;
1509 unsigned long user_address;
1512 err = kstrtoul_from_user(user_buf, count, 0, &user_address);
1516 if (user_address > 0xff) {
1517 dev_err(dev, "debugfs error input > 0xff\n");
1520 debug_address = user_address;
1525 static int ab8500_val_print(struct seq_file *s, void *p)
1527 struct device *dev = s->private;
1531 ret = abx500_get_register_interruptible(dev,
1532 (u8)debug_bank, (u8)debug_address, ®value);
1534 dev_err(dev, "abx500_get_reg fail %d, %d\n",
1538 seq_printf(s, "0x%02X\n", regvalue);
1543 static int ab8500_val_open(struct inode *inode, struct file *file)
1545 return single_open(file, ab8500_val_print, inode->i_private);
1548 static ssize_t ab8500_val_write(struct file *file,
1549 const char __user *user_buf,
1550 size_t count, loff_t *ppos)
1552 struct device *dev = ((struct seq_file *)(file->private_data))->private;
1553 unsigned long user_val;
1556 err = kstrtoul_from_user(user_buf, count, 0, &user_val);
1560 if (user_val > 0xff) {
1561 dev_err(dev, "debugfs error input > 0xff\n");
1564 err = abx500_set_register_interruptible(dev,
1565 (u8)debug_bank, debug_address, (u8)user_val);
1567 printk(KERN_ERR "abx500_set_reg failed %d, %d", err, __LINE__);
1577 static u32 num_interrupts[AB8500_MAX_NR_IRQS];
1578 static u32 num_wake_interrupts[AB8500_MAX_NR_IRQS];
1579 static int num_interrupt_lines;
1581 bool __attribute__((weak)) suspend_test_wake_cause_interrupt_is_mine(u32 my_int)
1586 void ab8500_debug_register_interrupt(int line)
1588 if (line < num_interrupt_lines) {
1589 num_interrupts[line]++;
1590 if (suspend_test_wake_cause_interrupt_is_mine(irq_ab8500))
1591 num_wake_interrupts[line]++;
1595 static int ab8500_interrupts_print(struct seq_file *s, void *p)
1599 seq_printf(s, "name: number: number of: wake:\n");
1601 for (line = 0; line < num_interrupt_lines; line++) {
1602 struct irq_desc *desc = irq_to_desc(line + irq_first);
1604 seq_printf(s, "%3i: %6i %4i", line,
1605 num_interrupts[line],
1606 num_wake_interrupts[line]);
1608 if (desc && desc->name)
1609 seq_printf(s, "-%-8s", desc->name);
1610 if (desc && desc->action) {
1611 struct irqaction *action = desc->action;
1613 seq_printf(s, " %s", action->name);
1614 while ((action = action->next) != NULL)
1615 seq_printf(s, ", %s", action->name);
1623 static int ab8500_interrupts_open(struct inode *inode, struct file *file)
1625 return single_open(file, ab8500_interrupts_print, inode->i_private);
1629 * - HWREG DB8500 formated routines
1631 static int ab8500_hwreg_print(struct seq_file *s, void *d)
1633 struct device *dev = s->private;
1637 ret = abx500_get_register_interruptible(dev,
1638 (u8)hwreg_cfg.bank, (u8)hwreg_cfg.addr, ®value);
1640 dev_err(dev, "abx500_get_reg fail %d, %d\n",
1645 if (hwreg_cfg.shift >= 0)
1646 regvalue >>= hwreg_cfg.shift;
1648 regvalue <<= -hwreg_cfg.shift;
1649 regvalue &= hwreg_cfg.mask;
1651 if (REG_FMT_DEC(&hwreg_cfg))
1652 seq_printf(s, "%d\n", regvalue);
1654 seq_printf(s, "0x%02X\n", regvalue);
1658 static int ab8500_hwreg_open(struct inode *inode, struct file *file)
1660 return single_open(file, ab8500_hwreg_print, inode->i_private);
1663 #define AB8500_SUPPLY_CONTROL_CONFIG_1 0x01
1664 #define AB8500_SUPPLY_CONTROL_REG 0x00
1665 #define AB8500_FIRST_SIM_REG 0x80
1666 #define AB8500_LAST_SIM_REG 0x8B
1667 #define AB8505_LAST_SIM_REG 0x8C
1669 static int ab8500_print_modem_registers(struct seq_file *s, void *p)
1671 struct device *dev = s->private;
1672 struct ab8500 *ab8500;
1676 u32 bank = AB8500_REGU_CTRL2;
1677 u32 last_sim_reg = AB8500_LAST_SIM_REG;
1680 ab8500 = dev_get_drvdata(dev->parent);
1681 dev_warn(dev, "WARNING! This operation can interfer with modem side\n"
1682 "and should only be done with care\n");
1684 err = abx500_get_register_interruptible(dev,
1685 AB8500_REGU_CTRL1, AB8500_SUPPLY_CONTROL_REG, &orig_value);
1687 dev_err(dev, "ab->read fail %d\n", err);
1690 /* Config 1 will allow APE side to read SIM registers */
1691 err = abx500_set_register_interruptible(dev,
1692 AB8500_REGU_CTRL1, AB8500_SUPPLY_CONTROL_REG,
1693 AB8500_SUPPLY_CONTROL_CONFIG_1);
1695 dev_err(dev, "ab->write fail %d\n", err);
1699 seq_printf(s, " bank 0x%02X:\n", bank);
1701 if (is_ab9540(ab8500) || is_ab8505(ab8500))
1702 last_sim_reg = AB8505_LAST_SIM_REG;
1704 for (reg = AB8500_FIRST_SIM_REG; reg <= last_sim_reg; reg++) {
1705 err = abx500_get_register_interruptible(dev,
1708 dev_err(dev, "ab->read fail %d\n", err);
1711 err = seq_printf(s, " [0x%02X/0x%02X]: 0x%02X\n",
1714 err = abx500_set_register_interruptible(dev,
1715 AB8500_REGU_CTRL1, AB8500_SUPPLY_CONTROL_REG, orig_value);
1717 dev_err(dev, "ab->write fail %d\n", err);
1723 static int ab8500_modem_open(struct inode *inode, struct file *file)
1725 return single_open(file, ab8500_print_modem_registers, inode->i_private);
1728 static const struct file_operations ab8500_modem_fops = {
1729 .open = ab8500_modem_open,
1731 .llseek = seq_lseek,
1732 .release = single_release,
1733 .owner = THIS_MODULE,
1736 static int ab8500_gpadc_bat_ctrl_print(struct seq_file *s, void *p)
1739 int bat_ctrl_convert;
1740 struct ab8500_gpadc *gpadc;
1742 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1743 bat_ctrl_raw = ab8500_gpadc_read_raw(gpadc, BAT_CTRL,
1744 avg_sample, trig_edge, trig_timer, conv_type);
1745 bat_ctrl_convert = ab8500_gpadc_ad_to_voltage(gpadc,
1746 BAT_CTRL, bat_ctrl_raw);
1748 return seq_printf(s, "%d,0x%X\n",
1749 bat_ctrl_convert, bat_ctrl_raw);
1752 static int ab8500_gpadc_bat_ctrl_open(struct inode *inode, struct file *file)
1754 return single_open(file, ab8500_gpadc_bat_ctrl_print, inode->i_private);
1757 static const struct file_operations ab8500_gpadc_bat_ctrl_fops = {
1758 .open = ab8500_gpadc_bat_ctrl_open,
1760 .llseek = seq_lseek,
1761 .release = single_release,
1762 .owner = THIS_MODULE,
1765 static int ab8500_gpadc_btemp_ball_print(struct seq_file *s, void *p)
1768 int btemp_ball_convert;
1769 struct ab8500_gpadc *gpadc;
1771 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1772 btemp_ball_raw = ab8500_gpadc_read_raw(gpadc, BTEMP_BALL,
1773 avg_sample, trig_edge, trig_timer, conv_type);
1774 btemp_ball_convert = ab8500_gpadc_ad_to_voltage(gpadc, BTEMP_BALL,
1777 return seq_printf(s,
1778 "%d,0x%X\n", btemp_ball_convert, btemp_ball_raw);
1781 static int ab8500_gpadc_btemp_ball_open(struct inode *inode,
1784 return single_open(file, ab8500_gpadc_btemp_ball_print, inode->i_private);
1787 static const struct file_operations ab8500_gpadc_btemp_ball_fops = {
1788 .open = ab8500_gpadc_btemp_ball_open,
1790 .llseek = seq_lseek,
1791 .release = single_release,
1792 .owner = THIS_MODULE,
1795 static int ab8500_gpadc_main_charger_v_print(struct seq_file *s, void *p)
1797 int main_charger_v_raw;
1798 int main_charger_v_convert;
1799 struct ab8500_gpadc *gpadc;
1801 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1802 main_charger_v_raw = ab8500_gpadc_read_raw(gpadc, MAIN_CHARGER_V,
1803 avg_sample, trig_edge, trig_timer, conv_type);
1804 main_charger_v_convert = ab8500_gpadc_ad_to_voltage(gpadc,
1805 MAIN_CHARGER_V, main_charger_v_raw);
1807 return seq_printf(s, "%d,0x%X\n",
1808 main_charger_v_convert, main_charger_v_raw);
1811 static int ab8500_gpadc_main_charger_v_open(struct inode *inode,
1814 return single_open(file, ab8500_gpadc_main_charger_v_print,
1818 static const struct file_operations ab8500_gpadc_main_charger_v_fops = {
1819 .open = ab8500_gpadc_main_charger_v_open,
1821 .llseek = seq_lseek,
1822 .release = single_release,
1823 .owner = THIS_MODULE,
1826 static int ab8500_gpadc_acc_detect1_print(struct seq_file *s, void *p)
1828 int acc_detect1_raw;
1829 int acc_detect1_convert;
1830 struct ab8500_gpadc *gpadc;
1832 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1833 acc_detect1_raw = ab8500_gpadc_read_raw(gpadc, ACC_DETECT1,
1834 avg_sample, trig_edge, trig_timer, conv_type);
1835 acc_detect1_convert = ab8500_gpadc_ad_to_voltage(gpadc, ACC_DETECT1,
1838 return seq_printf(s, "%d,0x%X\n",
1839 acc_detect1_convert, acc_detect1_raw);
1842 static int ab8500_gpadc_acc_detect1_open(struct inode *inode,
1845 return single_open(file, ab8500_gpadc_acc_detect1_print,
1849 static const struct file_operations ab8500_gpadc_acc_detect1_fops = {
1850 .open = ab8500_gpadc_acc_detect1_open,
1852 .llseek = seq_lseek,
1853 .release = single_release,
1854 .owner = THIS_MODULE,
1857 static int ab8500_gpadc_acc_detect2_print(struct seq_file *s, void *p)
1859 int acc_detect2_raw;
1860 int acc_detect2_convert;
1861 struct ab8500_gpadc *gpadc;
1863 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1864 acc_detect2_raw = ab8500_gpadc_read_raw(gpadc, ACC_DETECT2,
1865 avg_sample, trig_edge, trig_timer, conv_type);
1866 acc_detect2_convert = ab8500_gpadc_ad_to_voltage(gpadc,
1867 ACC_DETECT2, acc_detect2_raw);
1869 return seq_printf(s, "%d,0x%X\n",
1870 acc_detect2_convert, acc_detect2_raw);
1873 static int ab8500_gpadc_acc_detect2_open(struct inode *inode,
1876 return single_open(file, ab8500_gpadc_acc_detect2_print,
1880 static const struct file_operations ab8500_gpadc_acc_detect2_fops = {
1881 .open = ab8500_gpadc_acc_detect2_open,
1883 .llseek = seq_lseek,
1884 .release = single_release,
1885 .owner = THIS_MODULE,
1888 static int ab8500_gpadc_aux1_print(struct seq_file *s, void *p)
1892 struct ab8500_gpadc *gpadc;
1894 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1895 aux1_raw = ab8500_gpadc_read_raw(gpadc, ADC_AUX1,
1896 avg_sample, trig_edge, trig_timer, conv_type);
1897 aux1_convert = ab8500_gpadc_ad_to_voltage(gpadc, ADC_AUX1,
1900 return seq_printf(s, "%d,0x%X\n",
1901 aux1_convert, aux1_raw);
1904 static int ab8500_gpadc_aux1_open(struct inode *inode, struct file *file)
1906 return single_open(file, ab8500_gpadc_aux1_print, inode->i_private);
1909 static const struct file_operations ab8500_gpadc_aux1_fops = {
1910 .open = ab8500_gpadc_aux1_open,
1912 .llseek = seq_lseek,
1913 .release = single_release,
1914 .owner = THIS_MODULE,
1917 static int ab8500_gpadc_aux2_print(struct seq_file *s, void *p)
1921 struct ab8500_gpadc *gpadc;
1923 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1924 aux2_raw = ab8500_gpadc_read_raw(gpadc, ADC_AUX2,
1925 avg_sample, trig_edge, trig_timer, conv_type);
1926 aux2_convert = ab8500_gpadc_ad_to_voltage(gpadc, ADC_AUX2,
1929 return seq_printf(s, "%d,0x%X\n",
1930 aux2_convert, aux2_raw);
1933 static int ab8500_gpadc_aux2_open(struct inode *inode, struct file *file)
1935 return single_open(file, ab8500_gpadc_aux2_print, inode->i_private);
1938 static const struct file_operations ab8500_gpadc_aux2_fops = {
1939 .open = ab8500_gpadc_aux2_open,
1941 .llseek = seq_lseek,
1942 .release = single_release,
1943 .owner = THIS_MODULE,
1946 static int ab8500_gpadc_main_bat_v_print(struct seq_file *s, void *p)
1949 int main_bat_v_convert;
1950 struct ab8500_gpadc *gpadc;
1952 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1953 main_bat_v_raw = ab8500_gpadc_read_raw(gpadc, MAIN_BAT_V,
1954 avg_sample, trig_edge, trig_timer, conv_type);
1955 main_bat_v_convert = ab8500_gpadc_ad_to_voltage(gpadc, MAIN_BAT_V,
1958 return seq_printf(s, "%d,0x%X\n",
1959 main_bat_v_convert, main_bat_v_raw);
1962 static int ab8500_gpadc_main_bat_v_open(struct inode *inode,
1965 return single_open(file, ab8500_gpadc_main_bat_v_print, inode->i_private);
1968 static const struct file_operations ab8500_gpadc_main_bat_v_fops = {
1969 .open = ab8500_gpadc_main_bat_v_open,
1971 .llseek = seq_lseek,
1972 .release = single_release,
1973 .owner = THIS_MODULE,
1976 static int ab8500_gpadc_vbus_v_print(struct seq_file *s, void *p)
1980 struct ab8500_gpadc *gpadc;
1982 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1983 vbus_v_raw = ab8500_gpadc_read_raw(gpadc, VBUS_V,
1984 avg_sample, trig_edge, trig_timer, conv_type);
1985 vbus_v_convert = ab8500_gpadc_ad_to_voltage(gpadc, VBUS_V,
1988 return seq_printf(s, "%d,0x%X\n",
1989 vbus_v_convert, vbus_v_raw);
1992 static int ab8500_gpadc_vbus_v_open(struct inode *inode, struct file *file)
1994 return single_open(file, ab8500_gpadc_vbus_v_print, inode->i_private);
1997 static const struct file_operations ab8500_gpadc_vbus_v_fops = {
1998 .open = ab8500_gpadc_vbus_v_open,
2000 .llseek = seq_lseek,
2001 .release = single_release,
2002 .owner = THIS_MODULE,
2005 static int ab8500_gpadc_main_charger_c_print(struct seq_file *s, void *p)
2007 int main_charger_c_raw;
2008 int main_charger_c_convert;
2009 struct ab8500_gpadc *gpadc;
2011 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2012 main_charger_c_raw = ab8500_gpadc_read_raw(gpadc, MAIN_CHARGER_C,
2013 avg_sample, trig_edge, trig_timer, conv_type);
2014 main_charger_c_convert = ab8500_gpadc_ad_to_voltage(gpadc,
2015 MAIN_CHARGER_C, main_charger_c_raw);
2017 return seq_printf(s, "%d,0x%X\n",
2018 main_charger_c_convert, main_charger_c_raw);
2021 static int ab8500_gpadc_main_charger_c_open(struct inode *inode,
2024 return single_open(file, ab8500_gpadc_main_charger_c_print,
2028 static const struct file_operations ab8500_gpadc_main_charger_c_fops = {
2029 .open = ab8500_gpadc_main_charger_c_open,
2031 .llseek = seq_lseek,
2032 .release = single_release,
2033 .owner = THIS_MODULE,
2036 static int ab8500_gpadc_usb_charger_c_print(struct seq_file *s, void *p)
2038 int usb_charger_c_raw;
2039 int usb_charger_c_convert;
2040 struct ab8500_gpadc *gpadc;
2042 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2043 usb_charger_c_raw = ab8500_gpadc_read_raw(gpadc, USB_CHARGER_C,
2044 avg_sample, trig_edge, trig_timer, conv_type);
2045 usb_charger_c_convert = ab8500_gpadc_ad_to_voltage(gpadc,
2046 USB_CHARGER_C, usb_charger_c_raw);
2048 return seq_printf(s, "%d,0x%X\n",
2049 usb_charger_c_convert, usb_charger_c_raw);
2052 static int ab8500_gpadc_usb_charger_c_open(struct inode *inode,
2055 return single_open(file, ab8500_gpadc_usb_charger_c_print,
2059 static const struct file_operations ab8500_gpadc_usb_charger_c_fops = {
2060 .open = ab8500_gpadc_usb_charger_c_open,
2062 .llseek = seq_lseek,
2063 .release = single_release,
2064 .owner = THIS_MODULE,
2067 static int ab8500_gpadc_bk_bat_v_print(struct seq_file *s, void *p)
2070 int bk_bat_v_convert;
2071 struct ab8500_gpadc *gpadc;
2073 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2074 bk_bat_v_raw = ab8500_gpadc_read_raw(gpadc, BK_BAT_V,
2075 avg_sample, trig_edge, trig_timer, conv_type);
2076 bk_bat_v_convert = ab8500_gpadc_ad_to_voltage(gpadc,
2077 BK_BAT_V, bk_bat_v_raw);
2079 return seq_printf(s, "%d,0x%X\n",
2080 bk_bat_v_convert, bk_bat_v_raw);
2083 static int ab8500_gpadc_bk_bat_v_open(struct inode *inode, struct file *file)
2085 return single_open(file, ab8500_gpadc_bk_bat_v_print, inode->i_private);
2088 static const struct file_operations ab8500_gpadc_bk_bat_v_fops = {
2089 .open = ab8500_gpadc_bk_bat_v_open,
2091 .llseek = seq_lseek,
2092 .release = single_release,
2093 .owner = THIS_MODULE,
2096 static int ab8500_gpadc_die_temp_print(struct seq_file *s, void *p)
2099 int die_temp_convert;
2100 struct ab8500_gpadc *gpadc;
2102 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2103 die_temp_raw = ab8500_gpadc_read_raw(gpadc, DIE_TEMP,
2104 avg_sample, trig_edge, trig_timer, conv_type);
2105 die_temp_convert = ab8500_gpadc_ad_to_voltage(gpadc, DIE_TEMP,
2108 return seq_printf(s, "%d,0x%X\n",
2109 die_temp_convert, die_temp_raw);
2112 static int ab8500_gpadc_die_temp_open(struct inode *inode, struct file *file)
2114 return single_open(file, ab8500_gpadc_die_temp_print, inode->i_private);
2117 static const struct file_operations ab8500_gpadc_die_temp_fops = {
2118 .open = ab8500_gpadc_die_temp_open,
2120 .llseek = seq_lseek,
2121 .release = single_release,
2122 .owner = THIS_MODULE,
2125 static int ab8500_gpadc_usb_id_print(struct seq_file *s, void *p)
2129 struct ab8500_gpadc *gpadc;
2131 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2132 usb_id_raw = ab8500_gpadc_read_raw(gpadc, USB_ID,
2133 avg_sample, trig_edge, trig_timer, conv_type);
2134 usb_id_convert = ab8500_gpadc_ad_to_voltage(gpadc, USB_ID,
2137 return seq_printf(s, "%d,0x%X\n",
2138 usb_id_convert, usb_id_raw);
2141 static int ab8500_gpadc_usb_id_open(struct inode *inode, struct file *file)
2143 return single_open(file, ab8500_gpadc_usb_id_print, inode->i_private);
2146 static const struct file_operations ab8500_gpadc_usb_id_fops = {
2147 .open = ab8500_gpadc_usb_id_open,
2149 .llseek = seq_lseek,
2150 .release = single_release,
2151 .owner = THIS_MODULE,
2154 static int ab8540_gpadc_xtal_temp_print(struct seq_file *s, void *p)
2157 int xtal_temp_convert;
2158 struct ab8500_gpadc *gpadc;
2160 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2161 xtal_temp_raw = ab8500_gpadc_read_raw(gpadc, XTAL_TEMP,
2162 avg_sample, trig_edge, trig_timer, conv_type);
2163 xtal_temp_convert = ab8500_gpadc_ad_to_voltage(gpadc, XTAL_TEMP,
2166 return seq_printf(s, "%d,0x%X\n",
2167 xtal_temp_convert, xtal_temp_raw);
2170 static int ab8540_gpadc_xtal_temp_open(struct inode *inode, struct file *file)
2172 return single_open(file, ab8540_gpadc_xtal_temp_print,
2176 static const struct file_operations ab8540_gpadc_xtal_temp_fops = {
2177 .open = ab8540_gpadc_xtal_temp_open,
2179 .llseek = seq_lseek,
2180 .release = single_release,
2181 .owner = THIS_MODULE,
2184 static int ab8540_gpadc_vbat_true_meas_print(struct seq_file *s, void *p)
2186 int vbat_true_meas_raw;
2187 int vbat_true_meas_convert;
2188 struct ab8500_gpadc *gpadc;
2190 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2191 vbat_true_meas_raw = ab8500_gpadc_read_raw(gpadc, VBAT_TRUE_MEAS,
2192 avg_sample, trig_edge, trig_timer, conv_type);
2193 vbat_true_meas_convert = ab8500_gpadc_ad_to_voltage(gpadc, VBAT_TRUE_MEAS,
2194 vbat_true_meas_raw);
2196 return seq_printf(s, "%d,0x%X\n",
2197 vbat_true_meas_convert, vbat_true_meas_raw);
2200 static int ab8540_gpadc_vbat_true_meas_open(struct inode *inode,
2203 return single_open(file, ab8540_gpadc_vbat_true_meas_print,
2207 static const struct file_operations ab8540_gpadc_vbat_true_meas_fops = {
2208 .open = ab8540_gpadc_vbat_true_meas_open,
2210 .llseek = seq_lseek,
2211 .release = single_release,
2212 .owner = THIS_MODULE,
2215 static int ab8540_gpadc_bat_ctrl_and_ibat_print(struct seq_file *s, void *p)
2218 int bat_ctrl_convert;
2221 struct ab8500_gpadc *gpadc;
2223 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2224 bat_ctrl_raw = ab8500_gpadc_double_read_raw(gpadc, BAT_CTRL_AND_IBAT,
2225 avg_sample, trig_edge, trig_timer, conv_type, &ibat_raw);
2227 bat_ctrl_convert = ab8500_gpadc_ad_to_voltage(gpadc, BAT_CTRL,
2229 ibat_convert = ab8500_gpadc_ad_to_voltage(gpadc, IBAT_VIRTUAL_CHANNEL,
2232 return seq_printf(s, "%d,0x%X\n" "%d,0x%X\n",
2233 bat_ctrl_convert, bat_ctrl_raw,
2234 ibat_convert, ibat_raw);
2237 static int ab8540_gpadc_bat_ctrl_and_ibat_open(struct inode *inode,
2240 return single_open(file, ab8540_gpadc_bat_ctrl_and_ibat_print,
2244 static const struct file_operations ab8540_gpadc_bat_ctrl_and_ibat_fops = {
2245 .open = ab8540_gpadc_bat_ctrl_and_ibat_open,
2247 .llseek = seq_lseek,
2248 .release = single_release,
2249 .owner = THIS_MODULE,
2252 static int ab8540_gpadc_vbat_meas_and_ibat_print(struct seq_file *s, void *p)
2255 int vbat_meas_convert;
2258 struct ab8500_gpadc *gpadc;
2260 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2261 vbat_meas_raw = ab8500_gpadc_double_read_raw(gpadc, VBAT_MEAS_AND_IBAT,
2262 avg_sample, trig_edge, trig_timer, conv_type, &ibat_raw);
2263 vbat_meas_convert = ab8500_gpadc_ad_to_voltage(gpadc, MAIN_BAT_V,
2265 ibat_convert = ab8500_gpadc_ad_to_voltage(gpadc, IBAT_VIRTUAL_CHANNEL,
2268 return seq_printf(s, "%d,0x%X\n" "%d,0x%X\n",
2269 vbat_meas_convert, vbat_meas_raw,
2270 ibat_convert, ibat_raw);
2273 static int ab8540_gpadc_vbat_meas_and_ibat_open(struct inode *inode,
2276 return single_open(file, ab8540_gpadc_vbat_meas_and_ibat_print,
2280 static const struct file_operations ab8540_gpadc_vbat_meas_and_ibat_fops = {
2281 .open = ab8540_gpadc_vbat_meas_and_ibat_open,
2283 .llseek = seq_lseek,
2284 .release = single_release,
2285 .owner = THIS_MODULE,
2288 static int ab8540_gpadc_vbat_true_meas_and_ibat_print(struct seq_file *s, void *p)
2290 int vbat_true_meas_raw;
2291 int vbat_true_meas_convert;
2294 struct ab8500_gpadc *gpadc;
2296 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2297 vbat_true_meas_raw = ab8500_gpadc_double_read_raw(gpadc,
2298 VBAT_TRUE_MEAS_AND_IBAT, avg_sample, trig_edge,
2299 trig_timer, conv_type, &ibat_raw);
2300 vbat_true_meas_convert = ab8500_gpadc_ad_to_voltage(gpadc,
2301 VBAT_TRUE_MEAS, vbat_true_meas_raw);
2302 ibat_convert = ab8500_gpadc_ad_to_voltage(gpadc, IBAT_VIRTUAL_CHANNEL,
2305 return seq_printf(s, "%d,0x%X\n" "%d,0x%X\n",
2306 vbat_true_meas_convert, vbat_true_meas_raw,
2307 ibat_convert, ibat_raw);
2310 static int ab8540_gpadc_vbat_true_meas_and_ibat_open(struct inode *inode,
2313 return single_open(file, ab8540_gpadc_vbat_true_meas_and_ibat_print,
2317 static const struct file_operations ab8540_gpadc_vbat_true_meas_and_ibat_fops = {
2318 .open = ab8540_gpadc_vbat_true_meas_and_ibat_open,
2320 .llseek = seq_lseek,
2321 .release = single_release,
2322 .owner = THIS_MODULE,
2325 static int ab8540_gpadc_bat_temp_and_ibat_print(struct seq_file *s, void *p)
2328 int bat_temp_convert;
2331 struct ab8500_gpadc *gpadc;
2333 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2334 bat_temp_raw = ab8500_gpadc_double_read_raw(gpadc, BAT_TEMP_AND_IBAT,
2335 avg_sample, trig_edge, trig_timer, conv_type, &ibat_raw);
2336 bat_temp_convert = ab8500_gpadc_ad_to_voltage(gpadc, BTEMP_BALL,
2338 ibat_convert = ab8500_gpadc_ad_to_voltage(gpadc, IBAT_VIRTUAL_CHANNEL,
2341 return seq_printf(s, "%d,0x%X\n" "%d,0x%X\n",
2342 bat_temp_convert, bat_temp_raw,
2343 ibat_convert, ibat_raw);
2346 static int ab8540_gpadc_bat_temp_and_ibat_open(struct inode *inode,
2349 return single_open(file, ab8540_gpadc_bat_temp_and_ibat_print,
2353 static const struct file_operations ab8540_gpadc_bat_temp_and_ibat_fops = {
2354 .open = ab8540_gpadc_bat_temp_and_ibat_open,
2356 .llseek = seq_lseek,
2357 .release = single_release,
2358 .owner = THIS_MODULE,
2361 static int ab8540_gpadc_otp_cal_print(struct seq_file *s, void *p)
2363 struct ab8500_gpadc *gpadc;
2364 u16 vmain_l, vmain_h, btemp_l, btemp_h;
2365 u16 vbat_l, vbat_h, ibat_l, ibat_h;
2367 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
2368 ab8540_gpadc_get_otp(gpadc, &vmain_l, &vmain_h, &btemp_l, &btemp_h,
2369 &vbat_l, &vbat_h, &ibat_l, &ibat_h);
2370 return seq_printf(s, "VMAIN_L:0x%X\n"
2378 vmain_l, vmain_h, btemp_l, btemp_h, vbat_l, vbat_h, ibat_l, ibat_h);
2381 static int ab8540_gpadc_otp_cal_open(struct inode *inode, struct file *file)
2383 return single_open(file, ab8540_gpadc_otp_cal_print, inode->i_private);
2386 static const struct file_operations ab8540_gpadc_otp_calib_fops = {
2387 .open = ab8540_gpadc_otp_cal_open,
2389 .llseek = seq_lseek,
2390 .release = single_release,
2391 .owner = THIS_MODULE,
2394 static int ab8500_gpadc_avg_sample_print(struct seq_file *s, void *p)
2396 return seq_printf(s, "%d\n", avg_sample);
2399 static int ab8500_gpadc_avg_sample_open(struct inode *inode, struct file *file)
2401 return single_open(file, ab8500_gpadc_avg_sample_print,
2405 static ssize_t ab8500_gpadc_avg_sample_write(struct file *file,
2406 const char __user *user_buf,
2407 size_t count, loff_t *ppos)
2409 struct device *dev = ((struct seq_file *)(file->private_data))->private;
2410 unsigned long user_avg_sample;
2413 err = kstrtoul_from_user(user_buf, count, 0, &user_avg_sample);
2417 if ((user_avg_sample == SAMPLE_1) || (user_avg_sample == SAMPLE_4)
2418 || (user_avg_sample == SAMPLE_8)
2419 || (user_avg_sample == SAMPLE_16)) {
2420 avg_sample = (u8) user_avg_sample;
2422 dev_err(dev, "debugfs error input: "
2423 "should be egal to 1, 4, 8 or 16\n");
2430 static const struct file_operations ab8500_gpadc_avg_sample_fops = {
2431 .open = ab8500_gpadc_avg_sample_open,
2433 .write = ab8500_gpadc_avg_sample_write,
2434 .llseek = seq_lseek,
2435 .release = single_release,
2436 .owner = THIS_MODULE,
2439 static int ab8500_gpadc_trig_edge_print(struct seq_file *s, void *p)
2441 return seq_printf(s, "%d\n", trig_edge);
2444 static int ab8500_gpadc_trig_edge_open(struct inode *inode, struct file *file)
2446 return single_open(file, ab8500_gpadc_trig_edge_print,
2450 static ssize_t ab8500_gpadc_trig_edge_write(struct file *file,
2451 const char __user *user_buf,
2452 size_t count, loff_t *ppos)
2454 struct device *dev = ((struct seq_file *)(file->private_data))->private;
2455 unsigned long user_trig_edge;
2458 err = kstrtoul_from_user(user_buf, count, 0, &user_trig_edge);
2462 if ((user_trig_edge == RISING_EDGE)
2463 || (user_trig_edge == FALLING_EDGE)) {
2464 trig_edge = (u8) user_trig_edge;
2466 dev_err(dev, "Wrong input:\n"
2467 "Enter 0. Rising edge\n"
2468 "Enter 1. Falling edge\n");
2475 static const struct file_operations ab8500_gpadc_trig_edge_fops = {
2476 .open = ab8500_gpadc_trig_edge_open,
2478 .write = ab8500_gpadc_trig_edge_write,
2479 .llseek = seq_lseek,
2480 .release = single_release,
2481 .owner = THIS_MODULE,
2484 static int ab8500_gpadc_trig_timer_print(struct seq_file *s, void *p)
2486 return seq_printf(s, "%d\n", trig_timer);
2489 static int ab8500_gpadc_trig_timer_open(struct inode *inode, struct file *file)
2491 return single_open(file, ab8500_gpadc_trig_timer_print,
2495 static ssize_t ab8500_gpadc_trig_timer_write(struct file *file,
2496 const char __user *user_buf,
2497 size_t count, loff_t *ppos)
2499 struct device *dev = ((struct seq_file *)(file->private_data))->private;
2500 unsigned long user_trig_timer;
2503 err = kstrtoul_from_user(user_buf, count, 0, &user_trig_timer);
2507 if ((user_trig_timer >= 0) && (user_trig_timer <= 255)) {
2508 trig_timer = (u8) user_trig_timer;
2510 dev_err(dev, "debugfs error input: "
2511 "should be beetween 0 to 255\n");
2518 static const struct file_operations ab8500_gpadc_trig_timer_fops = {
2519 .open = ab8500_gpadc_trig_timer_open,
2521 .write = ab8500_gpadc_trig_timer_write,
2522 .llseek = seq_lseek,
2523 .release = single_release,
2524 .owner = THIS_MODULE,
2527 static int ab8500_gpadc_conv_type_print(struct seq_file *s, void *p)
2529 return seq_printf(s, "%d\n", conv_type);
2532 static int ab8500_gpadc_conv_type_open(struct inode *inode, struct file *file)
2534 return single_open(file, ab8500_gpadc_conv_type_print,
2538 static ssize_t ab8500_gpadc_conv_type_write(struct file *file,
2539 const char __user *user_buf,
2540 size_t count, loff_t *ppos)
2542 struct device *dev = ((struct seq_file *)(file->private_data))->private;
2543 unsigned long user_conv_type;
2546 err = kstrtoul_from_user(user_buf, count, 0, &user_conv_type);
2550 if ((user_conv_type == ADC_SW)
2551 || (user_conv_type == ADC_HW)) {
2552 conv_type = (u8) user_conv_type;
2554 dev_err(dev, "Wrong input:\n"
2555 "Enter 0. ADC SW conversion\n"
2556 "Enter 1. ADC HW conversion\n");
2563 static const struct file_operations ab8500_gpadc_conv_type_fops = {
2564 .open = ab8500_gpadc_conv_type_open,
2566 .write = ab8500_gpadc_conv_type_write,
2567 .llseek = seq_lseek,
2568 .release = single_release,
2569 .owner = THIS_MODULE,
2573 * return length of an ASCII numerical value, 0 is string is not a
2575 * string shall start at value 1st char.
2576 * string can be tailed with \0 or space or newline chars only.
2577 * value can be decimal or hexadecimal (prefixed 0x or 0X).
2579 static int strval_len(char *b)
2582 if ((*s == '0') && ((*(s+1) == 'x') || (*(s+1) == 'X'))) {
2584 for (; *s && (*s != ' ') && (*s != '\n'); s++) {
2591 for (; *s && (*s != ' ') && (*s != '\n'); s++) {
2600 * parse hwreg input data.
2601 * update global hwreg_cfg only if input data syntax is ok.
2603 static ssize_t hwreg_common_write(char *b, struct hwreg_cfg *cfg,
2606 uint write, val = 0;
2609 struct hwreg_cfg loc = {
2610 .bank = 0, /* default: invalid phys addr */
2611 .addr = 0, /* default: invalid phys addr */
2612 .fmt = 0, /* default: 32bit access, hex output */
2613 .mask = 0xFFFFFFFF, /* default: no mask */
2614 .shift = 0, /* default: no bit shift */
2617 /* read or write ? */
2618 if (!strncmp(b, "read ", 5)) {
2621 } else if (!strncmp(b, "write ", 6)) {
2627 /* OPTIONS -l|-w|-b -s -m -o */
2628 while ((*b == ' ') || (*b == '-')) {
2629 if (*(b-1) != ' ') {
2633 if ((!strncmp(b, "-d ", 3)) ||
2634 (!strncmp(b, "-dec ", 5))) {
2635 b += (*(b+2) == ' ') ? 3 : 5;
2637 } else if ((!strncmp(b, "-h ", 3)) ||
2638 (!strncmp(b, "-hex ", 5))) {
2639 b += (*(b+2) == ' ') ? 3 : 5;
2641 } else if ((!strncmp(b, "-m ", 3)) ||
2642 (!strncmp(b, "-mask ", 6))) {
2643 b += (*(b+2) == ' ') ? 3 : 6;
2644 if (strval_len(b) == 0)
2646 loc.mask = simple_strtoul(b, &b, 0);
2647 } else if ((!strncmp(b, "-s ", 3)) ||
2648 (!strncmp(b, "-shift ", 7))) {
2649 b += (*(b+2) == ' ') ? 3 : 7;
2650 if (strval_len(b) == 0)
2652 loc.shift = simple_strtol(b, &b, 0);
2657 /* get arg BANK and ADDRESS */
2658 if (strval_len(b) == 0)
2660 loc.bank = simple_strtoul(b, &b, 0);
2663 if (strval_len(b) == 0)
2665 loc.addr = simple_strtoul(b, &b, 0);
2670 if (strval_len(b) == 0)
2672 val = simple_strtoul(b, &b, 0);
2675 /* args are ok, update target cfg (mainly for read) */
2678 #ifdef ABB_HWREG_DEBUG
2679 pr_warn("HWREG request: %s, %s, addr=0x%08X, mask=0x%X, shift=%d"
2680 "value=0x%X\n", (write) ? "write" : "read",
2681 REG_FMT_DEC(cfg) ? "decimal" : "hexa",
2682 cfg->addr, cfg->mask, cfg->shift, val);
2688 ret = abx500_get_register_interruptible(dev,
2689 (u8)cfg->bank, (u8)cfg->addr, ®value);
2691 dev_err(dev, "abx500_get_reg fail %d, %d\n",
2696 if (cfg->shift >= 0) {
2697 regvalue &= ~(cfg->mask << (cfg->shift));
2698 val = (val & cfg->mask) << (cfg->shift);
2700 regvalue &= ~(cfg->mask >> (-cfg->shift));
2701 val = (val & cfg->mask) >> (-cfg->shift);
2703 val = val | regvalue;
2705 ret = abx500_set_register_interruptible(dev,
2706 (u8)cfg->bank, (u8)cfg->addr, (u8)val);
2708 pr_err("abx500_set_reg failed %d, %d", ret, __LINE__);
2715 static ssize_t ab8500_hwreg_write(struct file *file,
2716 const char __user *user_buf, size_t count, loff_t *ppos)
2718 struct device *dev = ((struct seq_file *)(file->private_data))->private;
2722 /* Get userspace string and assure termination */
2723 buf_size = min(count, (sizeof(buf)-1));
2724 if (copy_from_user(buf, user_buf, buf_size))
2728 /* get args and process */
2729 ret = hwreg_common_write(buf, &hwreg_cfg, dev);
2730 return (ret) ? ret : buf_size;
2734 * - irq subscribe/unsubscribe stuff
2736 static int ab8500_subscribe_unsubscribe_print(struct seq_file *s, void *p)
2738 seq_printf(s, "%d\n", irq_first);
2743 static int ab8500_subscribe_unsubscribe_open(struct inode *inode,
2746 return single_open(file, ab8500_subscribe_unsubscribe_print,
2751 * Userspace should use poll() on this file. When an event occur
2752 * the blocking poll will be released.
2754 static ssize_t show_irq(struct device *dev,
2755 struct device_attribute *attr, char *buf)
2758 unsigned int irq_index;
2761 err = kstrtoul(attr->attr.name, 0, &name);
2765 irq_index = name - irq_first;
2766 if (irq_index >= num_irqs)
2769 return sprintf(buf, "%u\n", irq_count[irq_index]);
2772 static ssize_t ab8500_subscribe_write(struct file *file,
2773 const char __user *user_buf,
2774 size_t count, loff_t *ppos)
2776 struct device *dev = ((struct seq_file *)(file->private_data))->private;
2777 unsigned long user_val;
2779 unsigned int irq_index;
2781 err = kstrtoul_from_user(user_buf, count, 0, &user_val);
2785 if (user_val < irq_first) {
2786 dev_err(dev, "debugfs error input < %d\n", irq_first);
2789 if (user_val > irq_last) {
2790 dev_err(dev, "debugfs error input > %d\n", irq_last);
2794 irq_index = user_val - irq_first;
2795 if (irq_index >= num_irqs)
2799 * This will create a sysfs file named <irq-nr> which userspace can
2800 * use to select or poll and get the AB8500 events
2802 dev_attr[irq_index] = kmalloc(sizeof(struct device_attribute),
2804 if (!dev_attr[irq_index])
2807 event_name[irq_index] = kmalloc(count, GFP_KERNEL);
2808 if (!event_name[irq_index])
2811 sprintf(event_name[irq_index], "%lu", user_val);
2812 dev_attr[irq_index]->show = show_irq;
2813 dev_attr[irq_index]->store = NULL;
2814 dev_attr[irq_index]->attr.name = event_name[irq_index];
2815 dev_attr[irq_index]->attr.mode = S_IRUGO;
2816 err = sysfs_create_file(&dev->kobj, &dev_attr[irq_index]->attr);
2818 printk(KERN_ERR "sysfs_create_file failed %d\n", err);
2822 err = request_threaded_irq(user_val, NULL, ab8500_debug_handler,
2823 IRQF_SHARED | IRQF_NO_SUSPEND,
2824 "ab8500-debug", &dev->kobj);
2826 printk(KERN_ERR "request_threaded_irq failed %d, %lu\n",
2828 sysfs_remove_file(&dev->kobj, &dev_attr[irq_index]->attr);
2835 static ssize_t ab8500_unsubscribe_write(struct file *file,
2836 const char __user *user_buf,
2837 size_t count, loff_t *ppos)
2839 struct device *dev = ((struct seq_file *)(file->private_data))->private;
2840 unsigned long user_val;
2842 unsigned int irq_index;
2844 err = kstrtoul_from_user(user_buf, count, 0, &user_val);
2848 if (user_val < irq_first) {
2849 dev_err(dev, "debugfs error input < %d\n", irq_first);
2852 if (user_val > irq_last) {
2853 dev_err(dev, "debugfs error input > %d\n", irq_last);
2857 irq_index = user_val - irq_first;
2858 if (irq_index >= num_irqs)
2861 /* Set irq count to 0 when unsubscribe */
2862 irq_count[irq_index] = 0;
2864 if (dev_attr[irq_index])
2865 sysfs_remove_file(&dev->kobj, &dev_attr[irq_index]->attr);
2868 free_irq(user_val, &dev->kobj);
2869 kfree(event_name[irq_index]);
2870 kfree(dev_attr[irq_index]);
2876 * - several deubgfs nodes fops
2879 static const struct file_operations ab8500_bank_fops = {
2880 .open = ab8500_bank_open,
2881 .write = ab8500_bank_write,
2883 .llseek = seq_lseek,
2884 .release = single_release,
2885 .owner = THIS_MODULE,
2888 static const struct file_operations ab8500_address_fops = {
2889 .open = ab8500_address_open,
2890 .write = ab8500_address_write,
2892 .llseek = seq_lseek,
2893 .release = single_release,
2894 .owner = THIS_MODULE,
2897 static const struct file_operations ab8500_val_fops = {
2898 .open = ab8500_val_open,
2899 .write = ab8500_val_write,
2901 .llseek = seq_lseek,
2902 .release = single_release,
2903 .owner = THIS_MODULE,
2906 static const struct file_operations ab8500_interrupts_fops = {
2907 .open = ab8500_interrupts_open,
2909 .llseek = seq_lseek,
2910 .release = single_release,
2911 .owner = THIS_MODULE,
2914 static const struct file_operations ab8500_subscribe_fops = {
2915 .open = ab8500_subscribe_unsubscribe_open,
2916 .write = ab8500_subscribe_write,
2918 .llseek = seq_lseek,
2919 .release = single_release,
2920 .owner = THIS_MODULE,
2923 static const struct file_operations ab8500_unsubscribe_fops = {
2924 .open = ab8500_subscribe_unsubscribe_open,
2925 .write = ab8500_unsubscribe_write,
2927 .llseek = seq_lseek,
2928 .release = single_release,
2929 .owner = THIS_MODULE,
2932 static const struct file_operations ab8500_hwreg_fops = {
2933 .open = ab8500_hwreg_open,
2934 .write = ab8500_hwreg_write,
2936 .llseek = seq_lseek,
2937 .release = single_release,
2938 .owner = THIS_MODULE,
2941 static struct dentry *ab8500_dir;
2942 static struct dentry *ab8500_gpadc_dir;
2944 static int ab8500_debug_probe(struct platform_device *plf)
2946 struct dentry *file;
2947 struct ab8500 *ab8500;
2948 struct resource *res;
2949 debug_bank = AB8500_MISC;
2950 debug_address = AB8500_REV_REG & 0x00FF;
2952 ab8500 = dev_get_drvdata(plf->dev.parent);
2953 num_irqs = ab8500->mask_size;
2955 irq_count = devm_kzalloc(&plf->dev,
2956 sizeof(*irq_count)*num_irqs, GFP_KERNEL);
2960 dev_attr = devm_kzalloc(&plf->dev,
2961 sizeof(*dev_attr)*num_irqs,GFP_KERNEL);
2965 event_name = devm_kzalloc(&plf->dev,
2966 sizeof(*event_name)*num_irqs, GFP_KERNEL);
2970 res = platform_get_resource_byname(plf, 0, "IRQ_AB8500");
2972 dev_err(&plf->dev, "AB8500 irq not found, err %d\n",
2976 irq_ab8500 = res->start;
2978 irq_first = platform_get_irq_byname(plf, "IRQ_FIRST");
2979 if (irq_first < 0) {
2980 dev_err(&plf->dev, "First irq not found, err %d\n",
2985 irq_last = platform_get_irq_byname(plf, "IRQ_LAST");
2987 dev_err(&plf->dev, "Last irq not found, err %d\n",
2992 ab8500_dir = debugfs_create_dir(AB8500_NAME_STRING, NULL);
2996 ab8500_gpadc_dir = debugfs_create_dir(AB8500_ADC_NAME_STRING,
2998 if (!ab8500_gpadc_dir)
3001 file = debugfs_create_file("all-bank-registers", S_IRUGO,
3002 ab8500_dir, &plf->dev, &ab8500_registers_fops);
3006 file = debugfs_create_file("all-banks", S_IRUGO,
3007 ab8500_dir, &plf->dev, &ab8500_all_banks_fops);
3011 file = debugfs_create_file("register-bank", (S_IRUGO | S_IWUSR | S_IWGRP),
3012 ab8500_dir, &plf->dev, &ab8500_bank_fops);
3016 file = debugfs_create_file("register-address", (S_IRUGO | S_IWUSR | S_IWGRP),
3017 ab8500_dir, &plf->dev, &ab8500_address_fops);
3021 file = debugfs_create_file("register-value", (S_IRUGO | S_IWUSR | S_IWGRP),
3022 ab8500_dir, &plf->dev, &ab8500_val_fops);
3026 file = debugfs_create_file("irq-subscribe", (S_IRUGO | S_IWUSR | S_IWGRP),
3027 ab8500_dir, &plf->dev, &ab8500_subscribe_fops);
3031 if (is_ab8500(ab8500)) {
3032 debug_ranges = ab8500_debug_ranges;
3033 num_interrupt_lines = AB8500_NR_IRQS;
3034 } else if (is_ab8505(ab8500)) {
3035 debug_ranges = ab8505_debug_ranges;
3036 num_interrupt_lines = AB8505_NR_IRQS;
3037 } else if (is_ab9540(ab8500)) {
3038 debug_ranges = ab8505_debug_ranges;
3039 num_interrupt_lines = AB9540_NR_IRQS;
3040 } else if (is_ab8540(ab8500)) {
3041 debug_ranges = ab8540_debug_ranges;
3042 num_interrupt_lines = AB8540_NR_IRQS;
3045 file = debugfs_create_file("interrupts", (S_IRUGO),
3046 ab8500_dir, &plf->dev, &ab8500_interrupts_fops);
3050 file = debugfs_create_file("irq-unsubscribe", (S_IRUGO | S_IWUSR | S_IWGRP),
3051 ab8500_dir, &plf->dev, &ab8500_unsubscribe_fops);
3055 file = debugfs_create_file("hwreg", (S_IRUGO | S_IWUSR | S_IWGRP),
3056 ab8500_dir, &plf->dev, &ab8500_hwreg_fops);
3060 file = debugfs_create_file("all-modem-registers", (S_IRUGO | S_IWUSR | S_IWGRP),
3061 ab8500_dir, &plf->dev, &ab8500_modem_fops);
3065 file = debugfs_create_file("bat_ctrl", (S_IRUGO | S_IWUSR | S_IWGRP),
3066 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_bat_ctrl_fops);
3070 file = debugfs_create_file("btemp_ball", (S_IRUGO | S_IWUSR | S_IWGRP),
3071 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_btemp_ball_fops);
3075 file = debugfs_create_file("main_charger_v", (S_IRUGO | S_IWUSR | S_IWGRP),
3076 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_main_charger_v_fops);
3080 file = debugfs_create_file("acc_detect1", (S_IRUGO | S_IWUSR | S_IWGRP),
3081 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_acc_detect1_fops);
3085 file = debugfs_create_file("acc_detect2", (S_IRUGO | S_IWUSR | S_IWGRP),
3086 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_acc_detect2_fops);
3090 file = debugfs_create_file("adc_aux1", (S_IRUGO | S_IWUSR | S_IWGRP),
3091 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_aux1_fops);
3095 file = debugfs_create_file("adc_aux2", (S_IRUGO | S_IWUSR | S_IWGRP),
3096 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_aux2_fops);
3100 file = debugfs_create_file("main_bat_v", (S_IRUGO | S_IWUSR | S_IWGRP),
3101 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_main_bat_v_fops);
3105 file = debugfs_create_file("vbus_v", (S_IRUGO | S_IWUSR | S_IWGRP),
3106 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_vbus_v_fops);
3110 file = debugfs_create_file("main_charger_c", (S_IRUGO | S_IWUSR | S_IWGRP),
3111 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_main_charger_c_fops);
3115 file = debugfs_create_file("usb_charger_c", (S_IRUGO | S_IWUSR | S_IWGRP),
3116 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_usb_charger_c_fops);
3120 file = debugfs_create_file("bk_bat_v", (S_IRUGO | S_IWUSR | S_IWGRP),
3121 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_bk_bat_v_fops);
3125 file = debugfs_create_file("die_temp", (S_IRUGO | S_IWUSR | S_IWGRP),
3126 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_die_temp_fops);
3130 file = debugfs_create_file("usb_id", (S_IRUGO | S_IWUSR | S_IWGRP),
3131 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_usb_id_fops);
3135 if (is_ab8540(ab8500)) {
3136 file = debugfs_create_file("xtal_temp", (S_IRUGO | S_IWUSR | S_IWGRP),
3137 ab8500_gpadc_dir, &plf->dev, &ab8540_gpadc_xtal_temp_fops);
3140 file = debugfs_create_file("vbattruemeas", (S_IRUGO | S_IWUSR | S_IWGRP),
3141 ab8500_gpadc_dir, &plf->dev,
3142 &ab8540_gpadc_vbat_true_meas_fops);
3145 file = debugfs_create_file("batctrl_and_ibat",
3146 (S_IRUGO | S_IWUGO), ab8500_gpadc_dir,
3147 &plf->dev, &ab8540_gpadc_bat_ctrl_and_ibat_fops);
3150 file = debugfs_create_file("vbatmeas_and_ibat",
3151 (S_IRUGO | S_IWUGO), ab8500_gpadc_dir,
3153 &ab8540_gpadc_vbat_meas_and_ibat_fops);
3156 file = debugfs_create_file("vbattruemeas_and_ibat",
3157 (S_IRUGO | S_IWUGO), ab8500_gpadc_dir,
3159 &ab8540_gpadc_vbat_true_meas_and_ibat_fops);
3162 file = debugfs_create_file("battemp_and_ibat",
3163 (S_IRUGO | S_IWUGO), ab8500_gpadc_dir,
3164 &plf->dev, &ab8540_gpadc_bat_temp_and_ibat_fops);
3167 file = debugfs_create_file("otp_calib", (S_IRUGO | S_IWUSR | S_IWGRP),
3168 ab8500_gpadc_dir, &plf->dev, &ab8540_gpadc_otp_calib_fops);
3172 file = debugfs_create_file("avg_sample", (S_IRUGO | S_IWUSR | S_IWGRP),
3173 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_avg_sample_fops);
3177 file = debugfs_create_file("trig_edge", (S_IRUGO | S_IWUSR | S_IWGRP),
3178 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_trig_edge_fops);
3182 file = debugfs_create_file("trig_timer", (S_IRUGO | S_IWUSR | S_IWGRP),
3183 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_trig_timer_fops);
3187 file = debugfs_create_file("conv_type", (S_IRUGO | S_IWUSR | S_IWGRP),
3188 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_conv_type_fops);
3196 debugfs_remove_recursive(ab8500_dir);
3197 dev_err(&plf->dev, "failed to create debugfs entries.\n");
3202 static int ab8500_debug_remove(struct platform_device *plf)
3204 debugfs_remove_recursive(ab8500_dir);
3209 static struct platform_driver ab8500_debug_driver = {
3211 .name = "ab8500-debug",
3212 .owner = THIS_MODULE,
3214 .probe = ab8500_debug_probe,
3215 .remove = ab8500_debug_remove
3218 static int __init ab8500_debug_init(void)
3220 return platform_driver_register(&ab8500_debug_driver);
3223 static void __exit ab8500_debug_exit(void)
3225 platform_driver_unregister(&ab8500_debug_driver);
3227 subsys_initcall(ab8500_debug_init);
3228 module_exit(ab8500_debug_exit);
3230 MODULE_AUTHOR("Mattias WALLIN <mattias.wallin@stericsson.com");
3231 MODULE_DESCRIPTION("AB8500 DEBUG");
3232 MODULE_LICENSE("GPL v2");