cpu-u8500.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * Copyright (C) 2008-2009 ST-Ericsson
  3. *
  4. * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2, as
  8. * published by the Free Software Foundation.
  9. *
  10. */
  11. #include <linux/types.h>
  12. #include <linux/init.h>
  13. #include <linux/device.h>
  14. #include <linux/amba/bus.h>
  15. #include <linux/irq.h>
  16. #include <linux/gpio.h>
  17. #include <linux/platform_device.h>
  18. #include <linux/io.h>
  19. #include <asm/localtimer.h>
  20. #include <asm/mach/map.h>
  21. #include <plat/mtu.h>
  22. #include <mach/hardware.h>
  23. #include <mach/setup.h>
  24. static struct nmk_gpio_platform_data u8500_gpio_data[] = {
  25. GPIO_DATA("GPIO-0-31", 0),
  26. GPIO_DATA("GPIO-32-63", 32), /* 37..63 not routed to pin */
  27. GPIO_DATA("GPIO-64-95", 64),
  28. GPIO_DATA("GPIO-96-127", 96), /* 97..127 not routed to pin */
  29. GPIO_DATA("GPIO-128-159", 128),
  30. GPIO_DATA("GPIO-160-191", 160), /* 172..191 not routed to pin */
  31. GPIO_DATA("GPIO-192-223", 192),
  32. GPIO_DATA("GPIO-224-255", 224), /* 231..255 not routed to pin */
  33. GPIO_DATA("GPIO-256-288", 256), /* 258..288 not routed to pin */
  34. };
  35. static struct resource u8500_gpio_resources[] = {
  36. GPIO_RESOURCE(0),
  37. GPIO_RESOURCE(1),
  38. GPIO_RESOURCE(2),
  39. GPIO_RESOURCE(3),
  40. GPIO_RESOURCE(4),
  41. GPIO_RESOURCE(5),
  42. GPIO_RESOURCE(6),
  43. GPIO_RESOURCE(7),
  44. GPIO_RESOURCE(8),
  45. };
  46. static struct platform_device u8500_gpio_devs[] = {
  47. GPIO_DEVICE(0),
  48. GPIO_DEVICE(1),
  49. GPIO_DEVICE(2),
  50. GPIO_DEVICE(3),
  51. GPIO_DEVICE(4),
  52. GPIO_DEVICE(5),
  53. GPIO_DEVICE(6),
  54. GPIO_DEVICE(7),
  55. GPIO_DEVICE(8),
  56. };
  57. static struct platform_device *platform_devs[] __initdata = {
  58. &u8500_gpio_devs[0],
  59. &u8500_gpio_devs[1],
  60. &u8500_gpio_devs[2],
  61. &u8500_gpio_devs[3],
  62. &u8500_gpio_devs[4],
  63. &u8500_gpio_devs[5],
  64. &u8500_gpio_devs[6],
  65. &u8500_gpio_devs[7],
  66. &u8500_gpio_devs[8],
  67. };
  68. /* minimum static i/o mapping required to boot U8500 platforms */
  69. static struct map_desc u8500_io_desc[] __initdata = {
  70. __IO_DEV_DESC(U8500_PRCMU_BASE, SZ_4K),
  71. __IO_DEV_DESC(U8500_GPIO0_BASE, SZ_4K),
  72. __IO_DEV_DESC(U8500_GPIO1_BASE, SZ_4K),
  73. __IO_DEV_DESC(U8500_GPIO2_BASE, SZ_4K),
  74. __IO_DEV_DESC(U8500_GPIO3_BASE, SZ_4K),
  75. };
  76. static struct map_desc u8500ed_io_desc[] __initdata = {
  77. __IO_DEV_DESC(U8500_MTU0_BASE_ED, SZ_4K),
  78. __IO_DEV_DESC(U8500_CLKRST7_BASE_ED, SZ_8K),
  79. };
  80. static struct map_desc u8500v1_io_desc[] __initdata = {
  81. __IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K),
  82. };
  83. void __init u8500_map_io(void)
  84. {
  85. ux500_map_io();
  86. iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc));
  87. if (cpu_is_u8500ed())
  88. iotable_init(u8500ed_io_desc, ARRAY_SIZE(u8500ed_io_desc));
  89. else
  90. iotable_init(u8500v1_io_desc, ARRAY_SIZE(u8500v1_io_desc));
  91. }
  92. /*
  93. * This function is called from the board init
  94. */
  95. void __init u8500_init_devices(void)
  96. {
  97. ux500_init_devices();
  98. /* Register the platform devices */
  99. platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs));
  100. return ;
  101. }
  102. static void __init u8500_timer_init(void)
  103. {
  104. #ifdef CONFIG_LOCAL_TIMERS
  105. /* Setup the local timer base */
  106. twd_base = __io_address(U8500_TWD_BASE);
  107. #endif
  108. /* Setup the MTU base */
  109. if (cpu_is_u8500ed())
  110. mtu_base = __io_address(U8500_MTU0_BASE_ED);
  111. else
  112. mtu_base = __io_address(U8500_MTU0_BASE);
  113. nmdk_timer_init();
  114. }
  115. struct sys_timer u8500_timer = {
  116. .init = u8500_timer_init,
  117. };