realview_eb.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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/platform_device.h>
  24. #include <linux/sysdev.h>
  25. #include <linux/amba/bus.h>
  26. #include <asm/hardware.h>
  27. #include <asm/io.h>
  28. #include <asm/irq.h>
  29. #include <asm/leds.h>
  30. #include <asm/mach-types.h>
  31. #include <asm/hardware/gic.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. {
  41. .virtual = IO_ADDRESS(REALVIEW_SYS_BASE),
  42. .pfn = __phys_to_pfn(REALVIEW_SYS_BASE),
  43. .length = SZ_4K,
  44. .type = MT_DEVICE,
  45. }, {
  46. .virtual = IO_ADDRESS(REALVIEW_GIC_CPU_BASE),
  47. .pfn = __phys_to_pfn(REALVIEW_GIC_CPU_BASE),
  48. .length = SZ_4K,
  49. .type = MT_DEVICE,
  50. }, {
  51. .virtual = IO_ADDRESS(REALVIEW_GIC_DIST_BASE),
  52. .pfn = __phys_to_pfn(REALVIEW_GIC_DIST_BASE),
  53. .length = SZ_4K,
  54. .type = MT_DEVICE,
  55. }, {
  56. .virtual = IO_ADDRESS(REALVIEW_SCTL_BASE),
  57. .pfn = __phys_to_pfn(REALVIEW_SCTL_BASE),
  58. .length = SZ_4K,
  59. .type = MT_DEVICE,
  60. }, {
  61. .virtual = IO_ADDRESS(REALVIEW_TIMER0_1_BASE),
  62. .pfn = __phys_to_pfn(REALVIEW_TIMER0_1_BASE),
  63. .length = SZ_4K,
  64. .type = MT_DEVICE,
  65. }, {
  66. .virtual = IO_ADDRESS(REALVIEW_TIMER2_3_BASE),
  67. .pfn = __phys_to_pfn(REALVIEW_TIMER2_3_BASE),
  68. .length = SZ_4K,
  69. .type = MT_DEVICE,
  70. },
  71. #ifdef CONFIG_DEBUG_LL
  72. {
  73. .virtual = IO_ADDRESS(REALVIEW_UART0_BASE),
  74. .pfn = __phys_to_pfn(REALVIEW_UART0_BASE),
  75. .length = SZ_4K,
  76. .type = MT_DEVICE,
  77. }
  78. #endif
  79. };
  80. static void __init realview_eb_map_io(void)
  81. {
  82. iotable_init(realview_eb_io_desc, ARRAY_SIZE(realview_eb_io_desc));
  83. }
  84. /* FPGA Primecells */
  85. AMBA_DEVICE(aaci, "fpga:04", AACI, NULL);
  86. AMBA_DEVICE(mmc0, "fpga:05", MMCI0, &realview_mmc0_plat_data);
  87. AMBA_DEVICE(kmi0, "fpga:06", KMI0, NULL);
  88. AMBA_DEVICE(kmi1, "fpga:07", KMI1, NULL);
  89. AMBA_DEVICE(uart3, "fpga:09", UART3, NULL);
  90. /* DevChip Primecells */
  91. AMBA_DEVICE(smc, "dev:00", SMC, NULL);
  92. AMBA_DEVICE(clcd, "dev:20", CLCD, &clcd_plat_data);
  93. AMBA_DEVICE(dmac, "dev:30", DMAC, NULL);
  94. AMBA_DEVICE(sctl, "dev:e0", SCTL, NULL);
  95. AMBA_DEVICE(wdog, "dev:e1", WATCHDOG, NULL);
  96. AMBA_DEVICE(gpio0, "dev:e4", GPIO0, NULL);
  97. AMBA_DEVICE(gpio1, "dev:e5", GPIO1, NULL);
  98. AMBA_DEVICE(gpio2, "dev:e6", GPIO2, NULL);
  99. AMBA_DEVICE(rtc, "dev:e8", RTC, NULL);
  100. AMBA_DEVICE(sci0, "dev:f0", SCI, NULL);
  101. AMBA_DEVICE(uart0, "dev:f1", UART0, NULL);
  102. AMBA_DEVICE(uart1, "dev:f2", UART1, NULL);
  103. AMBA_DEVICE(uart2, "dev:f3", UART2, NULL);
  104. AMBA_DEVICE(ssp0, "dev:f4", SSP, NULL);
  105. static struct amba_device *amba_devs[] __initdata = {
  106. &dmac_device,
  107. &uart0_device,
  108. &uart1_device,
  109. &uart2_device,
  110. &uart3_device,
  111. &smc_device,
  112. &clcd_device,
  113. &sctl_device,
  114. &wdog_device,
  115. &gpio0_device,
  116. &gpio1_device,
  117. &gpio2_device,
  118. &rtc_device,
  119. &sci0_device,
  120. &ssp0_device,
  121. &aaci_device,
  122. &mmc0_device,
  123. &kmi0_device,
  124. &kmi1_device,
  125. };
  126. static void __init gic_init_irq(void)
  127. {
  128. #ifdef CONFIG_REALVIEW_MPCORE
  129. writel(0x0000a05f, __io_address(REALVIEW_SYS_LOCK));
  130. writel(0x008003c0, __io_address(REALVIEW_SYS_BASE) + 0xd8);
  131. writel(0x00000000, __io_address(REALVIEW_SYS_LOCK));
  132. #endif
  133. gic_dist_init(__io_address(REALVIEW_GIC_DIST_BASE));
  134. gic_cpu_init(__io_address(REALVIEW_GIC_CPU_BASE));
  135. }
  136. static void __init realview_eb_init(void)
  137. {
  138. int i;
  139. clk_register(&realview_clcd_clk);
  140. platform_device_register(&realview_flash_device);
  141. platform_device_register(&realview_smc91x_device);
  142. for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
  143. struct amba_device *d = amba_devs[i];
  144. amba_device_register(d, &iomem_resource);
  145. }
  146. #ifdef CONFIG_LEDS
  147. leds_event = realview_leds_event;
  148. #endif
  149. }
  150. MACHINE_START(REALVIEW_EB, "ARM-RealView EB")
  151. /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
  152. .phys_io = REALVIEW_UART0_BASE,
  153. .io_pg_offst = (IO_ADDRESS(REALVIEW_UART0_BASE) >> 18) & 0xfffc,
  154. .boot_params = 0x00000100,
  155. .map_io = realview_eb_map_io,
  156. .init_irq = gic_init_irq,
  157. .timer = &realview_timer,
  158. .init_machine = realview_eb_init,
  159. MACHINE_END