realview_eb.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * linux/arch/arm/mach-realview/realview_eb.c
  3. *
  4. * Copyright (C) 2004 ARM Limited
  5. * Copyright (C) 2000 Deep Blue Solutions Ltd
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/config.h>
  22. #include <linux/init.h>
  23. #include <linux/device.h>
  24. #include <linux/sysdev.h>
  25. #include <asm/hardware.h>
  26. #include <asm/io.h>
  27. #include <asm/irq.h>
  28. #include <asm/leds.h>
  29. #include <asm/mach-types.h>
  30. #include <asm/hardware/gic.h>
  31. #include <asm/hardware/amba.h>
  32. #include <asm/hardware/icst307.h>
  33. #include <asm/mach/arch.h>
  34. #include <asm/mach/map.h>
  35. #include <asm/mach/mmc.h>
  36. #include <asm/arch/irqs.h>
  37. #include "core.h"
  38. #include "clock.h"
  39. static struct map_desc realview_eb_io_desc[] __initdata = {
  40. { IO_ADDRESS(REALVIEW_SYS_BASE), REALVIEW_SYS_BASE, SZ_4K, MT_DEVICE },
  41. { IO_ADDRESS(REALVIEW_GIC_CPU_BASE), REALVIEW_GIC_CPU_BASE, SZ_4K, MT_DEVICE },
  42. { IO_ADDRESS(REALVIEW_GIC_DIST_BASE), REALVIEW_GIC_DIST_BASE, SZ_4K, MT_DEVICE },
  43. { IO_ADDRESS(REALVIEW_SCTL_BASE), REALVIEW_SCTL_BASE, SZ_4K, MT_DEVICE },
  44. { IO_ADDRESS(REALVIEW_TIMER0_1_BASE), REALVIEW_TIMER0_1_BASE, SZ_4K, MT_DEVICE },
  45. { IO_ADDRESS(REALVIEW_TIMER2_3_BASE), REALVIEW_TIMER2_3_BASE, SZ_4K, MT_DEVICE },
  46. #ifdef CONFIG_DEBUG_LL
  47. { IO_ADDRESS(REALVIEW_UART0_BASE), REALVIEW_UART0_BASE, SZ_4K, MT_DEVICE },
  48. #endif
  49. };
  50. static void __init realview_eb_map_io(void)
  51. {
  52. iotable_init(realview_eb_io_desc, ARRAY_SIZE(realview_eb_io_desc));
  53. }
  54. /* FPGA Primecells */
  55. AMBA_DEVICE(aaci, "fpga:04", AACI, NULL);
  56. AMBA_DEVICE(mmc0, "fpga:05", MMCI0, &realview_mmc0_plat_data);
  57. AMBA_DEVICE(kmi0, "fpga:06", KMI0, NULL);
  58. AMBA_DEVICE(kmi1, "fpga:07", KMI1, NULL);
  59. AMBA_DEVICE(uart3, "fpga:09", UART3, NULL);
  60. /* DevChip Primecells */
  61. AMBA_DEVICE(smc, "dev:00", SMC, NULL);
  62. AMBA_DEVICE(clcd, "dev:20", CLCD, &clcd_plat_data);
  63. AMBA_DEVICE(dmac, "dev:30", DMAC, NULL);
  64. AMBA_DEVICE(sctl, "dev:e0", SCTL, NULL);
  65. AMBA_DEVICE(wdog, "dev:e1", WATCHDOG, NULL);
  66. AMBA_DEVICE(gpio0, "dev:e4", GPIO0, NULL);
  67. AMBA_DEVICE(gpio1, "dev:e5", GPIO1, NULL);
  68. AMBA_DEVICE(gpio2, "dev:e6", GPIO2, NULL);
  69. AMBA_DEVICE(rtc, "dev:e8", RTC, NULL);
  70. AMBA_DEVICE(sci0, "dev:f0", SCI, NULL);
  71. AMBA_DEVICE(uart0, "dev:f1", UART0, NULL);
  72. AMBA_DEVICE(uart1, "dev:f2", UART1, NULL);
  73. AMBA_DEVICE(uart2, "dev:f3", UART2, NULL);
  74. AMBA_DEVICE(ssp0, "dev:f4", SSP, NULL);
  75. static struct amba_device *amba_devs[] __initdata = {
  76. &dmac_device,
  77. &uart0_device,
  78. &uart1_device,
  79. &uart2_device,
  80. &uart3_device,
  81. &smc_device,
  82. &clcd_device,
  83. &sctl_device,
  84. &wdog_device,
  85. &gpio0_device,
  86. &gpio1_device,
  87. &gpio2_device,
  88. &rtc_device,
  89. &sci0_device,
  90. &ssp0_device,
  91. &aaci_device,
  92. &mmc0_device,
  93. &kmi0_device,
  94. &kmi1_device,
  95. };
  96. static void __init gic_init_irq(void)
  97. {
  98. gic_dist_init(__io_address(REALVIEW_GIC_DIST_BASE));
  99. gic_cpu_init(__io_address(REALVIEW_GIC_CPU_BASE));
  100. }
  101. static void __init realview_eb_init(void)
  102. {
  103. int i;
  104. clk_register(&realview_clcd_clk);
  105. platform_device_register(&realview_flash_device);
  106. platform_device_register(&realview_smc91x_device);
  107. for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
  108. struct amba_device *d = amba_devs[i];
  109. amba_device_register(d, &iomem_resource);
  110. }
  111. #ifdef CONFIG_LEDS
  112. leds_event = realview_leds_event;
  113. #endif
  114. }
  115. MACHINE_START(REALVIEW_EB, "ARM-RealView EB")
  116. /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
  117. .phys_ram = 0x00000000,
  118. .phys_io = REALVIEW_UART0_BASE,
  119. .io_pg_offst = (IO_ADDRESS(REALVIEW_UART0_BASE) >> 18) & 0xfffc,
  120. .boot_params = 0x00000100,
  121. .map_io = realview_eb_map_io,
  122. .init_irq = gic_init_irq,
  123. .timer = &realview_timer,
  124. .init_machine = realview_eb_init,
  125. MACHINE_END