mx1ads.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. .phys_ram = 0x08000000,
  73. .phys_io = 0x00200000,
  74. .io_pg_offst = ((0xe0200000) >> 18) & 0xfffc,
  75. .boot_params = 0x08000100,
  76. .map_io = mx1ads_map_io,
  77. .init_irq = imx_init_irq,
  78. .timer = &imx_timer,
  79. .init_machine = mx1ads_init,
  80. MACHINE_END