/arch/arm/mach-imx/mx1ads.c

https://bitbucket.org/evzijst/gittest · C · 88 lines · 64 code · 10 blank · 14 comment · 0 complexity · 73e78186cad5e28b50124d83e9e3de57 MD5 · raw file

  1. /*
  2. * arch/arm/mach-imx/mx1ads.c
  3. *
  4. * Initially based on:
  5. * linux-2.6.7-imx/arch/arm/mach-imx/scb9328.c
  6. * Copyright (c) 2004 Sascha Hauer <sascha@saschahauer.de>
  7. *
  8. * 2004 (c) MontaVista Software, Inc.
  9. *
  10. * This file is licensed under the terms of the GNU General Public
  11. * License version 2. This program is licensed "as is" without any
  12. * warranty of any kind, whether express or implied.
  13. */
  14. #include <linux/device.h>
  15. #include <linux/init.h>
  16. #include <asm/system.h>
  17. #include <asm/hardware.h>
  18. #include <asm/irq.h>
  19. #include <asm/pgtable.h>
  20. #include <asm/page.h>
  21. #include <asm/mach/map.h>
  22. #include <asm/mach-types.h>
  23. #include <asm/mach/arch.h>
  24. #include <linux/interrupt.h>
  25. #include "generic.h"
  26. #include <asm/serial.h>
  27. static struct resource mx1ads_resources[] = {
  28. [0] = {
  29. .start = IMX_CS4_VIRT,
  30. .end = IMX_CS4_VIRT + 16,
  31. .flags = IORESOURCE_MEM,
  32. },
  33. [1] = {
  34. .start = 13,
  35. .end = 13,
  36. .flags = IORESOURCE_IRQ,
  37. },
  38. };
  39. static struct platform_device mx1ads_device = {
  40. .name = "mx1ads",
  41. .num_resources = ARRAY_SIZE(mx1ads_resources),
  42. .resource = mx1ads_resources,
  43. };
  44. static struct platform_device *devices[] __initdata = {
  45. &mx1ads_device,
  46. };
  47. static void __init
  48. mx1ads_init(void)
  49. {
  50. #ifdef CONFIG_LEDS
  51. imx_gpio_mode(GPIO_PORTA | GPIO_OUT | GPIO_GPIO | 2);
  52. #endif
  53. platform_add_devices(devices, ARRAY_SIZE(devices));
  54. }
  55. static struct map_desc mx1ads_io_desc[] __initdata = {
  56. /* virtual physical length type */
  57. {IMX_CS0_VIRT, IMX_CS0_PHYS, IMX_CS0_SIZE, MT_DEVICE},
  58. {IMX_CS1_VIRT, IMX_CS1_PHYS, IMX_CS1_SIZE, MT_DEVICE},
  59. {IMX_CS2_VIRT, IMX_CS2_PHYS, IMX_CS2_SIZE, MT_DEVICE},
  60. {IMX_CS3_VIRT, IMX_CS3_PHYS, IMX_CS3_SIZE, MT_DEVICE},
  61. {IMX_CS4_VIRT, IMX_CS4_PHYS, IMX_CS4_SIZE, MT_DEVICE},
  62. {IMX_CS5_VIRT, IMX_CS5_PHYS, IMX_CS5_SIZE, MT_DEVICE},
  63. };
  64. static void __init
  65. mx1ads_map_io(void)
  66. {
  67. imx_map_io();
  68. iotable_init(mx1ads_io_desc, ARRAY_SIZE(mx1ads_io_desc));
  69. }
  70. MACHINE_START(MX1ADS, "Motorola MX1ADS")
  71. MAINTAINER("Sascha Hauer, Pengutronix")
  72. BOOT_MEM(0x08000000, 0x00200000, 0xe0200000)
  73. BOOT_PARAMS(0x08000100)
  74. MAPIO(mx1ads_map_io)
  75. INITIRQ(imx_init_irq)
  76. .timer = &imx_timer,
  77. INIT_MACHINE(mx1ads_init)
  78. MACHINE_END