| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 1 | /* | 
 | 2 |  * Generic GPIO driver for logic cells found in the Nomadik SoC | 
 | 3 |  * | 
 | 4 |  * Copyright (C) 2008,2009 STMicroelectronics | 
 | 5 |  * Copyright (C) 2009 Alessandro Rubini <rubini@unipv.it> | 
 | 6 |  *   Rewritten based on work by Prafulla WADASKAR <prafulla.wadaskar@st.com> | 
 | 7 |  * | 
 | 8 |  * This program is free software; you can redistribute it and/or modify | 
 | 9 |  * it under the terms of the GNU General Public License version 2 as | 
 | 10 |  * published by the Free Software Foundation. | 
 | 11 |  */ | 
 | 12 | #include <linux/kernel.h> | 
 | 13 | #include <linux/module.h> | 
 | 14 | #include <linux/init.h> | 
 | 15 | #include <linux/device.h> | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 16 | #include <linux/platform_device.h> | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 17 | #include <linux/io.h> | 
| Rabin Vincent | af7dc22 | 2010-05-06 11:14:17 +0100 | [diff] [blame] | 18 | #include <linux/clk.h> | 
 | 19 | #include <linux/err.h> | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 20 | #include <linux/gpio.h> | 
 | 21 | #include <linux/spinlock.h> | 
 | 22 | #include <linux/interrupt.h> | 
 | 23 | #include <linux/irq.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 25 |  | 
| Rabin Vincent | 378be06 | 2010-06-02 06:06:29 +0100 | [diff] [blame] | 26 | #include <plat/pincfg.h> | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 27 | #include <mach/hardware.h> | 
 | 28 | #include <mach/gpio.h> | 
 | 29 |  | 
 | 30 | /* | 
 | 31 |  * The GPIO module in the Nomadik family of Systems-on-Chip is an | 
 | 32 |  * AMBA device, managing 32 pins and alternate functions.  The logic block | 
 | 33 |  * is currently only used in the Nomadik. | 
 | 34 |  * | 
 | 35 |  * Symbols in this file are called "nmk_gpio" for "nomadik gpio" | 
 | 36 |  */ | 
 | 37 |  | 
 | 38 | #define NMK_GPIO_PER_CHIP 32 | 
 | 39 | struct nmk_gpio_chip { | 
 | 40 | 	struct gpio_chip chip; | 
 | 41 | 	void __iomem *addr; | 
| Rabin Vincent | af7dc22 | 2010-05-06 11:14:17 +0100 | [diff] [blame] | 42 | 	struct clk *clk; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 43 | 	unsigned int parent_irq; | 
| Rabin Vincent | c0fcb8d | 2010-03-03 04:48:54 +0100 | [diff] [blame] | 44 | 	spinlock_t lock; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 45 | 	/* Keep track of configured edges */ | 
 | 46 | 	u32 edge_rising; | 
 | 47 | 	u32 edge_falling; | 
 | 48 | }; | 
 | 49 |  | 
| Rabin Vincent | 6f9a974 | 2010-06-02 05:50:28 +0100 | [diff] [blame] | 50 | static void __nmk_gpio_set_mode(struct nmk_gpio_chip *nmk_chip, | 
 | 51 | 				unsigned offset, int gpio_mode) | 
 | 52 | { | 
 | 53 | 	u32 bit = 1 << offset; | 
 | 54 | 	u32 afunc, bfunc; | 
 | 55 |  | 
 | 56 | 	afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & ~bit; | 
 | 57 | 	bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & ~bit; | 
 | 58 | 	if (gpio_mode & NMK_GPIO_ALT_A) | 
 | 59 | 		afunc |= bit; | 
 | 60 | 	if (gpio_mode & NMK_GPIO_ALT_B) | 
 | 61 | 		bfunc |= bit; | 
 | 62 | 	writel(afunc, nmk_chip->addr + NMK_GPIO_AFSLA); | 
 | 63 | 	writel(bfunc, nmk_chip->addr + NMK_GPIO_AFSLB); | 
 | 64 | } | 
 | 65 |  | 
| Rabin Vincent | 81a3c29 | 2010-05-27 12:39:23 +0100 | [diff] [blame] | 66 | static void __nmk_gpio_set_slpm(struct nmk_gpio_chip *nmk_chip, | 
 | 67 | 				unsigned offset, enum nmk_gpio_slpm mode) | 
 | 68 | { | 
 | 69 | 	u32 bit = 1 << offset; | 
 | 70 | 	u32 slpm; | 
 | 71 |  | 
 | 72 | 	slpm = readl(nmk_chip->addr + NMK_GPIO_SLPC); | 
 | 73 | 	if (mode == NMK_GPIO_SLPM_NOCHANGE) | 
 | 74 | 		slpm |= bit; | 
 | 75 | 	else | 
 | 76 | 		slpm &= ~bit; | 
 | 77 | 	writel(slpm, nmk_chip->addr + NMK_GPIO_SLPC); | 
 | 78 | } | 
 | 79 |  | 
| Rabin Vincent | 5b327ed | 2010-05-27 12:29:50 +0100 | [diff] [blame] | 80 | static void __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip, | 
 | 81 | 				unsigned offset, enum nmk_gpio_pull pull) | 
 | 82 | { | 
 | 83 | 	u32 bit = 1 << offset; | 
 | 84 | 	u32 pdis; | 
 | 85 |  | 
 | 86 | 	pdis = readl(nmk_chip->addr + NMK_GPIO_PDIS); | 
 | 87 | 	if (pull == NMK_GPIO_PULL_NONE) | 
 | 88 | 		pdis |= bit; | 
 | 89 | 	else | 
 | 90 | 		pdis &= ~bit; | 
 | 91 | 	writel(pdis, nmk_chip->addr + NMK_GPIO_PDIS); | 
 | 92 |  | 
 | 93 | 	if (pull == NMK_GPIO_PULL_UP) | 
 | 94 | 		writel(bit, nmk_chip->addr + NMK_GPIO_DATS); | 
 | 95 | 	else if (pull == NMK_GPIO_PULL_DOWN) | 
 | 96 | 		writel(bit, nmk_chip->addr + NMK_GPIO_DATC); | 
 | 97 | } | 
 | 98 |  | 
| Rabin Vincent | 378be06 | 2010-06-02 06:06:29 +0100 | [diff] [blame] | 99 | static void __nmk_gpio_make_input(struct nmk_gpio_chip *nmk_chip, | 
 | 100 | 				  unsigned offset) | 
 | 101 | { | 
 | 102 | 	writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC); | 
 | 103 | } | 
 | 104 |  | 
 | 105 | static void __nmk_config_pin(struct nmk_gpio_chip *nmk_chip, unsigned offset, | 
 | 106 | 			     pin_cfg_t cfg) | 
 | 107 | { | 
 | 108 | 	static const char *afnames[] = { | 
 | 109 | 		[NMK_GPIO_ALT_GPIO]	= "GPIO", | 
 | 110 | 		[NMK_GPIO_ALT_A]	= "A", | 
 | 111 | 		[NMK_GPIO_ALT_B]	= "B", | 
 | 112 | 		[NMK_GPIO_ALT_C]	= "C" | 
 | 113 | 	}; | 
 | 114 | 	static const char *pullnames[] = { | 
 | 115 | 		[NMK_GPIO_PULL_NONE]	= "none", | 
 | 116 | 		[NMK_GPIO_PULL_UP]	= "up", | 
 | 117 | 		[NMK_GPIO_PULL_DOWN]	= "down", | 
 | 118 | 		[3] /* illegal */	= "??" | 
 | 119 | 	}; | 
 | 120 | 	static const char *slpmnames[] = { | 
| Rabin Vincent | 7e3f7e5 | 2010-09-02 11:28:05 +0100 | [diff] [blame^] | 121 | 		[NMK_GPIO_SLPM_INPUT]		= "input/wakeup", | 
 | 122 | 		[NMK_GPIO_SLPM_NOCHANGE]	= "no-change/no-wakeup", | 
| Rabin Vincent | 378be06 | 2010-06-02 06:06:29 +0100 | [diff] [blame] | 123 | 	}; | 
 | 124 |  | 
 | 125 | 	int pin = PIN_NUM(cfg); | 
 | 126 | 	int pull = PIN_PULL(cfg); | 
 | 127 | 	int af = PIN_ALT(cfg); | 
 | 128 | 	int slpm = PIN_SLPM(cfg); | 
 | 129 |  | 
 | 130 | 	dev_dbg(nmk_chip->chip.dev, "pin %d: af %s, pull %s, slpm %s\n", | 
 | 131 | 		pin, afnames[af], pullnames[pull], slpmnames[slpm]); | 
 | 132 |  | 
 | 133 | 	__nmk_gpio_make_input(nmk_chip, offset); | 
 | 134 | 	__nmk_gpio_set_pull(nmk_chip, offset, pull); | 
 | 135 | 	__nmk_gpio_set_slpm(nmk_chip, offset, slpm); | 
 | 136 | 	__nmk_gpio_set_mode(nmk_chip, offset, af); | 
 | 137 | } | 
 | 138 |  | 
 | 139 | /** | 
 | 140 |  * nmk_config_pin - configure a pin's mux attributes | 
 | 141 |  * @cfg: pin confguration | 
 | 142 |  * | 
 | 143 |  * Configures a pin's mode (alternate function or GPIO), its pull up status, | 
 | 144 |  * and its sleep mode based on the specified configuration.  The @cfg is | 
 | 145 |  * usually one of the SoC specific macros defined in mach/<soc>-pins.h.  These | 
 | 146 |  * are constructed using, and can be further enhanced with, the macros in | 
 | 147 |  * plat/pincfg.h. | 
 | 148 |  * | 
 | 149 |  * If a pin's mode is set to GPIO, it is configured as an input to avoid | 
 | 150 |  * side-effects.  The gpio can be manipulated later using standard GPIO API | 
 | 151 |  * calls. | 
 | 152 |  */ | 
 | 153 | int nmk_config_pin(pin_cfg_t cfg) | 
 | 154 | { | 
 | 155 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 156 | 	int gpio = PIN_NUM(cfg); | 
 | 157 | 	unsigned long flags; | 
 | 158 |  | 
 | 159 | 	nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio)); | 
 | 160 | 	if (!nmk_chip) | 
 | 161 | 		return -EINVAL; | 
 | 162 |  | 
 | 163 | 	spin_lock_irqsave(&nmk_chip->lock, flags); | 
 | 164 | 	__nmk_config_pin(nmk_chip, gpio - nmk_chip->chip.base, cfg); | 
 | 165 | 	spin_unlock_irqrestore(&nmk_chip->lock, flags); | 
 | 166 |  | 
 | 167 | 	return 0; | 
 | 168 | } | 
 | 169 | EXPORT_SYMBOL(nmk_config_pin); | 
 | 170 |  | 
 | 171 | /** | 
 | 172 |  * nmk_config_pins - configure several pins at once | 
 | 173 |  * @cfgs: array of pin configurations | 
 | 174 |  * @num: number of elments in the array | 
 | 175 |  * | 
 | 176 |  * Configures several pins using nmk_config_pin().  Refer to that function for | 
 | 177 |  * further information. | 
 | 178 |  */ | 
 | 179 | int nmk_config_pins(pin_cfg_t *cfgs, int num) | 
 | 180 | { | 
 | 181 | 	int ret = 0; | 
 | 182 | 	int i; | 
 | 183 |  | 
 | 184 | 	for (i = 0; i < num; i++) { | 
 | 185 | 		int ret = nmk_config_pin(cfgs[i]); | 
 | 186 | 		if (ret) | 
 | 187 | 			break; | 
 | 188 | 	} | 
 | 189 |  | 
 | 190 | 	return ret; | 
 | 191 | } | 
 | 192 | EXPORT_SYMBOL(nmk_config_pins); | 
 | 193 |  | 
| Rabin Vincent | 5b327ed | 2010-05-27 12:29:50 +0100 | [diff] [blame] | 194 | /** | 
| Rabin Vincent | 81a3c29 | 2010-05-27 12:39:23 +0100 | [diff] [blame] | 195 |  * nmk_gpio_set_slpm() - configure the sleep mode of a pin | 
 | 196 |  * @gpio: pin number | 
 | 197 |  * @mode: NMK_GPIO_SLPM_INPUT or NMK_GPIO_SLPM_NOCHANGE, | 
 | 198 |  * | 
 | 199 |  * Sets the sleep mode of a pin.  If @mode is NMK_GPIO_SLPM_INPUT, the pin is | 
 | 200 |  * changed to an input (with pullup/down enabled) in sleep and deep sleep.  If | 
 | 201 |  * @mode is NMK_GPIO_SLPM_NOCHANGE, the pin remains in the state it was | 
 | 202 |  * configured even when in sleep and deep sleep. | 
| Rabin Vincent | 7e3f7e5 | 2010-09-02 11:28:05 +0100 | [diff] [blame^] | 203 |  * | 
 | 204 |  * On DB8500v2 onwards, this setting loses the previous meaning and instead | 
 | 205 |  * indicates if wakeup detection is enabled on the pin.  Note that | 
 | 206 |  * enable_irq_wake() will automatically enable wakeup detection. | 
| Rabin Vincent | 81a3c29 | 2010-05-27 12:39:23 +0100 | [diff] [blame] | 207 |  */ | 
 | 208 | int nmk_gpio_set_slpm(int gpio, enum nmk_gpio_slpm mode) | 
 | 209 | { | 
 | 210 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 211 | 	unsigned long flags; | 
 | 212 |  | 
 | 213 | 	nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio)); | 
 | 214 | 	if (!nmk_chip) | 
 | 215 | 		return -EINVAL; | 
 | 216 |  | 
 | 217 | 	spin_lock_irqsave(&nmk_chip->lock, flags); | 
 | 218 | 	__nmk_gpio_set_slpm(nmk_chip, gpio - nmk_chip->chip.base, mode); | 
 | 219 | 	spin_unlock_irqrestore(&nmk_chip->lock, flags); | 
 | 220 |  | 
 | 221 | 	return 0; | 
 | 222 | } | 
 | 223 |  | 
 | 224 | /** | 
| Rabin Vincent | 5b327ed | 2010-05-27 12:29:50 +0100 | [diff] [blame] | 225 |  * nmk_gpio_set_pull() - enable/disable pull up/down on a gpio | 
 | 226 |  * @gpio: pin number | 
 | 227 |  * @pull: one of NMK_GPIO_PULL_DOWN, NMK_GPIO_PULL_UP, and NMK_GPIO_PULL_NONE | 
 | 228 |  * | 
 | 229 |  * Enables/disables pull up/down on a specified pin.  This only takes effect if | 
 | 230 |  * the pin is configured as an input (either explicitly or by the alternate | 
 | 231 |  * function). | 
 | 232 |  * | 
 | 233 |  * NOTE: If enabling the pull up/down, the caller must ensure that the GPIO is | 
 | 234 |  * configured as an input.  Otherwise, due to the way the controller registers | 
 | 235 |  * work, this function will change the value output on the pin. | 
 | 236 |  */ | 
 | 237 | int nmk_gpio_set_pull(int gpio, enum nmk_gpio_pull pull) | 
 | 238 | { | 
 | 239 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 240 | 	unsigned long flags; | 
 | 241 |  | 
 | 242 | 	nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio)); | 
 | 243 | 	if (!nmk_chip) | 
 | 244 | 		return -EINVAL; | 
 | 245 |  | 
 | 246 | 	spin_lock_irqsave(&nmk_chip->lock, flags); | 
 | 247 | 	__nmk_gpio_set_pull(nmk_chip, gpio - nmk_chip->chip.base, pull); | 
 | 248 | 	spin_unlock_irqrestore(&nmk_chip->lock, flags); | 
 | 249 |  | 
 | 250 | 	return 0; | 
 | 251 | } | 
 | 252 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 253 | /* Mode functions */ | 
 | 254 | int nmk_gpio_set_mode(int gpio, int gpio_mode) | 
 | 255 | { | 
 | 256 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 257 | 	unsigned long flags; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 258 |  | 
 | 259 | 	nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio)); | 
 | 260 | 	if (!nmk_chip) | 
 | 261 | 		return -EINVAL; | 
 | 262 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 263 | 	spin_lock_irqsave(&nmk_chip->lock, flags); | 
| Rabin Vincent | 6f9a974 | 2010-06-02 05:50:28 +0100 | [diff] [blame] | 264 | 	__nmk_gpio_set_mode(nmk_chip, gpio - nmk_chip->chip.base, gpio_mode); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 265 | 	spin_unlock_irqrestore(&nmk_chip->lock, flags); | 
 | 266 |  | 
 | 267 | 	return 0; | 
 | 268 | } | 
 | 269 | EXPORT_SYMBOL(nmk_gpio_set_mode); | 
 | 270 |  | 
 | 271 | int nmk_gpio_get_mode(int gpio) | 
 | 272 | { | 
 | 273 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 274 | 	u32 afunc, bfunc, bit; | 
 | 275 |  | 
 | 276 | 	nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio)); | 
 | 277 | 	if (!nmk_chip) | 
 | 278 | 		return -EINVAL; | 
 | 279 |  | 
 | 280 | 	bit = 1 << (gpio - nmk_chip->chip.base); | 
 | 281 |  | 
 | 282 | 	afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & bit; | 
 | 283 | 	bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & bit; | 
 | 284 |  | 
 | 285 | 	return (afunc ? NMK_GPIO_ALT_A : 0) | (bfunc ? NMK_GPIO_ALT_B : 0); | 
 | 286 | } | 
 | 287 | EXPORT_SYMBOL(nmk_gpio_get_mode); | 
 | 288 |  | 
 | 289 |  | 
 | 290 | /* IRQ functions */ | 
 | 291 | static inline int nmk_gpio_get_bitmask(int gpio) | 
 | 292 | { | 
 | 293 | 	return 1 << (gpio % 32); | 
 | 294 | } | 
 | 295 |  | 
 | 296 | static void nmk_gpio_irq_ack(unsigned int irq) | 
 | 297 | { | 
 | 298 | 	int gpio; | 
 | 299 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 300 |  | 
 | 301 | 	gpio = NOMADIK_IRQ_TO_GPIO(irq); | 
 | 302 | 	nmk_chip = get_irq_chip_data(irq); | 
 | 303 | 	if (!nmk_chip) | 
 | 304 | 		return; | 
 | 305 | 	writel(nmk_gpio_get_bitmask(gpio), nmk_chip->addr + NMK_GPIO_IC); | 
 | 306 | } | 
 | 307 |  | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 308 | enum nmk_gpio_irq_type { | 
 | 309 | 	NORMAL, | 
 | 310 | 	WAKE, | 
 | 311 | }; | 
 | 312 |  | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 313 | static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip, | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 314 | 				  int gpio, enum nmk_gpio_irq_type which, | 
 | 315 | 				  bool enable) | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 316 | { | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 317 | 	u32 rimsc = which == WAKE ? NMK_GPIO_RWIMSC : NMK_GPIO_RIMSC; | 
 | 318 | 	u32 fimsc = which == WAKE ? NMK_GPIO_FWIMSC : NMK_GPIO_FIMSC; | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 319 | 	u32 bitmask = nmk_gpio_get_bitmask(gpio); | 
 | 320 | 	u32 reg; | 
 | 321 |  | 
 | 322 | 	/* we must individually set/clear the two edges */ | 
 | 323 | 	if (nmk_chip->edge_rising & bitmask) { | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 324 | 		reg = readl(nmk_chip->addr + rimsc); | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 325 | 		if (enable) | 
 | 326 | 			reg |= bitmask; | 
 | 327 | 		else | 
 | 328 | 			reg &= ~bitmask; | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 329 | 		writel(reg, nmk_chip->addr + rimsc); | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 330 | 	} | 
 | 331 | 	if (nmk_chip->edge_falling & bitmask) { | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 332 | 		reg = readl(nmk_chip->addr + fimsc); | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 333 | 		if (enable) | 
 | 334 | 			reg |= bitmask; | 
 | 335 | 		else | 
 | 336 | 			reg &= ~bitmask; | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 337 | 		writel(reg, nmk_chip->addr + fimsc); | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 338 | 	} | 
 | 339 | } | 
 | 340 |  | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 341 | static int nmk_gpio_irq_modify(unsigned int irq, enum nmk_gpio_irq_type which, | 
 | 342 | 			       bool enable) | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 343 | { | 
 | 344 | 	int gpio; | 
 | 345 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 346 | 	unsigned long flags; | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 347 | 	u32 bitmask; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 348 |  | 
 | 349 | 	gpio = NOMADIK_IRQ_TO_GPIO(irq); | 
 | 350 | 	nmk_chip = get_irq_chip_data(irq); | 
 | 351 | 	bitmask = nmk_gpio_get_bitmask(gpio); | 
 | 352 | 	if (!nmk_chip) | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 353 | 		return -EINVAL; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 354 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 355 | 	spin_lock_irqsave(&nmk_chip->lock, flags); | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 356 | 	__nmk_gpio_irq_modify(nmk_chip, gpio, which, enable); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 357 | 	spin_unlock_irqrestore(&nmk_chip->lock, flags); | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 358 |  | 
 | 359 | 	return 0; | 
| Rabin Vincent | 040e5ec | 2010-05-06 10:42:42 +0100 | [diff] [blame] | 360 | } | 
 | 361 |  | 
 | 362 | static void nmk_gpio_irq_mask(unsigned int irq) | 
 | 363 | { | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 364 | 	nmk_gpio_irq_modify(irq, NORMAL, false); | 
 | 365 | } | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 366 |  | 
 | 367 | static void nmk_gpio_irq_unmask(unsigned int irq) | 
 | 368 | { | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 369 | 	nmk_gpio_irq_modify(irq, NORMAL, true); | 
 | 370 | } | 
 | 371 |  | 
 | 372 | static int nmk_gpio_irq_set_wake(unsigned int irq, unsigned int on) | 
 | 373 | { | 
| Rabin Vincent | 7e3f7e5 | 2010-09-02 11:28:05 +0100 | [diff] [blame^] | 374 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 375 | 	unsigned long flags; | 
 | 376 | 	int gpio; | 
 | 377 |  | 
 | 378 | 	gpio = NOMADIK_IRQ_TO_GPIO(irq); | 
 | 379 | 	nmk_chip = get_irq_chip_data(irq); | 
 | 380 | 	if (!nmk_chip) | 
 | 381 | 		return -EINVAL; | 
 | 382 |  | 
 | 383 | 	spin_lock_irqsave(&nmk_chip->lock, flags); | 
 | 384 | #ifdef CONFIG_ARCH_U8500 | 
 | 385 | 	if (cpu_is_u8500v2()) { | 
 | 386 | 		__nmk_gpio_set_slpm(nmk_chip, gpio, | 
 | 387 | 				    on ? NMK_GPIO_SLPM_WAKEUP_ENABLE | 
 | 388 | 				       : NMK_GPIO_SLPM_WAKEUP_DISABLE); | 
 | 389 | 	} | 
 | 390 | #endif | 
 | 391 | 	__nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on); | 
 | 392 | 	spin_unlock_irqrestore(&nmk_chip->lock, flags); | 
 | 393 |  | 
 | 394 | 	return 0; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 395 | } | 
 | 396 |  | 
 | 397 | static int nmk_gpio_irq_set_type(unsigned int irq, unsigned int type) | 
 | 398 | { | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 399 | 	struct irq_desc *desc = irq_to_desc(irq); | 
 | 400 | 	bool enabled = !(desc->status & IRQ_DISABLED); | 
 | 401 | 	bool wake = desc->wake_depth; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 402 | 	int gpio; | 
 | 403 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 404 | 	unsigned long flags; | 
 | 405 | 	u32 bitmask; | 
 | 406 |  | 
 | 407 | 	gpio = NOMADIK_IRQ_TO_GPIO(irq); | 
 | 408 | 	nmk_chip = get_irq_chip_data(irq); | 
 | 409 | 	bitmask = nmk_gpio_get_bitmask(gpio); | 
 | 410 | 	if (!nmk_chip) | 
 | 411 | 		return -EINVAL; | 
 | 412 |  | 
 | 413 | 	if (type & IRQ_TYPE_LEVEL_HIGH) | 
 | 414 | 		return -EINVAL; | 
 | 415 | 	if (type & IRQ_TYPE_LEVEL_LOW) | 
 | 416 | 		return -EINVAL; | 
 | 417 |  | 
 | 418 | 	spin_lock_irqsave(&nmk_chip->lock, flags); | 
 | 419 |  | 
| Rabin Vincent | 7a852d8 | 2010-05-06 10:43:55 +0100 | [diff] [blame] | 420 | 	if (enabled) | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 421 | 		__nmk_gpio_irq_modify(nmk_chip, gpio, NORMAL, false); | 
 | 422 |  | 
 | 423 | 	if (wake) | 
 | 424 | 		__nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, false); | 
| Rabin Vincent | 7a852d8 | 2010-05-06 10:43:55 +0100 | [diff] [blame] | 425 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 426 | 	nmk_chip->edge_rising &= ~bitmask; | 
 | 427 | 	if (type & IRQ_TYPE_EDGE_RISING) | 
 | 428 | 		nmk_chip->edge_rising |= bitmask; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 429 |  | 
 | 430 | 	nmk_chip->edge_falling &= ~bitmask; | 
 | 431 | 	if (type & IRQ_TYPE_EDGE_FALLING) | 
 | 432 | 		nmk_chip->edge_falling |= bitmask; | 
| Rabin Vincent | 7a852d8 | 2010-05-06 10:43:55 +0100 | [diff] [blame] | 433 |  | 
 | 434 | 	if (enabled) | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 435 | 		__nmk_gpio_irq_modify(nmk_chip, gpio, NORMAL, true); | 
 | 436 |  | 
 | 437 | 	if (wake) | 
 | 438 | 		__nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, true); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 439 |  | 
 | 440 | 	spin_unlock_irqrestore(&nmk_chip->lock, flags); | 
 | 441 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 442 | 	return 0; | 
 | 443 | } | 
 | 444 |  | 
 | 445 | static struct irq_chip nmk_gpio_irq_chip = { | 
 | 446 | 	.name		= "Nomadik-GPIO", | 
 | 447 | 	.ack		= nmk_gpio_irq_ack, | 
 | 448 | 	.mask		= nmk_gpio_irq_mask, | 
 | 449 | 	.unmask		= nmk_gpio_irq_unmask, | 
 | 450 | 	.set_type	= nmk_gpio_irq_set_type, | 
| Rabin Vincent | 4d4e20f | 2010-06-16 06:09:34 +0100 | [diff] [blame] | 451 | 	.set_wake	= nmk_gpio_irq_set_wake, | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 452 | }; | 
 | 453 |  | 
 | 454 | static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | 
 | 455 | { | 
 | 456 | 	struct nmk_gpio_chip *nmk_chip; | 
| Rabin Vincent | aaedaa2 | 2010-03-03 04:50:27 +0100 | [diff] [blame] | 457 | 	struct irq_chip *host_chip = get_irq_chip(irq); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 458 | 	unsigned int gpio_irq; | 
 | 459 | 	u32 pending; | 
 | 460 | 	unsigned int first_irq; | 
 | 461 |  | 
| Rabin Vincent | aaedaa2 | 2010-03-03 04:50:27 +0100 | [diff] [blame] | 462 | 	if (host_chip->mask_ack) | 
 | 463 | 		host_chip->mask_ack(irq); | 
 | 464 | 	else { | 
 | 465 | 		host_chip->mask(irq); | 
 | 466 | 		if (host_chip->ack) | 
 | 467 | 			host_chip->ack(irq); | 
 | 468 | 	} | 
 | 469 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 470 | 	nmk_chip = get_irq_data(irq); | 
 | 471 | 	first_irq = NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base); | 
 | 472 | 	while ( (pending = readl(nmk_chip->addr + NMK_GPIO_IS)) ) { | 
 | 473 | 		gpio_irq = first_irq + __ffs(pending); | 
 | 474 | 		generic_handle_irq(gpio_irq); | 
 | 475 | 	} | 
| Rabin Vincent | aaedaa2 | 2010-03-03 04:50:27 +0100 | [diff] [blame] | 476 |  | 
 | 477 | 	host_chip->unmask(irq); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 478 | } | 
 | 479 |  | 
 | 480 | static int nmk_gpio_init_irq(struct nmk_gpio_chip *nmk_chip) | 
 | 481 | { | 
 | 482 | 	unsigned int first_irq; | 
 | 483 | 	int i; | 
 | 484 |  | 
 | 485 | 	first_irq = NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base); | 
 | 486 | 	for (i = first_irq; i < first_irq + NMK_GPIO_PER_CHIP; i++) { | 
 | 487 | 		set_irq_chip(i, &nmk_gpio_irq_chip); | 
 | 488 | 		set_irq_handler(i, handle_edge_irq); | 
 | 489 | 		set_irq_flags(i, IRQF_VALID); | 
 | 490 | 		set_irq_chip_data(i, nmk_chip); | 
| Rabin Vincent | 2210d64 | 2010-05-06 10:45:18 +0100 | [diff] [blame] | 491 | 		set_irq_type(i, IRQ_TYPE_EDGE_FALLING); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 492 | 	} | 
 | 493 | 	set_irq_chained_handler(nmk_chip->parent_irq, nmk_gpio_irq_handler); | 
 | 494 | 	set_irq_data(nmk_chip->parent_irq, nmk_chip); | 
 | 495 | 	return 0; | 
 | 496 | } | 
 | 497 |  | 
 | 498 | /* I/O Functions */ | 
 | 499 | static int nmk_gpio_make_input(struct gpio_chip *chip, unsigned offset) | 
 | 500 | { | 
 | 501 | 	struct nmk_gpio_chip *nmk_chip = | 
 | 502 | 		container_of(chip, struct nmk_gpio_chip, chip); | 
 | 503 |  | 
 | 504 | 	writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC); | 
 | 505 | 	return 0; | 
 | 506 | } | 
 | 507 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 508 | static int nmk_gpio_get_input(struct gpio_chip *chip, unsigned offset) | 
 | 509 | { | 
 | 510 | 	struct nmk_gpio_chip *nmk_chip = | 
 | 511 | 		container_of(chip, struct nmk_gpio_chip, chip); | 
 | 512 | 	u32 bit = 1 << offset; | 
 | 513 |  | 
 | 514 | 	return (readl(nmk_chip->addr + NMK_GPIO_DAT) & bit) != 0; | 
 | 515 | } | 
 | 516 |  | 
 | 517 | static void nmk_gpio_set_output(struct gpio_chip *chip, unsigned offset, | 
 | 518 | 				int val) | 
 | 519 | { | 
 | 520 | 	struct nmk_gpio_chip *nmk_chip = | 
 | 521 | 		container_of(chip, struct nmk_gpio_chip, chip); | 
 | 522 | 	u32 bit = 1 << offset; | 
 | 523 |  | 
 | 524 | 	if (val) | 
 | 525 | 		writel(bit, nmk_chip->addr + NMK_GPIO_DATS); | 
 | 526 | 	else | 
 | 527 | 		writel(bit, nmk_chip->addr + NMK_GPIO_DATC); | 
 | 528 | } | 
 | 529 |  | 
| Rabin Vincent | 6647c6c | 2010-05-27 12:22:42 +0100 | [diff] [blame] | 530 | static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset, | 
 | 531 | 				int val) | 
 | 532 | { | 
 | 533 | 	struct nmk_gpio_chip *nmk_chip = | 
 | 534 | 		container_of(chip, struct nmk_gpio_chip, chip); | 
 | 535 |  | 
 | 536 | 	writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRS); | 
 | 537 | 	nmk_gpio_set_output(chip, offset, val); | 
 | 538 |  | 
 | 539 | 	return 0; | 
 | 540 | } | 
 | 541 |  | 
| Rabin Vincent | 0d2aec9 | 2010-06-16 06:10:43 +0100 | [diff] [blame] | 542 | static int nmk_gpio_to_irq(struct gpio_chip *chip, unsigned offset) | 
 | 543 | { | 
 | 544 | 	struct nmk_gpio_chip *nmk_chip = | 
 | 545 | 		container_of(chip, struct nmk_gpio_chip, chip); | 
 | 546 |  | 
 | 547 | 	return NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base) + offset; | 
 | 548 | } | 
 | 549 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 550 | /* This structure is replicated for each GPIO block allocated at probe time */ | 
 | 551 | static struct gpio_chip nmk_gpio_template = { | 
 | 552 | 	.direction_input	= nmk_gpio_make_input, | 
 | 553 | 	.get			= nmk_gpio_get_input, | 
 | 554 | 	.direction_output	= nmk_gpio_make_output, | 
 | 555 | 	.set			= nmk_gpio_set_output, | 
| Rabin Vincent | 0d2aec9 | 2010-06-16 06:10:43 +0100 | [diff] [blame] | 556 | 	.to_irq			= nmk_gpio_to_irq, | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 557 | 	.ngpio			= NMK_GPIO_PER_CHIP, | 
 | 558 | 	.can_sleep		= 0, | 
 | 559 | }; | 
 | 560 |  | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 561 | static int __init nmk_gpio_probe(struct platform_device *dev) | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 562 | { | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 563 | 	struct nmk_gpio_platform_data *pdata = dev->dev.platform_data; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 564 | 	struct nmk_gpio_chip *nmk_chip; | 
 | 565 | 	struct gpio_chip *chip; | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 566 | 	struct resource *res; | 
| Rabin Vincent | af7dc22 | 2010-05-06 11:14:17 +0100 | [diff] [blame] | 567 | 	struct clk *clk; | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 568 | 	int irq; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 569 | 	int ret; | 
 | 570 |  | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 571 | 	if (!pdata) | 
 | 572 | 		return -ENODEV; | 
 | 573 |  | 
 | 574 | 	res = platform_get_resource(dev, IORESOURCE_MEM, 0); | 
 | 575 | 	if (!res) { | 
 | 576 | 		ret = -ENOENT; | 
 | 577 | 		goto out; | 
 | 578 | 	} | 
 | 579 |  | 
 | 580 | 	irq = platform_get_irq(dev, 0); | 
 | 581 | 	if (irq < 0) { | 
 | 582 | 		ret = irq; | 
 | 583 | 		goto out; | 
 | 584 | 	} | 
 | 585 |  | 
 | 586 | 	if (request_mem_region(res->start, resource_size(res), | 
 | 587 | 			       dev_name(&dev->dev)) == NULL) { | 
 | 588 | 		ret = -EBUSY; | 
 | 589 | 		goto out; | 
 | 590 | 	} | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 591 |  | 
| Rabin Vincent | af7dc22 | 2010-05-06 11:14:17 +0100 | [diff] [blame] | 592 | 	clk = clk_get(&dev->dev, NULL); | 
 | 593 | 	if (IS_ERR(clk)) { | 
 | 594 | 		ret = PTR_ERR(clk); | 
 | 595 | 		goto out_release; | 
 | 596 | 	} | 
 | 597 |  | 
 | 598 | 	clk_enable(clk); | 
 | 599 |  | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 600 | 	nmk_chip = kzalloc(sizeof(*nmk_chip), GFP_KERNEL); | 
 | 601 | 	if (!nmk_chip) { | 
 | 602 | 		ret = -ENOMEM; | 
| Rabin Vincent | af7dc22 | 2010-05-06 11:14:17 +0100 | [diff] [blame] | 603 | 		goto out_clk; | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 604 | 	} | 
 | 605 | 	/* | 
 | 606 | 	 * The virt address in nmk_chip->addr is in the nomadik register space, | 
 | 607 | 	 * so we can simply convert the resource address, without remapping | 
 | 608 | 	 */ | 
| Rabin Vincent | af7dc22 | 2010-05-06 11:14:17 +0100 | [diff] [blame] | 609 | 	nmk_chip->clk = clk; | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 610 | 	nmk_chip->addr = io_p2v(res->start); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 611 | 	nmk_chip->chip = nmk_gpio_template; | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 612 | 	nmk_chip->parent_irq = irq; | 
| Rabin Vincent | c0fcb8d | 2010-03-03 04:48:54 +0100 | [diff] [blame] | 613 | 	spin_lock_init(&nmk_chip->lock); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 614 |  | 
 | 615 | 	chip = &nmk_chip->chip; | 
 | 616 | 	chip->base = pdata->first_gpio; | 
 | 617 | 	chip->label = pdata->name; | 
 | 618 | 	chip->dev = &dev->dev; | 
 | 619 | 	chip->owner = THIS_MODULE; | 
 | 620 |  | 
 | 621 | 	ret = gpiochip_add(&nmk_chip->chip); | 
 | 622 | 	if (ret) | 
 | 623 | 		goto out_free; | 
 | 624 |  | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 625 | 	platform_set_drvdata(dev, nmk_chip); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 626 |  | 
 | 627 | 	nmk_gpio_init_irq(nmk_chip); | 
 | 628 |  | 
 | 629 | 	dev_info(&dev->dev, "Bits %i-%i at address %p\n", | 
 | 630 | 		 nmk_chip->chip.base, nmk_chip->chip.base+31, nmk_chip->addr); | 
 | 631 | 	return 0; | 
 | 632 |  | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 633 | out_free: | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 634 | 	kfree(nmk_chip); | 
| Rabin Vincent | af7dc22 | 2010-05-06 11:14:17 +0100 | [diff] [blame] | 635 | out_clk: | 
 | 636 | 	clk_disable(clk); | 
 | 637 | 	clk_put(clk); | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 638 | out_release: | 
 | 639 | 	release_mem_region(res->start, resource_size(res)); | 
 | 640 | out: | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 641 | 	dev_err(&dev->dev, "Failure %i for GPIO %i-%i\n", ret, | 
 | 642 | 		  pdata->first_gpio, pdata->first_gpio+31); | 
 | 643 | 	return ret; | 
 | 644 | } | 
 | 645 |  | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 646 | static struct platform_driver nmk_gpio_driver = { | 
 | 647 | 	.driver = { | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 648 | 		.owner = THIS_MODULE, | 
 | 649 | 		.name = "gpio", | 
 | 650 | 		}, | 
 | 651 | 	.probe = nmk_gpio_probe, | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 652 | 	.suspend = NULL, /* to be done */ | 
 | 653 | 	.resume = NULL, | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 654 | }; | 
 | 655 |  | 
 | 656 | static int __init nmk_gpio_init(void) | 
 | 657 | { | 
| Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 658 | 	return platform_driver_register(&nmk_gpio_driver); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 659 | } | 
 | 660 |  | 
| Rabin Vincent | 33f45ea | 2010-06-02 06:09:52 +0100 | [diff] [blame] | 661 | core_initcall(nmk_gpio_init); | 
| Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 662 |  | 
 | 663 | MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini"); | 
 | 664 | MODULE_DESCRIPTION("Nomadik GPIO Driver"); | 
 | 665 | MODULE_LICENSE("GPL"); | 
 | 666 |  | 
 | 667 |  |