GNU Linux-libre 4.14.290-gnu1
[releases.git] / drivers / staging / iio / adc / ad7606_par.c
1 /*
2  * AD7606 Parallel Interface ADC driver
3  *
4  * Copyright 2011 Analog Devices Inc.
5  *
6  * Licensed under the GPL-2.
7  */
8
9 #include <linux/module.h>
10 #include <linux/platform_device.h>
11 #include <linux/types.h>
12 #include <linux/err.h>
13 #include <linux/io.h>
14
15 #include <linux/iio/iio.h>
16 #include "ad7606.h"
17
18 static int ad7606_par16_read_block(struct device *dev,
19                                    int count, void *buf)
20 {
21         struct platform_device *pdev = to_platform_device(dev);
22         struct iio_dev *indio_dev = platform_get_drvdata(pdev);
23         struct ad7606_state *st = iio_priv(indio_dev);
24
25         insw((unsigned long)st->base_address, buf, count);
26
27         return 0;
28 }
29
30 static const struct ad7606_bus_ops ad7606_par16_bops = {
31         .read_block     = ad7606_par16_read_block,
32 };
33
34 static int ad7606_par8_read_block(struct device *dev,
35                                   int count, void *buf)
36 {
37         struct platform_device *pdev = to_platform_device(dev);
38         struct iio_dev *indio_dev = platform_get_drvdata(pdev);
39         struct ad7606_state *st = iio_priv(indio_dev);
40
41         insb((unsigned long)st->base_address, buf, count * 2);
42
43         return 0;
44 }
45
46 static const struct ad7606_bus_ops ad7606_par8_bops = {
47         .read_block     = ad7606_par8_read_block,
48 };
49
50 static int ad7606_par_probe(struct platform_device *pdev)
51 {
52         const struct platform_device_id *id = platform_get_device_id(pdev);
53         struct resource *res;
54         void __iomem *addr;
55         resource_size_t remap_size;
56         int irq;
57
58         irq = platform_get_irq(pdev, 0);
59         if (irq < 0) {
60                 dev_err(&pdev->dev, "no irq: %d\n", irq);
61                 return irq;
62         }
63
64         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
65         addr = devm_ioremap_resource(&pdev->dev, res);
66         if (IS_ERR(addr))
67                 return PTR_ERR(addr);
68
69         remap_size = resource_size(res);
70
71         return ad7606_probe(&pdev->dev, irq, addr,
72                             id->name, id->driver_data,
73                             remap_size > 1 ? &ad7606_par16_bops :
74                             &ad7606_par8_bops);
75 }
76
77 static int ad7606_par_remove(struct platform_device *pdev)
78 {
79         return ad7606_remove(&pdev->dev, platform_get_irq(pdev, 0));
80 }
81
82 static const struct platform_device_id ad7606_driver_ids[] = {
83         {
84                 .name           = "ad7606-8",
85                 .driver_data    = ID_AD7606_8,
86         }, {
87                 .name           = "ad7606-6",
88                 .driver_data    = ID_AD7606_6,
89         }, {
90                 .name           = "ad7606-4",
91                 .driver_data    = ID_AD7606_4,
92         },
93         { }
94 };
95
96 MODULE_DEVICE_TABLE(platform, ad7606_driver_ids);
97
98 static struct platform_driver ad7606_driver = {
99         .probe = ad7606_par_probe,
100         .remove = ad7606_par_remove,
101         .id_table = ad7606_driver_ids,
102         .driver = {
103                 .name    = "ad7606",
104                 .pm      = AD7606_PM_OPS,
105         },
106 };
107
108 module_platform_driver(ad7606_driver);
109
110 MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
111 MODULE_DESCRIPTION("Analog Devices AD7606 ADC");
112 MODULE_LICENSE("GPL v2");