board-rx51.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Board support file for Nokia N900 (aka RX-51).
  3. *
  4. * Copyright (C) 2007, 2008 Nokia
  5. * Copyright (C) 2012 Ivaylo Dimitrov <freemangordon@abv.bg>
  6. * Copyright (C) 2013 Pali Rohár <pali.rohar@gmail.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/init.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/delay.h>
  16. #include <linux/err.h>
  17. #include <linux/clk.h>
  18. #include <linux/io.h>
  19. #include <linux/gpio.h>
  20. #include <linux/leds.h>
  21. #include <linux/usb/phy.h>
  22. #include <linux/usb/musb.h>
  23. #include <linux/platform_data/spi-omap2-mcspi.h>
  24. #include <asm/mach-types.h>
  25. #include <asm/mach/arch.h>
  26. #include <asm/mach/map.h>
  27. #include <linux/omap-dma.h>
  28. #include "common.h"
  29. #include "mux.h"
  30. #include "gpmc.h"
  31. #include "pm.h"
  32. #include "soc.h"
  33. #include "sdram-nokia.h"
  34. #include "omap-secure.h"
  35. #define RX51_GPIO_SLEEP_IND 162
  36. static struct gpio_led gpio_leds[] = {
  37. {
  38. .name = "sleep_ind",
  39. .gpio = RX51_GPIO_SLEEP_IND,
  40. },
  41. };
  42. static struct gpio_led_platform_data gpio_led_info = {
  43. .leds = gpio_leds,
  44. .num_leds = ARRAY_SIZE(gpio_leds),
  45. };
  46. static struct platform_device leds_gpio = {
  47. .name = "leds-gpio",
  48. .id = -1,
  49. .dev = {
  50. .platform_data = &gpio_led_info,
  51. },
  52. };
  53. /*
  54. * cpuidle C-states definition for rx51.
  55. *
  56. * The 'exit_latency' field is the sum of sleep
  57. * and wake-up latencies.
  58. ---------------------------------------------
  59. | state | exit_latency | target_residency |
  60. ---------------------------------------------
  61. | C1 | 110 + 162 | 5 |
  62. | C2 | 106 + 180 | 309 |
  63. | C3 | 107 + 410 | 46057 |
  64. | C4 | 121 + 3374 | 46057 |
  65. | C5 | 855 + 1146 | 46057 |
  66. | C6 | 7580 + 4134 | 484329 |
  67. | C7 | 7505 + 15274 | 484329 |
  68. ---------------------------------------------
  69. */
  70. extern void __init rx51_peripherals_init(void);
  71. #ifdef CONFIG_OMAP_MUX
  72. static struct omap_board_mux board_mux[] __initdata = {
  73. { .reg_offset = OMAP_MUX_TERMINATOR },
  74. };
  75. #endif
  76. static struct omap_musb_board_data musb_board_data = {
  77. .interface_type = MUSB_INTERFACE_ULPI,
  78. .mode = MUSB_OTG,
  79. .power = 0,
  80. };
  81. static void __init rx51_init(void)
  82. {
  83. struct omap_sdrc_params *sdrc_params;
  84. omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
  85. omap_serial_init();
  86. sdrc_params = nokia_get_sdram_timings();
  87. omap_sdrc_init(sdrc_params, sdrc_params);
  88. usb_bind_phy("musb-hdrc.0.auto", 0, "twl4030_usb");
  89. usb_musb_init(&musb_board_data);
  90. rx51_peripherals_init();
  91. if (omap_type() == OMAP2_DEVICE_TYPE_SEC) {
  92. #ifdef CONFIG_ARM_ERRATA_430973
  93. pr_info("RX-51: Enabling ARM errata 430973 workaround\n");
  94. /* set IBE to 1 */
  95. rx51_secure_update_aux_cr(BIT(6), 0);
  96. #endif
  97. }
  98. /* Ensure SDRC pins are mux'd for self-refresh */
  99. omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
  100. omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
  101. platform_device_register(&leds_gpio);
  102. }
  103. static void __init rx51_reserve(void)
  104. {
  105. omap_reserve();
  106. }
  107. MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
  108. /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
  109. .atag_offset = 0x100,
  110. .reserve = rx51_reserve,
  111. .map_io = omap3_map_io,
  112. .init_early = omap3430_init_early,
  113. .init_irq = omap3_init_irq,
  114. .handle_irq = omap3_intc_handle_irq,
  115. .init_machine = rx51_init,
  116. .init_late = omap3430_init_late,
  117. .init_time = omap3_sync32k_timer_init,
  118. .restart = omap3xxx_restart,
  119. MACHINE_END