diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2011-02-17 08:43:48 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-03-07 13:29:37 -0500 |
commit | 5ae30b477e9fb7319e2976fbf3521c0fac2625f1 (patch) | |
tree | e9c943a384e61b4552175e35a981bdf2316baba2 /arch/arm/plat-mxc | |
parent | 9685a3609d7f15297987c511c323b43693317960 (diff) |
ARM i.MX: Move gpio initialization to SoC specific files
This saves us from soc level dispatching in generic files
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc')
-rw-r--r-- | arch/arm/plat-mxc/gpio.c | 110 | ||||
-rw-r--r-- | arch/arm/plat-mxc/include/mach/gpio.h | 15 |
2 files changed, 15 insertions, 110 deletions
diff --git a/arch/arm/plat-mxc/gpio.c b/arch/arm/plat-mxc/gpio.c index e396df8faef8..57d59855f9ec 100644 --- a/arch/arm/plat-mxc/gpio.c +++ b/arch/arm/plat-mxc/gpio.c | |||
@@ -350,113 +350,3 @@ int __init mxc_gpio_init(struct mxc_gpio_port *port, int cnt) | |||
350 | 350 | ||
351 | return 0; | 351 | return 0; |
352 | } | 352 | } |
353 | |||
354 | #define DEFINE_IMX_GPIO_PORT_IRQ_HIGH(soc, _id, _hwid, _irq, _irq_high) \ | ||
355 | { \ | ||
356 | .chip.label = "gpio-" #_id, \ | ||
357 | .irq = _irq, \ | ||
358 | .irq_high = _irq_high, \ | ||
359 | .base = soc ## _IO_ADDRESS( \ | ||
360 | soc ## _GPIO ## _hwid ## _BASE_ADDR), \ | ||
361 | .virtual_irq_start = MXC_GPIO_IRQ_START + (_id) * 32, \ | ||
362 | } | ||
363 | |||
364 | #define DEFINE_IMX_GPIO_PORT_IRQ(soc, _id, _hwid, _irq) \ | ||
365 | DEFINE_IMX_GPIO_PORT_IRQ_HIGH(soc, _id, _hwid, _irq, 0) | ||
366 | #define DEFINE_IMX_GPIO_PORT(soc, _id, _hwid) \ | ||
367 | DEFINE_IMX_GPIO_PORT_IRQ(soc, _id, _hwid, 0) | ||
368 | |||
369 | #define DEFINE_REGISTER_FUNCTION(prefix) \ | ||
370 | int __init prefix ## _register_gpios(void) \ | ||
371 | { \ | ||
372 | return mxc_gpio_init(prefix ## _gpio_ports, \ | ||
373 | ARRAY_SIZE(prefix ## _gpio_ports)); \ | ||
374 | } | ||
375 | |||
376 | #if defined(CONFIG_SOC_IMX1) | ||
377 | static struct mxc_gpio_port imx1_gpio_ports[] = { | ||
378 | DEFINE_IMX_GPIO_PORT_IRQ(MX1, 0, 1, MX1_GPIO_INT_PORTA), | ||
379 | DEFINE_IMX_GPIO_PORT_IRQ(MX1, 1, 2, MX1_GPIO_INT_PORTB), | ||
380 | DEFINE_IMX_GPIO_PORT_IRQ(MX1, 2, 3, MX1_GPIO_INT_PORTC), | ||
381 | DEFINE_IMX_GPIO_PORT_IRQ(MX1, 3, 4, MX1_GPIO_INT_PORTD), | ||
382 | }; | ||
383 | |||
384 | DEFINE_REGISTER_FUNCTION(imx1) | ||
385 | |||
386 | #endif /* if defined(CONFIG_SOC_IMX1) */ | ||
387 | |||
388 | #if defined(CONFIG_SOC_IMX21) | ||
389 | static struct mxc_gpio_port imx21_gpio_ports[] = { | ||
390 | DEFINE_IMX_GPIO_PORT_IRQ(MX21, 0, 1, MX21_INT_GPIO), | ||
391 | DEFINE_IMX_GPIO_PORT(MX21, 1, 2), | ||
392 | DEFINE_IMX_GPIO_PORT(MX21, 2, 3), | ||
393 | DEFINE_IMX_GPIO_PORT(MX21, 3, 4), | ||
394 | DEFINE_IMX_GPIO_PORT(MX21, 4, 5), | ||
395 | DEFINE_IMX_GPIO_PORT(MX21, 5, 6), | ||
396 | }; | ||
397 | |||
398 | DEFINE_REGISTER_FUNCTION(imx21) | ||
399 | |||
400 | #endif /* if defined(CONFIG_SOC_IMX21) */ | ||
401 | |||
402 | #if defined(CONFIG_SOC_IMX25) | ||
403 | static struct mxc_gpio_port imx25_gpio_ports[] = { | ||
404 | DEFINE_IMX_GPIO_PORT_IRQ(MX25, 0, 1, MX25_INT_GPIO1), | ||
405 | DEFINE_IMX_GPIO_PORT_IRQ(MX25, 1, 2, MX25_INT_GPIO2), | ||
406 | DEFINE_IMX_GPIO_PORT_IRQ(MX25, 2, 3, MX25_INT_GPIO3), | ||
407 | DEFINE_IMX_GPIO_PORT_IRQ(MX25, 3, 4, MX25_INT_GPIO4), | ||
408 | }; | ||
409 | |||
410 | DEFINE_REGISTER_FUNCTION(imx25) | ||
411 | |||
412 | #endif /* if defined(CONFIG_SOC_IMX25) */ | ||
413 | |||
414 | #if defined(CONFIG_SOC_IMX27) | ||
415 | static struct mxc_gpio_port imx27_gpio_ports[] = { | ||
416 | DEFINE_IMX_GPIO_PORT_IRQ(MX27, 0, 1, MX27_INT_GPIO), | ||
417 | DEFINE_IMX_GPIO_PORT(MX27, 1, 2), | ||
418 | DEFINE_IMX_GPIO_PORT(MX27, 2, 3), | ||
419 | DEFINE_IMX_GPIO_PORT(MX27, 3, 4), | ||
420 | DEFINE_IMX_GPIO_PORT(MX27, 4, 5), | ||
421 | DEFINE_IMX_GPIO_PORT(MX27, 5, 6), | ||
422 | }; | ||
423 | |||
424 | DEFINE_REGISTER_FUNCTION(imx27) | ||
425 | |||
426 | #endif /* if defined(CONFIG_SOC_IMX27) */ | ||
427 | |||
428 | #if defined(CONFIG_SOC_IMX31) | ||
429 | static struct mxc_gpio_port imx31_gpio_ports[] = { | ||
430 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 0, 1, MX31_INT_GPIO1), | ||
431 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 1, 2, MX31_INT_GPIO2), | ||
432 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 2, 3, MX31_INT_GPIO3), | ||
433 | }; | ||
434 | |||
435 | DEFINE_REGISTER_FUNCTION(imx31) | ||
436 | |||
437 | #endif /* if defined(CONFIG_SOC_IMX31) */ | ||
438 | |||
439 | #if defined(CONFIG_SOC_IMX35) | ||
440 | static struct mxc_gpio_port imx35_gpio_ports[] = { | ||
441 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 0, 1, MX35_INT_GPIO1), | ||
442 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 1, 2, MX35_INT_GPIO2), | ||
443 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 2, 3, MX35_INT_GPIO3), | ||
444 | }; | ||
445 | |||
446 | DEFINE_REGISTER_FUNCTION(imx35) | ||
447 | |||
448 | #endif /* if defined(CONFIG_SOC_IMX35) */ | ||
449 | |||
450 | #if defined(CONFIG_SOC_IMX50) | ||
451 | static struct mxc_gpio_port imx50_gpio_ports[] = { | ||
452 | DEFINE_IMX_GPIO_PORT_IRQ_HIGH(MX50, 0, 1, MX50_INT_GPIO1_LOW, MX50_INT_GPIO1_HIGH), | ||
453 | DEFINE_IMX_GPIO_PORT_IRQ_HIGH(MX50, 1, 2, MX50_INT_GPIO2_LOW, MX50_INT_GPIO2_HIGH), | ||
454 | DEFINE_IMX_GPIO_PORT_IRQ_HIGH(MX50, 2, 3, MX50_INT_GPIO3_LOW, MX50_INT_GPIO3_HIGH), | ||
455 | DEFINE_IMX_GPIO_PORT_IRQ_HIGH(MX50, 3, 4, MX50_INT_GPIO3_LOW, MX50_INT_GPIO3_HIGH), | ||
456 | DEFINE_IMX_GPIO_PORT_IRQ_HIGH(MX50, 4, 5, MX50_INT_GPIO3_LOW, MX50_INT_GPIO3_HIGH), | ||
457 | DEFINE_IMX_GPIO_PORT_IRQ_HIGH(MX50, 5, 6, MX50_INT_GPIO3_LOW, MX50_INT_GPIO3_HIGH), | ||
458 | }; | ||
459 | |||
460 | DEFINE_REGISTER_FUNCTION(imx50) | ||
461 | |||
462 | #endif /* if defined(CONFIG_SOC_IMX50) */ | ||
diff --git a/arch/arm/plat-mxc/include/mach/gpio.h b/arch/arm/plat-mxc/include/mach/gpio.h index 0044e2f1bea8..a2747f12813e 100644 --- a/arch/arm/plat-mxc/include/mach/gpio.h +++ b/arch/arm/plat-mxc/include/mach/gpio.h | |||
@@ -46,6 +46,21 @@ struct mxc_gpio_port { | |||
46 | spinlock_t lock; | 46 | spinlock_t lock; |
47 | }; | 47 | }; |
48 | 48 | ||
49 | #define DEFINE_IMX_GPIO_PORT_IRQ_HIGH(soc, _id, _hwid, _irq, _irq_high) \ | ||
50 | { \ | ||
51 | .chip.label = "gpio-" #_id, \ | ||
52 | .irq = _irq, \ | ||
53 | .irq_high = _irq_high, \ | ||
54 | .base = soc ## _IO_ADDRESS( \ | ||
55 | soc ## _GPIO ## _hwid ## _BASE_ADDR), \ | ||
56 | .virtual_irq_start = MXC_GPIO_IRQ_START + (_id) * 32, \ | ||
57 | } | ||
58 | |||
59 | #define DEFINE_IMX_GPIO_PORT_IRQ(soc, _id, _hwid, _irq) \ | ||
60 | DEFINE_IMX_GPIO_PORT_IRQ_HIGH(soc, _id, _hwid, _irq, 0) | ||
61 | #define DEFINE_IMX_GPIO_PORT(soc, _id, _hwid) \ | ||
62 | DEFINE_IMX_GPIO_PORT_IRQ(soc, _id, _hwid, 0) | ||
63 | |||
49 | int mxc_gpio_init(struct mxc_gpio_port*, int); | 64 | int mxc_gpio_init(struct mxc_gpio_port*, int); |
50 | 65 | ||
51 | #endif | 66 | #endif |