Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de> |
| 3 | * JZ4740 SoC HWMON driver |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of the GNU General Public License as published by the |
| 7 | * Free Software Foundation; either version 2 of the License, or (at your |
| 8 | * option) any later version. |
| 9 | * |
| 10 | * You should have received a copy of the GNU General Public License along |
| 11 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 12 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 13 | * |
| 14 | */ |
| 15 | |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/mutex.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/slab.h> |
Guenter Roeck | b25df2b | 2012-06-02 12:22:08 -0700 | [diff] [blame] | 23 | #include <linux/io.h> |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 24 | |
| 25 | #include <linux/completion.h> |
| 26 | #include <linux/mfd/core.h> |
| 27 | |
| 28 | #include <linux/hwmon.h> |
| 29 | |
| 30 | struct jz4740_hwmon { |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 31 | void __iomem *base; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 32 | int irq; |
Andres Salomon | e930006 | 2011-03-01 13:35:48 -0800 | [diff] [blame] | 33 | const struct mfd_cell *cell; |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 34 | struct platform_device *pdev; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 35 | struct completion read_completion; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 36 | struct mutex lock; |
| 37 | }; |
| 38 | |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 39 | static irqreturn_t jz4740_hwmon_irq(int irq, void *data) |
| 40 | { |
| 41 | struct jz4740_hwmon *hwmon = data; |
| 42 | |
| 43 | complete(&hwmon->read_completion); |
| 44 | return IRQ_HANDLED; |
| 45 | } |
| 46 | |
| 47 | static ssize_t jz4740_hwmon_read_adcin(struct device *dev, |
| 48 | struct device_attribute *dev_attr, char *buf) |
| 49 | { |
| 50 | struct jz4740_hwmon *hwmon = dev_get_drvdata(dev); |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 51 | struct platform_device *pdev = hwmon->pdev; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 52 | struct completion *completion = &hwmon->read_completion; |
Axel Lin | 0b57d76 | 2011-12-08 08:04:12 -0500 | [diff] [blame] | 53 | long t; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 54 | unsigned long val; |
| 55 | int ret; |
| 56 | |
| 57 | mutex_lock(&hwmon->lock); |
| 58 | |
Wolfram Sang | 16735d0 | 2013-11-14 14:32:02 -0800 | [diff] [blame] | 59 | reinit_completion(completion); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 60 | |
| 61 | enable_irq(hwmon->irq); |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 62 | hwmon->cell->enable(pdev); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 63 | |
| 64 | t = wait_for_completion_interruptible_timeout(completion, HZ); |
| 65 | |
| 66 | if (t > 0) { |
| 67 | val = readw(hwmon->base) & 0xfff; |
| 68 | val = (val * 3300) >> 12; |
| 69 | ret = sprintf(buf, "%lu\n", val); |
| 70 | } else { |
| 71 | ret = t ? t : -ETIMEDOUT; |
| 72 | } |
| 73 | |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 74 | hwmon->cell->disable(pdev); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 75 | disable_irq(hwmon->irq); |
| 76 | |
| 77 | mutex_unlock(&hwmon->lock); |
| 78 | |
| 79 | return ret; |
| 80 | } |
| 81 | |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 82 | static DEVICE_ATTR(in0_input, S_IRUGO, jz4740_hwmon_read_adcin, NULL); |
| 83 | |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 84 | static struct attribute *jz4740_attrs[] = { |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 85 | &dev_attr_in0_input.attr, |
| 86 | NULL |
| 87 | }; |
| 88 | |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 89 | ATTRIBUTE_GROUPS(jz4740); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 90 | |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 91 | static int jz4740_hwmon_probe(struct platform_device *pdev) |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 92 | { |
| 93 | int ret; |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 94 | struct device *dev = &pdev->dev; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 95 | struct jz4740_hwmon *hwmon; |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 96 | struct device *hwmon_dev; |
Jingoo Han | 939a0a3 | 2014-02-11 21:10:50 +0900 | [diff] [blame] | 97 | struct resource *mem; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 98 | |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 99 | hwmon = devm_kzalloc(dev, sizeof(*hwmon), GFP_KERNEL); |
Guenter Roeck | b25df2b | 2012-06-02 12:22:08 -0700 | [diff] [blame] | 100 | if (!hwmon) |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 101 | return -ENOMEM; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 102 | |
Andres Salomon | 6a54ac2 | 2011-02-17 19:07:10 -0800 | [diff] [blame] | 103 | hwmon->cell = mfd_get_cell(pdev); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 104 | |
| 105 | hwmon->irq = platform_get_irq(pdev, 0); |
| 106 | if (hwmon->irq < 0) { |
Guenter Roeck | b25df2b | 2012-06-02 12:22:08 -0700 | [diff] [blame] | 107 | dev_err(&pdev->dev, "Failed to get platform irq: %d\n", |
| 108 | hwmon->irq); |
| 109 | return hwmon->irq; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Jingoo Han | 939a0a3 | 2014-02-11 21:10:50 +0900 | [diff] [blame] | 112 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 113 | hwmon->base = devm_ioremap_resource(&pdev->dev, mem); |
| 114 | if (IS_ERR(hwmon->base)) |
| 115 | return PTR_ERR(hwmon->base); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 116 | |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 117 | hwmon->pdev = pdev; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 118 | init_completion(&hwmon->read_completion); |
| 119 | mutex_init(&hwmon->lock); |
| 120 | |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 121 | ret = devm_request_irq(dev, hwmon->irq, jz4740_hwmon_irq, 0, |
Guenter Roeck | b25df2b | 2012-06-02 12:22:08 -0700 | [diff] [blame] | 122 | pdev->name, hwmon); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 123 | if (ret) { |
| 124 | dev_err(&pdev->dev, "Failed to request irq: %d\n", ret); |
Guenter Roeck | b25df2b | 2012-06-02 12:22:08 -0700 | [diff] [blame] | 125 | return ret; |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 126 | } |
| 127 | disable_irq(hwmon->irq); |
| 128 | |
Axel Lin | 699f279 | 2014-06-29 21:39:11 +0800 | [diff] [blame] | 129 | hwmon_dev = devm_hwmon_device_register_with_groups(dev, "jz4740", hwmon, |
| 130 | jz4740_groups); |
| 131 | return PTR_ERR_OR_ZERO(hwmon_dev); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Axel Lin | d6c4f2a | 2011-12-08 08:33:37 -0500 | [diff] [blame] | 134 | static struct platform_driver jz4740_hwmon_driver = { |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 135 | .probe = jz4740_hwmon_probe, |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 136 | .driver = { |
| 137 | .name = "jz4740-hwmon", |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 138 | }, |
| 139 | }; |
| 140 | |
Axel Lin | 25a236a | 2011-11-25 02:31:00 -0500 | [diff] [blame] | 141 | module_platform_driver(jz4740_hwmon_driver); |
Lars-Peter Clausen | 7f983ba | 2010-06-19 18:32:58 +0000 | [diff] [blame] | 142 | |
| 143 | MODULE_DESCRIPTION("JZ4740 SoC HWMON driver"); |
| 144 | MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>"); |
| 145 | MODULE_LICENSE("GPL"); |
| 146 | MODULE_ALIAS("platform:jz4740-hwmon"); |