board-rx51.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 <mach/mcspi.h>
  23. #include <mach/mux.h>
  24. #include <mach/board.h>
  25. #include <mach/common.h>
  26. #include <mach/keypad.h>
  27. #include <mach/dma.h>
  28. #include <mach/gpmc.h>
  29. #include <mach/usb.h>
  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. omap_board_config = rx51_config;
  51. omap_board_config_size = ARRAY_SIZE(rx51_config);
  52. omap2_init_common_hw(NULL, NULL);
  53. omap_init_irq();
  54. omap_gpio_init();
  55. }
  56. extern void __init rx51_peripherals_init(void);
  57. static void __init rx51_init(void)
  58. {
  59. omap_serial_init();
  60. usb_musb_init();
  61. rx51_peripherals_init();
  62. /* Ensure SDRC pins are mux'd for self-refresh */
  63. omap_cfg_reg(H16_34XX_SDRC_CKE0);
  64. omap_cfg_reg(H17_34XX_SDRC_CKE1);
  65. }
  66. static void __init rx51_map_io(void)
  67. {
  68. omap2_set_globals_343x();
  69. omap2_map_common_io();
  70. }
  71. MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
  72. /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
  73. .phys_io = 0x48000000,
  74. .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc,
  75. .boot_params = 0x80000100,
  76. .map_io = rx51_map_io,
  77. .init_irq = rx51_init_irq,
  78. .init_machine = rx51_init,
  79. .timer = &omap_timer,
  80. MACHINE_END