blob: 0e97856b2cffafd8dc10218c95d2eae64169c17a [file] [log] [blame]
Anton Vorontsovaeec56e2010-10-27 15:33:15 -07001/*
2 * Basic memory-mapped GPIO controllers.
3 *
4 * Copyright 2008 MontaVista Software, Inc.
5 * Copyright 2008,2010 Anton Vorontsov <cbouatmailru@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 */
12
13#ifndef __BASIC_MMIO_GPIO_H
14#define __BASIC_MMIO_GPIO_H
15
Jamie Iles280df6b2011-05-20 00:40:19 -060016#include <linux/gpio.h>
17#include <linux/types.h>
18#include <linux/compiler.h>
Jamie Ilese5ea3f12011-06-10 13:44:49 +010019#include <linux/spinlock_types.h>
Jamie Iles280df6b2011-05-20 00:40:19 -060020
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070021struct bgpio_pdata {
Pawel Moll781f6d72014-01-30 13:18:57 +000022 const char *label;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070023 int base;
Jamie Iles924e7a92011-05-20 00:40:15 -060024 int ngpio;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070025};
26
Jamie Iles280df6b2011-05-20 00:40:19 -060027struct device;
28
29struct bgpio_chip {
30 struct gpio_chip gc;
31
32 unsigned long (*read_reg)(void __iomem *reg);
33 void (*write_reg)(void __iomem *reg, unsigned long data);
34
35 void __iomem *reg_dat;
36 void __iomem *reg_set;
37 void __iomem *reg_clr;
38 void __iomem *reg_dir;
39
40 /* Number of bits (GPIOs): <register width> * 8. */
41 int bits;
42
43 /*
44 * Some GPIO controllers work with the big-endian bits notation,
45 * e.g. in a 8-bits register, GPIO7 is the least significant bit.
46 */
47 unsigned long (*pin2mask)(struct bgpio_chip *bgc, unsigned int pin);
48
49 /*
50 * Used to lock bgpio_chip->data. Also, this is needed to keep
51 * shadowed and real data registers writes together.
52 */
53 spinlock_t lock;
54
55 /* Shadowed data register to clear/set bits safely. */
56 unsigned long data;
57
58 /* Shadowed direction registers to clear/set direction safely. */
59 unsigned long dir;
60};
61
62static inline struct bgpio_chip *to_bgpio_chip(struct gpio_chip *gc)
63{
64 return container_of(gc, struct bgpio_chip, gc);
65}
66
Russell King4f5b0482011-09-14 16:22:29 -070067int bgpio_remove(struct bgpio_chip *bgc);
68int bgpio_init(struct bgpio_chip *bgc, struct device *dev,
69 unsigned long sz, void __iomem *dat, void __iomem *set,
70 void __iomem *clr, void __iomem *dirout, void __iomem *dirin,
Shawn Guo3e11f7b2012-05-19 21:34:58 +080071 unsigned long flags);
72
73#define BGPIOF_BIG_ENDIAN BIT(0)
74#define BGPIOF_UNREADABLE_REG_SET BIT(1) /* reg_set is unreadable */
75#define BGPIOF_UNREADABLE_REG_DIR BIT(2) /* reg_dir is unreadable */
Andreas Larsson2b78f1e2013-03-15 14:45:38 +010076#define BGPIOF_BIG_ENDIAN_BYTE_ORDER BIT(3)
Jamie Iles280df6b2011-05-20 00:40:19 -060077
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070078#endif /* __BASIC_MMIO_GPIO_H */