blob: cdf50e4ea1650a7aa924529a23189e68f3d60c77 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Ira W. Snyder800e69f2010-04-07 10:08:01 +02002/*
3 * Janz MODULbus VMOD-TTL GPIO Driver
4 *
5 * Copyright (c) 2010 Ira W. Snyder <iws@ovro.caltech.edu>
Ira W. Snyder800e69f2010-04-07 10:08:01 +02006 */
7
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/init.h>
11#include <linux/interrupt.h>
12#include <linux/delay.h>
13#include <linux/platform_device.h>
14#include <linux/io.h>
Linus Walleij1c947b72018-03-12 12:08:02 +010015#include <linux/gpio/driver.h>
Ira W. Snyder800e69f2010-04-07 10:08:01 +020016#include <linux/slab.h>
Linus Walleij96d0d032018-03-12 12:11:45 +010017#include <linux/bitops.h>
Ira W. Snyder800e69f2010-04-07 10:08:01 +020018
19#include <linux/mfd/janz.h>
20
21#define DRV_NAME "janz-ttl"
22
23#define PORTA_DIRECTION 0x23
24#define PORTB_DIRECTION 0x2B
25#define PORTC_DIRECTION 0x06
26#define PORTA_IOCTL 0x24
27#define PORTB_IOCTL 0x2C
28#define PORTC_IOCTL 0x07
29
30#define MASTER_INT_CTL 0x00
31#define MASTER_CONF_CTL 0x01
32
Linus Walleij96d0d032018-03-12 12:11:45 +010033#define CONF_PAE BIT(2)
34#define CONF_PBE BIT(7)
35#define CONF_PCE BIT(4)
Ira W. Snyder800e69f2010-04-07 10:08:01 +020036
37struct ttl_control_regs {
38 __be16 portc;
39 __be16 portb;
40 __be16 porta;
41 __be16 control;
42};
43
44struct ttl_module {
45 struct gpio_chip gpio;
46
47 /* base address of registers */
48 struct ttl_control_regs __iomem *regs;
49
50 u8 portc_shadow;
51 u8 portb_shadow;
52 u8 porta_shadow;
53
54 spinlock_t lock;
55};
56
57static int ttl_get_value(struct gpio_chip *gpio, unsigned offset)
58{
Linus Walleij58383c782015-11-04 09:56:26 +010059 struct ttl_module *mod = dev_get_drvdata(gpio->parent);
Ira W. Snyder800e69f2010-04-07 10:08:01 +020060 u8 *shadow;
61 int ret;
62
63 if (offset < 8) {
64 shadow = &mod->porta_shadow;
65 } else if (offset < 16) {
66 shadow = &mod->portb_shadow;
67 offset -= 8;
68 } else {
69 shadow = &mod->portc_shadow;
70 offset -= 16;
71 }
72
73 spin_lock(&mod->lock);
Linus Walleij96d0d032018-03-12 12:11:45 +010074 ret = *shadow & BIT(offset);
Ira W. Snyder800e69f2010-04-07 10:08:01 +020075 spin_unlock(&mod->lock);
Linus Walleij828240c2015-12-21 11:03:33 +010076 return !!ret;
Ira W. Snyder800e69f2010-04-07 10:08:01 +020077}
78
79static void ttl_set_value(struct gpio_chip *gpio, unsigned offset, int value)
80{
Linus Walleij58383c782015-11-04 09:56:26 +010081 struct ttl_module *mod = dev_get_drvdata(gpio->parent);
Ira W. Snyder800e69f2010-04-07 10:08:01 +020082 void __iomem *port;
83 u8 *shadow;
84
85 if (offset < 8) {
86 port = &mod->regs->porta;
87 shadow = &mod->porta_shadow;
88 } else if (offset < 16) {
89 port = &mod->regs->portb;
90 shadow = &mod->portb_shadow;
91 offset -= 8;
92 } else {
93 port = &mod->regs->portc;
94 shadow = &mod->portc_shadow;
95 offset -= 16;
96 }
97
98 spin_lock(&mod->lock);
99 if (value)
Linus Walleij96d0d032018-03-12 12:11:45 +0100100 *shadow |= BIT(offset);
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200101 else
Linus Walleij96d0d032018-03-12 12:11:45 +0100102 *shadow &= ~BIT(offset);
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200103
104 iowrite16be(*shadow, port);
105 spin_unlock(&mod->lock);
106}
107
Bill Pemberton38363092012-11-19 13:22:34 -0500108static void ttl_write_reg(struct ttl_module *mod, u8 reg, u16 val)
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200109{
110 iowrite16be(reg, &mod->regs->control);
111 iowrite16be(val, &mod->regs->control);
112}
113
Bill Pemberton38363092012-11-19 13:22:34 -0500114static void ttl_setup_device(struct ttl_module *mod)
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200115{
116 /* reset the device to a known state */
117 iowrite16be(0x0000, &mod->regs->control);
118 iowrite16be(0x0001, &mod->regs->control);
119 iowrite16be(0x0000, &mod->regs->control);
120
121 /* put all ports in open-drain mode */
122 ttl_write_reg(mod, PORTA_IOCTL, 0x00ff);
123 ttl_write_reg(mod, PORTB_IOCTL, 0x00ff);
124 ttl_write_reg(mod, PORTC_IOCTL, 0x000f);
125
126 /* set all ports as outputs */
127 ttl_write_reg(mod, PORTA_DIRECTION, 0x0000);
128 ttl_write_reg(mod, PORTB_DIRECTION, 0x0000);
129 ttl_write_reg(mod, PORTC_DIRECTION, 0x0000);
130
131 /* set all ports to drive zeroes */
132 iowrite16be(0x0000, &mod->regs->porta);
133 iowrite16be(0x0000, &mod->regs->portb);
134 iowrite16be(0x0000, &mod->regs->portc);
135
136 /* enable all ports */
137 ttl_write_reg(mod, MASTER_CONF_CTL, CONF_PAE | CONF_PBE | CONF_PCE);
138}
139
Bill Pemberton38363092012-11-19 13:22:34 -0500140static int ttl_probe(struct platform_device *pdev)
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200141{
142 struct janz_platform_data *pdata;
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200143 struct ttl_module *mod;
144 struct gpio_chip *gpio;
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200145 int ret;
146
Jingoo Hane56aee12013-07-30 17:08:05 +0900147 pdata = dev_get_platdata(&pdev->dev);
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200148 if (!pdata) {
Enrico Weigelt, metux IT consult52728562019-06-17 18:49:19 +0200149 dev_err(&pdev->dev, "no platform data\n");
abdoulaye bertheae281932014-05-13 18:42:12 +0200150 return -ENXIO;
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200151 }
152
Enrico Weigelt, metux IT consult52728562019-06-17 18:49:19 +0200153 mod = devm_kzalloc(&pdev->dev, sizeof(*mod), GFP_KERNEL);
abdoulaye bertheae281932014-05-13 18:42:12 +0200154 if (!mod)
155 return -ENOMEM;
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200156
157 platform_set_drvdata(pdev, mod);
158 spin_lock_init(&mod->lock);
159
160 /* get access to the MODULbus registers for this module */
Enrico Weigelt, metux IT consult38b1e682019-03-11 19:54:54 +0100161 mod->regs = devm_platform_ioremap_resource(pdev, 0);
abdoulaye bertheae281932014-05-13 18:42:12 +0200162 if (IS_ERR(mod->regs))
163 return PTR_ERR(mod->regs);
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200164
165 ttl_setup_device(mod);
166
167 /* Initialize the GPIO data structures */
168 gpio = &mod->gpio;
Linus Walleij58383c782015-11-04 09:56:26 +0100169 gpio->parent = &pdev->dev;
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200170 gpio->label = pdev->name;
171 gpio->get = ttl_get_value;
172 gpio->set = ttl_set_value;
173 gpio->owner = THIS_MODULE;
174
175 /* request dynamic allocation */
176 gpio->base = -1;
177 gpio->ngpio = 20;
178
Enrico Weigelt, metux IT consult52728562019-06-17 18:49:19 +0200179 ret = devm_gpiochip_add_data(&pdev->dev, gpio, NULL);
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200180 if (ret) {
Enrico Weigelt, metux IT consult52728562019-06-17 18:49:19 +0200181 dev_err(&pdev->dev, "unable to add GPIO chip\n");
abdoulaye bertheae281932014-05-13 18:42:12 +0200182 return ret;
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200183 }
184
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200185 return 0;
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200186}
187
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200188static struct platform_driver ttl_driver = {
189 .driver = {
190 .name = DRV_NAME,
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200191 },
192 .probe = ttl_probe,
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200193};
194
Mark Brown6f614152011-12-08 00:24:00 +0800195module_platform_driver(ttl_driver);
Ira W. Snyder800e69f2010-04-07 10:08:01 +0200196
197MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>");
198MODULE_DESCRIPTION("Janz MODULbus VMOD-TTL Driver");
199MODULE_LICENSE("GPL");
200MODULE_ALIAS("platform:janz-ttl");