board-rx51.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * linux/arch/arm/mach-omap2/board-rx51.c
  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 <mach/hardware.h>
  19. #include <asm/mach-types.h>
  20. #include <asm/mach/arch.h>
  21. #include <asm/mach/map.h>
  22. #include <plat/mcspi.h>
  23. #include <plat/board.h>
  24. #include <plat/common.h>
  25. #include <plat/dma.h>
  26. #include <plat/gpmc.h>
  27. #include <plat/usb.h>
  28. #include "mux.h"
  29. struct omap_sdrc_params *rx51_get_sdram_timings(void);
  30. static struct omap_lcd_config rx51_lcd_config = {
  31. .ctrl_name = "internal",
  32. };
  33. static struct omap_fbmem_config rx51_fbmem0_config = {
  34. .size = 752 * 1024,
  35. };
  36. static struct omap_fbmem_config rx51_fbmem1_config = {
  37. .size = 752 * 1024,
  38. };
  39. static struct omap_fbmem_config rx51_fbmem2_config = {
  40. .size = 752 * 1024,
  41. };
  42. static struct omap_board_config_kernel rx51_config[] = {
  43. { OMAP_TAG_FBMEM, &rx51_fbmem0_config },
  44. { OMAP_TAG_FBMEM, &rx51_fbmem1_config },
  45. { OMAP_TAG_FBMEM, &rx51_fbmem2_config },
  46. { OMAP_TAG_LCD, &rx51_lcd_config },
  47. };
  48. static void __init rx51_init_irq(void)
  49. {
  50. struct omap_sdrc_params *sdrc_params;
  51. omap_board_config = rx51_config;
  52. omap_board_config_size = ARRAY_SIZE(rx51_config);
  53. sdrc_params = rx51_get_sdram_timings();
  54. omap2_init_common_hw(sdrc_params, sdrc_params);
  55. omap_init_irq();
  56. omap_gpio_init();
  57. }
  58. extern void __init rx51_peripherals_init(void);
  59. #ifdef CONFIG_OMAP_MUX
  60. static struct omap_board_mux board_mux[] __initdata = {
  61. { .reg_offset = OMAP_MUX_TERMINATOR },
  62. };
  63. #else
  64. #define board_mux NULL
  65. #endif
  66. static void __init rx51_init(void)
  67. {
  68. omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
  69. omap_serial_init();
  70. usb_musb_init();
  71. rx51_peripherals_init();
  72. /* Ensure SDRC pins are mux'd for self-refresh */
  73. omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
  74. omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
  75. }
  76. static void __init rx51_map_io(void)
  77. {
  78. omap2_set_globals_343x();
  79. omap2_map_common_io();
  80. }
  81. MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
  82. /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
  83. .phys_io = 0x48000000,
  84. .io_pg_offst = ((0xfa000000) >> 18) & 0xfffc,
  85. .boot_params = 0x80000100,
  86. .map_io = rx51_map_io,
  87. .init_irq = rx51_init_irq,
  88. .init_machine = rx51_init,
  89. .timer = &omap_timer,
  90. MACHINE_END