board-rx51.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Board support file for Nokia N900 (aka RX-51).
  3. *
  4. * Copyright (C) 2007, 2008 Nokia
  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. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/delay.h>
  14. #include <linux/err.h>
  15. #include <linux/clk.h>
  16. #include <linux/io.h>
  17. #include <linux/gpio.h>
  18. #include <linux/leds.h>
  19. #include <linux/usb/phy.h>
  20. #include <linux/usb/musb.h>
  21. #include <linux/platform_data/spi-omap2-mcspi.h>
  22. #include <asm/mach-types.h>
  23. #include <asm/mach/arch.h>
  24. #include <asm/mach/map.h>
  25. #include <linux/omap-dma.h>
  26. #include "common.h"
  27. #include "mux.h"
  28. #include "gpmc.h"
  29. #include "pm.h"
  30. #include "sdram-nokia.h"
  31. #define RX51_GPIO_SLEEP_IND 162
  32. static struct gpio_led gpio_leds[] = {
  33. {
  34. .name = "sleep_ind",
  35. .gpio = RX51_GPIO_SLEEP_IND,
  36. },
  37. };
  38. static struct gpio_led_platform_data gpio_led_info = {
  39. .leds = gpio_leds,
  40. .num_leds = ARRAY_SIZE(gpio_leds),
  41. };
  42. static struct platform_device leds_gpio = {
  43. .name = "leds-gpio",
  44. .id = -1,
  45. .dev = {
  46. .platform_data = &gpio_led_info,
  47. },
  48. };
  49. /*
  50. * cpuidle C-states definition for rx51.
  51. *
  52. * The 'exit_latency' field is the sum of sleep
  53. * and wake-up latencies.
  54. ---------------------------------------------
  55. | state | exit_latency | target_residency |
  56. ---------------------------------------------
  57. | C1 | 110 + 162 | 5 |
  58. | C2 | 106 + 180 | 309 |
  59. | C3 | 107 + 410 | 46057 |
  60. | C4 | 121 + 3374 | 46057 |
  61. | C5 | 855 + 1146 | 46057 |
  62. | C6 | 7580 + 4134 | 484329 |
  63. | C7 | 7505 + 15274 | 484329 |
  64. ---------------------------------------------
  65. */
  66. extern void __init rx51_peripherals_init(void);
  67. #ifdef CONFIG_OMAP_MUX
  68. static struct omap_board_mux board_mux[] __initdata = {
  69. { .reg_offset = OMAP_MUX_TERMINATOR },
  70. };
  71. #endif
  72. static struct omap_musb_board_data musb_board_data = {
  73. .interface_type = MUSB_INTERFACE_ULPI,
  74. .mode = MUSB_PERIPHERAL,
  75. .power = 0,
  76. };
  77. static void __init rx51_init(void)
  78. {
  79. struct omap_sdrc_params *sdrc_params;
  80. omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
  81. omap_serial_init();
  82. sdrc_params = nokia_get_sdram_timings();
  83. omap_sdrc_init(sdrc_params, sdrc_params);
  84. usb_bind_phy("musb-hdrc.0.auto", 0, "twl4030_usb");
  85. usb_musb_init(&musb_board_data);
  86. rx51_peripherals_init();
  87. /* Ensure SDRC pins are mux'd for self-refresh */
  88. omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
  89. omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
  90. platform_device_register(&leds_gpio);
  91. }
  92. static void __init rx51_reserve(void)
  93. {
  94. omap_reserve();
  95. }
  96. MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
  97. /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
  98. .atag_offset = 0x100,
  99. .reserve = rx51_reserve,
  100. .map_io = omap3_map_io,
  101. .init_early = omap3430_init_early,
  102. .init_irq = omap3_init_irq,
  103. .handle_irq = omap3_intc_handle_irq,
  104. .init_machine = rx51_init,
  105. .init_late = omap3430_init_late,
  106. .init_time = omap3_sync32k_timer_init,
  107. .restart = omap3xxx_restart,
  108. MACHINE_END