aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/ab8500-debugfs.c
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2013-02-26 09:02:31 -0500
committerLee Jones <lee.jones@linaro.org>2013-03-06 23:28:28 -0500
commitbc6b4132bcae4b8e59766ba2dae8f377009b26d0 (patch)
tree16cd4e757c0a20fa6fb888a2b35b46e2a6084201 /drivers/mfd/ab8500-debugfs.c
parente4bffe8d8ad9856143b6e941a17870aee37413d7 (diff)
mfd: ab8500-debug: Add support for the AB8540
Allow GPADC debug information to be shown when executing on an AB8540 based platform. Signed-off-by: Alexandre Bourdiol <alexandre.bourdiol@stericsson.com> Reviewed-by: Marcus COOPER <marcus.xm.cooper@stericsson.com> Reviewed-by: Philippe LANGLAIS <philippe.langlais@stericsson.com> Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/ab8500-debugfs.c')
-rw-r--r--drivers/mfd/ab8500-debugfs.c286
1 files changed, 285 insertions, 1 deletions
diff --git a/drivers/mfd/ab8500-debugfs.c b/drivers/mfd/ab8500-debugfs.c
index 074eea9e4bfd..1e44d65e1771 100644
--- a/drivers/mfd/ab8500-debugfs.c
+++ b/drivers/mfd/ab8500-debugfs.c
@@ -1633,6 +1633,254 @@ static const struct file_operations ab8500_gpadc_die_temp_fops = {
1633 .owner = THIS_MODULE, 1633 .owner = THIS_MODULE,
1634}; 1634};
1635 1635
1636static int ab8540_gpadc_xtal_temp_print(struct seq_file *s, void *p)
1637{
1638 int xtal_temp_raw;
1639 int xtal_temp_convert;
1640 struct ab8500_gpadc *gpadc;
1641
1642 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1643 xtal_temp_raw = ab8500_gpadc_read_raw(gpadc, XTAL_TEMP,
1644 avg_sample, trig_edge, trig_timer, conv_type);
1645 xtal_temp_convert = ab8500_gpadc_ad_to_voltage(gpadc, XTAL_TEMP,
1646 xtal_temp_raw);
1647
1648 return seq_printf(s, "%d,0x%X\n",
1649 xtal_temp_convert, xtal_temp_raw);
1650}
1651
1652static int ab8540_gpadc_xtal_temp_open(struct inode *inode, struct file *file)
1653{
1654 return single_open(file, ab8540_gpadc_xtal_temp_print,
1655 inode->i_private);
1656}
1657
1658static const struct file_operations ab8540_gpadc_xtal_temp_fops = {
1659 .open = ab8540_gpadc_xtal_temp_open,
1660 .read = seq_read,
1661 .llseek = seq_lseek,
1662 .release = single_release,
1663 .owner = THIS_MODULE,
1664};
1665
1666static int ab8540_gpadc_vbat_true_meas_print(struct seq_file *s, void *p)
1667{
1668 int vbat_true_meas_raw;
1669 int vbat_true_meas_convert;
1670 struct ab8500_gpadc *gpadc;
1671
1672 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1673 vbat_true_meas_raw = ab8500_gpadc_read_raw(gpadc, VBAT_TRUE_MEAS,
1674 avg_sample, trig_edge, trig_timer, conv_type);
1675 vbat_true_meas_convert = ab8500_gpadc_ad_to_voltage(gpadc, VBAT_TRUE_MEAS,
1676 vbat_true_meas_raw);
1677
1678 return seq_printf(s, "%d,0x%X\n",
1679 vbat_true_meas_convert, vbat_true_meas_raw);
1680}
1681
1682static int ab8540_gpadc_vbat_true_meas_open(struct inode *inode,
1683 struct file *file)
1684{
1685 return single_open(file, ab8540_gpadc_vbat_true_meas_print,
1686 inode->i_private);
1687}
1688
1689static const struct file_operations ab8540_gpadc_vbat_true_meas_fops = {
1690 .open = ab8540_gpadc_vbat_true_meas_open,
1691 .read = seq_read,
1692 .llseek = seq_lseek,
1693 .release = single_release,
1694 .owner = THIS_MODULE,
1695};
1696
1697static int ab8540_gpadc_bat_ctrl_and_ibat_print(struct seq_file *s, void *p)
1698{
1699 int bat_ctrl_raw;
1700 int bat_ctrl_convert;
1701 int ibat_raw;
1702 int ibat_convert;
1703 struct ab8500_gpadc *gpadc;
1704
1705 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1706 bat_ctrl_raw = ab8500_gpadc_double_read_raw(gpadc, BAT_CTRL_AND_IBAT,
1707 avg_sample, trig_edge, trig_timer, conv_type, &ibat_raw);
1708
1709 bat_ctrl_convert = ab8500_gpadc_ad_to_voltage(gpadc, BAT_CTRL,
1710 bat_ctrl_raw);
1711 ibat_convert = ab8500_gpadc_ad_to_voltage(gpadc, IBAT_VIRTUAL_CHANNEL,
1712 ibat_raw);
1713
1714 return seq_printf(s, "%d,0x%X\n" "%d,0x%X\n",
1715 bat_ctrl_convert, bat_ctrl_raw,
1716 ibat_convert, ibat_raw);
1717}
1718
1719static int ab8540_gpadc_bat_ctrl_and_ibat_open(struct inode *inode,
1720 struct file *file)
1721{
1722 return single_open(file, ab8540_gpadc_bat_ctrl_and_ibat_print,
1723 inode->i_private);
1724}
1725
1726static const struct file_operations ab8540_gpadc_bat_ctrl_and_ibat_fops = {
1727 .open = ab8540_gpadc_bat_ctrl_and_ibat_open,
1728 .read = seq_read,
1729 .llseek = seq_lseek,
1730 .release = single_release,
1731 .owner = THIS_MODULE,
1732};
1733
1734static int ab8540_gpadc_vbat_meas_and_ibat_print(struct seq_file *s, void *p)
1735{
1736 int vbat_meas_raw;
1737 int vbat_meas_convert;
1738 int ibat_raw;
1739 int ibat_convert;
1740 struct ab8500_gpadc *gpadc;
1741
1742 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1743 vbat_meas_raw = ab8500_gpadc_double_read_raw(gpadc, VBAT_MEAS_AND_IBAT,
1744 avg_sample, trig_edge, trig_timer, conv_type, &ibat_raw);
1745 vbat_meas_convert = ab8500_gpadc_ad_to_voltage(gpadc, MAIN_BAT_V,
1746 vbat_meas_raw);
1747 ibat_convert = ab8500_gpadc_ad_to_voltage(gpadc, IBAT_VIRTUAL_CHANNEL,
1748 ibat_raw);
1749
1750 return seq_printf(s, "%d,0x%X\n" "%d,0x%X\n",
1751 vbat_meas_convert, vbat_meas_raw,
1752 ibat_convert, ibat_raw);
1753}
1754
1755static int ab8540_gpadc_vbat_meas_and_ibat_open(struct inode *inode,
1756 struct file *file)
1757{
1758 return single_open(file, ab8540_gpadc_vbat_meas_and_ibat_print,
1759 inode->i_private);
1760}
1761
1762static const struct file_operations ab8540_gpadc_vbat_meas_and_ibat_fops = {
1763 .open = ab8540_gpadc_vbat_meas_and_ibat_open,
1764 .read = seq_read,
1765 .llseek = seq_lseek,
1766 .release = single_release,
1767 .owner = THIS_MODULE,
1768};
1769
1770static int ab8540_gpadc_vbat_true_meas_and_ibat_print(struct seq_file *s, void *p)
1771{
1772 int vbat_true_meas_raw;
1773 int vbat_true_meas_convert;
1774 int ibat_raw;
1775 int ibat_convert;
1776 struct ab8500_gpadc *gpadc;
1777
1778 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1779 vbat_true_meas_raw = ab8500_gpadc_double_read_raw(gpadc,
1780 VBAT_TRUE_MEAS_AND_IBAT, avg_sample, trig_edge,
1781 trig_timer, conv_type, &ibat_raw);
1782 vbat_true_meas_convert = ab8500_gpadc_ad_to_voltage(gpadc,
1783 VBAT_TRUE_MEAS, vbat_true_meas_raw);
1784 ibat_convert = ab8500_gpadc_ad_to_voltage(gpadc, IBAT_VIRTUAL_CHANNEL,
1785 ibat_raw);
1786
1787 return seq_printf(s, "%d,0x%X\n" "%d,0x%X\n",
1788 vbat_true_meas_convert, vbat_true_meas_raw,
1789 ibat_convert, ibat_raw);
1790}
1791
1792static int ab8540_gpadc_vbat_true_meas_and_ibat_open(struct inode *inode,
1793 struct file *file)
1794{
1795 return single_open(file, ab8540_gpadc_vbat_true_meas_and_ibat_print,
1796 inode->i_private);
1797}
1798
1799static const struct file_operations ab8540_gpadc_vbat_true_meas_and_ibat_fops = {
1800 .open = ab8540_gpadc_vbat_true_meas_and_ibat_open,
1801 .read = seq_read,
1802 .llseek = seq_lseek,
1803 .release = single_release,
1804 .owner = THIS_MODULE,
1805};
1806
1807static int ab8540_gpadc_bat_temp_and_ibat_print(struct seq_file *s, void *p)
1808{
1809 int bat_temp_raw;
1810 int bat_temp_convert;
1811 int ibat_raw;
1812 int ibat_convert;
1813 struct ab8500_gpadc *gpadc;
1814
1815 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1816 bat_temp_raw = ab8500_gpadc_double_read_raw(gpadc, BAT_TEMP_AND_IBAT,
1817 avg_sample, trig_edge, trig_timer, conv_type, &ibat_raw);
1818 bat_temp_convert = ab8500_gpadc_ad_to_voltage(gpadc, BTEMP_BALL,
1819 bat_temp_raw);
1820 ibat_convert = ab8500_gpadc_ad_to_voltage(gpadc, IBAT_VIRTUAL_CHANNEL,
1821 ibat_raw);
1822
1823 return seq_printf(s, "%d,0x%X\n" "%d,0x%X\n",
1824 bat_temp_convert, bat_temp_raw,
1825 ibat_convert, ibat_raw);
1826}
1827
1828static int ab8540_gpadc_bat_temp_and_ibat_open(struct inode *inode,
1829 struct file *file)
1830{
1831 return single_open(file, ab8540_gpadc_bat_temp_and_ibat_print,
1832 inode->i_private);
1833}
1834
1835static const struct file_operations ab8540_gpadc_bat_temp_and_ibat_fops = {
1836 .open = ab8540_gpadc_bat_temp_and_ibat_open,
1837 .read = seq_read,
1838 .llseek = seq_lseek,
1839 .release = single_release,
1840 .owner = THIS_MODULE,
1841};
1842
1843static int ab8540_gpadc_otp_cal_print(struct seq_file *s, void *p)
1844{
1845 struct ab8500_gpadc *gpadc;
1846 u16 vmain_l, vmain_h, btemp_l, btemp_h;
1847 u16 vbat_l, vbat_h, ibat_l, ibat_h;
1848
1849 gpadc = ab8500_gpadc_get("ab8500-gpadc.0");
1850 ab8540_gpadc_get_otp(gpadc, &vmain_l, &vmain_h, &btemp_l, &btemp_h,
1851 &vbat_l, &vbat_h, &ibat_l, &ibat_h);
1852 return seq_printf(s, "VMAIN_L:0x%X\n"
1853 "VMAIN_H:0x%X\n"
1854 "BTEMP_L:0x%X\n"
1855 "BTEMP_H:0x%X\n"
1856 "VBAT_L:0x%X\n"
1857 "VBAT_H:0x%X\n"
1858 "IBAT_L:0x%X\n"
1859 "IBAT_H:0x%X\n"
1860 ,
1861 vmain_l,
1862 vmain_h,
1863 btemp_l,
1864 btemp_h,
1865 vbat_l,
1866 vbat_h,
1867 ibat_l,
1868 ibat_h);
1869}
1870
1871static int ab8540_gpadc_otp_cal_open(struct inode *inode, struct file *file)
1872{
1873 return single_open(file, ab8540_gpadc_otp_cal_print, inode->i_private);
1874}
1875
1876static const struct file_operations ab8540_gpadc_otp_calib_fops = {
1877 .open = ab8540_gpadc_otp_cal_open,
1878 .read = seq_read,
1879 .llseek = seq_lseek,
1880 .release = single_release,
1881 .owner = THIS_MODULE,
1882};
1883
1636static int ab8500_gpadc_avg_sample_print(struct seq_file *s, void *p) 1884static int ab8500_gpadc_avg_sample_print(struct seq_file *s, void *p)
1637{ 1885{
1638 return seq_printf(s, "%d\n", avg_sample); 1886 return seq_printf(s, "%d\n", avg_sample);
@@ -2386,7 +2634,43 @@ static int ab8500_debug_probe(struct platform_device *plf)
2386 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_die_temp_fops); 2634 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_die_temp_fops);
2387 if (!file) 2635 if (!file)
2388 goto err; 2636 goto err;
2389 2637 if (is_ab8540(ab8500)) {
2638 file = debugfs_create_file("xtal_temp", (S_IRUGO | S_IWUGO),
2639 ab8500_gpadc_dir, &plf->dev, &ab8540_gpadc_xtal_temp_fops);
2640 if (!file)
2641 goto err;
2642 file = debugfs_create_file("vbattruemeas", (S_IRUGO | S_IWUGO),
2643 ab8500_gpadc_dir, &plf->dev,
2644 &ab8540_gpadc_vbat_true_meas_fops);
2645 if (!file)
2646 goto err;
2647 file = debugfs_create_file("batctrl_and_ibat",
2648 (S_IRUGO | S_IWUGO), ab8500_gpadc_dir,
2649 &plf->dev, &ab8540_gpadc_bat_ctrl_and_ibat_fops);
2650 if (!file)
2651 goto err;
2652 file = debugfs_create_file("vbatmeas_and_ibat",
2653 (S_IRUGO | S_IWUGO), ab8500_gpadc_dir,
2654 &plf->dev,
2655 &ab8540_gpadc_vbat_meas_and_ibat_fops);
2656 if (!file)
2657 goto err;
2658 file = debugfs_create_file("vbattruemeas_and_ibat",
2659 (S_IRUGO | S_IWUGO), ab8500_gpadc_dir,
2660 &plf->dev,
2661 &ab8540_gpadc_vbat_true_meas_and_ibat_fops);
2662 if (!file)
2663 goto err;
2664 file = debugfs_create_file("battemp_and_ibat",
2665 (S_IRUGO | S_IWUGO), ab8500_gpadc_dir,
2666 &plf->dev, &ab8540_gpadc_bat_temp_and_ibat_fops);
2667 if (!file)
2668 goto err;
2669 file = debugfs_create_file("otp_calib", (S_IRUGO | S_IWUGO),
2670 ab8500_gpadc_dir, &plf->dev, &ab8540_gpadc_otp_calib_fops);
2671 if (!file)
2672 goto err;
2673 }
2390 file = debugfs_create_file("avg_sample", (S_IRUGO | S_IWUGO), 2674 file = debugfs_create_file("avg_sample", (S_IRUGO | S_IWUGO),
2391 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_avg_sample_fops); 2675 ab8500_gpadc_dir, &plf->dev, &ab8500_gpadc_avg_sample_fops);
2392 if (!file) 2676 if (!file)