4 * Copyright (c) MontaVista Software, Inc. 2008.
6 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/spinlock.h>
17 #include <linux/err.h>
20 #include <linux/of_gpio.h>
21 #include <linux/gpio.h>
22 #include <linux/slab.h>
23 #include <linux/export.h>
27 struct of_mm_gpio_chip mm_gc
;
30 unsigned long pin_flags
[QE_PIO_PINS
];
31 #define QE_PIN_REQUESTED 0
33 /* shadowed data register to clear/set bits safely */
36 /* saved_regs used to restore dedicated functions */
37 struct qe_pio_regs saved_regs
;
40 static inline struct qe_gpio_chip
*
41 to_qe_gpio_chip(struct of_mm_gpio_chip
*mm_gc
)
43 return container_of(mm_gc
, struct qe_gpio_chip
, mm_gc
);
46 static void qe_gpio_save_regs(struct of_mm_gpio_chip
*mm_gc
)
48 struct qe_gpio_chip
*qe_gc
= to_qe_gpio_chip(mm_gc
);
49 struct qe_pio_regs __iomem
*regs
= mm_gc
->regs
;
51 qe_gc
->cpdata
= in_be32(®s
->cpdata
);
52 qe_gc
->saved_regs
.cpdata
= qe_gc
->cpdata
;
53 qe_gc
->saved_regs
.cpdir1
= in_be32(®s
->cpdir1
);
54 qe_gc
->saved_regs
.cpdir2
= in_be32(®s
->cpdir2
);
55 qe_gc
->saved_regs
.cppar1
= in_be32(®s
->cppar1
);
56 qe_gc
->saved_regs
.cppar2
= in_be32(®s
->cppar2
);
57 qe_gc
->saved_regs
.cpodr
= in_be32(®s
->cpodr
);
60 static int qe_gpio_get(struct gpio_chip
*gc
, unsigned int gpio
)
62 struct of_mm_gpio_chip
*mm_gc
= to_of_mm_gpio_chip(gc
);
63 struct qe_pio_regs __iomem
*regs
= mm_gc
->regs
;
64 u32 pin_mask
= 1 << (QE_PIO_PINS
- 1 - gpio
);
66 return in_be32(®s
->cpdata
) & pin_mask
;
69 static void qe_gpio_set(struct gpio_chip
*gc
, unsigned int gpio
, int val
)
71 struct of_mm_gpio_chip
*mm_gc
= to_of_mm_gpio_chip(gc
);
72 struct qe_gpio_chip
*qe_gc
= to_qe_gpio_chip(mm_gc
);
73 struct qe_pio_regs __iomem
*regs
= mm_gc
->regs
;
75 u32 pin_mask
= 1 << (QE_PIO_PINS
- 1 - gpio
);
77 spin_lock_irqsave(&qe_gc
->lock
, flags
);
80 qe_gc
->cpdata
|= pin_mask
;
82 qe_gc
->cpdata
&= ~pin_mask
;
84 out_be32(®s
->cpdata
, qe_gc
->cpdata
);
86 spin_unlock_irqrestore(&qe_gc
->lock
, flags
);
89 static int qe_gpio_dir_in(struct gpio_chip
*gc
, unsigned int gpio
)
91 struct of_mm_gpio_chip
*mm_gc
= to_of_mm_gpio_chip(gc
);
92 struct qe_gpio_chip
*qe_gc
= to_qe_gpio_chip(mm_gc
);
95 spin_lock_irqsave(&qe_gc
->lock
, flags
);
97 __par_io_config_pin(mm_gc
->regs
, gpio
, QE_PIO_DIR_IN
, 0, 0, 0);
99 spin_unlock_irqrestore(&qe_gc
->lock
, flags
);
104 static int qe_gpio_dir_out(struct gpio_chip
*gc
, unsigned int gpio
, int val
)
106 struct of_mm_gpio_chip
*mm_gc
= to_of_mm_gpio_chip(gc
);
107 struct qe_gpio_chip
*qe_gc
= to_qe_gpio_chip(mm_gc
);
110 qe_gpio_set(gc
, gpio
, val
);
112 spin_lock_irqsave(&qe_gc
->lock
, flags
);
114 __par_io_config_pin(mm_gc
->regs
, gpio
, QE_PIO_DIR_OUT
, 0, 0, 0);
116 spin_unlock_irqrestore(&qe_gc
->lock
, flags
);
123 * The qe_gpio_chip name is unfortunate, we should change that to
124 * something like qe_pio_controller. Someday.
126 struct qe_gpio_chip
*controller
;
131 * qe_pin_request - Request a QE pin
132 * @np: device node to get a pin from
133 * @index: index of a pin in the device tree
134 * Context: non-atomic
136 * This function return qe_pin so that you could use it with the rest of
137 * the QE Pin Multiplexing API.
139 struct qe_pin
*qe_pin_request(struct device_node
*np
, int index
)
141 struct qe_pin
*qe_pin
;
142 struct gpio_chip
*gc
;
143 struct of_mm_gpio_chip
*mm_gc
;
144 struct qe_gpio_chip
*qe_gc
;
148 qe_pin
= kzalloc(sizeof(*qe_pin
), GFP_KERNEL
);
150 pr_debug("%s: can't allocate memory\n", __func__
);
151 return ERR_PTR(-ENOMEM
);
154 err
= of_get_gpio(np
, index
);
157 gc
= gpio_to_chip(err
);
161 if (!of_device_is_compatible(gc
->of_node
, "fsl,mpc8323-qe-pario-bank")) {
162 pr_debug("%s: tried to get a non-qe pin\n", __func__
);
167 mm_gc
= to_of_mm_gpio_chip(gc
);
168 qe_gc
= to_qe_gpio_chip(mm_gc
);
170 spin_lock_irqsave(&qe_gc
->lock
, flags
);
173 if (test_and_set_bit(QE_PIN_REQUESTED
, &qe_gc
->pin_flags
[err
]) == 0) {
174 qe_pin
->controller
= qe_gc
;
181 spin_unlock_irqrestore(&qe_gc
->lock
, flags
);
187 pr_debug("%s failed with status %d\n", __func__
, err
);
190 EXPORT_SYMBOL(qe_pin_request
);
193 * qe_pin_free - Free a pin
194 * @qe_pin: pointer to the qe_pin structure
197 * This function frees the qe_pin structure and makes a pin available
198 * for further qe_pin_request() calls.
200 void qe_pin_free(struct qe_pin
*qe_pin
)
202 struct qe_gpio_chip
*qe_gc
= qe_pin
->controller
;
204 const int pin
= qe_pin
->num
;
206 spin_lock_irqsave(&qe_gc
->lock
, flags
);
207 test_and_clear_bit(QE_PIN_REQUESTED
, &qe_gc
->pin_flags
[pin
]);
208 spin_unlock_irqrestore(&qe_gc
->lock
, flags
);
212 EXPORT_SYMBOL(qe_pin_free
);
215 * qe_pin_set_dedicated - Revert a pin to a dedicated peripheral function mode
216 * @qe_pin: pointer to the qe_pin structure
219 * This function resets a pin to a dedicated peripheral function that
220 * has been set up by the firmware.
222 void qe_pin_set_dedicated(struct qe_pin
*qe_pin
)
224 struct qe_gpio_chip
*qe_gc
= qe_pin
->controller
;
225 struct qe_pio_regs __iomem
*regs
= qe_gc
->mm_gc
.regs
;
226 struct qe_pio_regs
*sregs
= &qe_gc
->saved_regs
;
227 int pin
= qe_pin
->num
;
228 u32 mask1
= 1 << (QE_PIO_PINS
- (pin
+ 1));
229 u32 mask2
= 0x3 << (QE_PIO_PINS
- (pin
% (QE_PIO_PINS
/ 2) + 1) * 2);
230 bool second_reg
= pin
> (QE_PIO_PINS
/ 2) - 1;
233 spin_lock_irqsave(&qe_gc
->lock
, flags
);
236 clrsetbits_be32(®s
->cpdir2
, mask2
, sregs
->cpdir2
& mask2
);
237 clrsetbits_be32(®s
->cppar2
, mask2
, sregs
->cppar2
& mask2
);
239 clrsetbits_be32(®s
->cpdir1
, mask2
, sregs
->cpdir1
& mask2
);
240 clrsetbits_be32(®s
->cppar1
, mask2
, sregs
->cppar1
& mask2
);
243 if (sregs
->cpdata
& mask1
)
244 qe_gc
->cpdata
|= mask1
;
246 qe_gc
->cpdata
&= ~mask1
;
248 out_be32(®s
->cpdata
, qe_gc
->cpdata
);
249 clrsetbits_be32(®s
->cpodr
, mask1
, sregs
->cpodr
& mask1
);
251 spin_unlock_irqrestore(&qe_gc
->lock
, flags
);
253 EXPORT_SYMBOL(qe_pin_set_dedicated
);
256 * qe_pin_set_gpio - Set a pin to the GPIO mode
257 * @qe_pin: pointer to the qe_pin structure
260 * This function sets a pin to the GPIO mode.
262 void qe_pin_set_gpio(struct qe_pin
*qe_pin
)
264 struct qe_gpio_chip
*qe_gc
= qe_pin
->controller
;
265 struct qe_pio_regs __iomem
*regs
= qe_gc
->mm_gc
.regs
;
268 spin_lock_irqsave(&qe_gc
->lock
, flags
);
270 /* Let's make it input by default, GPIO API is able to change that. */
271 __par_io_config_pin(regs
, qe_pin
->num
, QE_PIO_DIR_IN
, 0, 0, 0);
273 spin_unlock_irqrestore(&qe_gc
->lock
, flags
);
275 EXPORT_SYMBOL(qe_pin_set_gpio
);
277 static int __init
qe_add_gpiochips(void)
279 struct device_node
*np
;
281 for_each_compatible_node(np
, NULL
, "fsl,mpc8323-qe-pario-bank") {
283 struct qe_gpio_chip
*qe_gc
;
284 struct of_mm_gpio_chip
*mm_gc
;
285 struct gpio_chip
*gc
;
287 qe_gc
= kzalloc(sizeof(*qe_gc
), GFP_KERNEL
);
293 spin_lock_init(&qe_gc
->lock
);
295 mm_gc
= &qe_gc
->mm_gc
;
298 mm_gc
->save_regs
= qe_gpio_save_regs
;
299 gc
->ngpio
= QE_PIO_PINS
;
300 gc
->direction_input
= qe_gpio_dir_in
;
301 gc
->direction_output
= qe_gpio_dir_out
;
302 gc
->get
= qe_gpio_get
;
303 gc
->set
= qe_gpio_set
;
305 ret
= of_mm_gpiochip_add(np
, mm_gc
);
310 pr_err("%s: registration failed with status %d\n",
313 /* try others anyway */
317 arch_initcall(qe_add_gpiochips
);