board-rx51.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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/delay.h>
  18. #include <linux/gpio.h>
  19. #include <mach/hardware.h>
  20. #include <asm/mach-types.h>
  21. #include <asm/mach/arch.h>
  22. #include <asm/mach/map.h>
  23. #include <mach/mcspi.h>
  24. #include <mach/mux.h>
  25. #include <mach/board.h>
  26. #include <mach/common.h>
  27. #include <mach/keypad.h>
  28. #include <mach/dma.h>
  29. #include <mach/gpmc.h>
  30. #include <mach/usb.h>
  31. static struct omap_uart_config rx51_uart_config = {
  32. .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)),
  33. };
  34. static struct omap_lcd_config rx51_lcd_config = {
  35. .ctrl_name = "internal",
  36. };
  37. static struct omap_fbmem_config rx51_fbmem0_config = {
  38. .size = 752 * 1024,
  39. };
  40. static struct omap_fbmem_config rx51_fbmem1_config = {
  41. .size = 752 * 1024,
  42. };
  43. static struct omap_fbmem_config rx51_fbmem2_config = {
  44. .size = 752 * 1024,
  45. };
  46. static struct omap_board_config_kernel rx51_config[] = {
  47. { OMAP_TAG_UART, &rx51_uart_config },
  48. { OMAP_TAG_FBMEM, &rx51_fbmem0_config },
  49. { OMAP_TAG_FBMEM, &rx51_fbmem1_config },
  50. { OMAP_TAG_FBMEM, &rx51_fbmem2_config },
  51. { OMAP_TAG_LCD, &rx51_lcd_config },
  52. };
  53. static void __init rx51_init_irq(void)
  54. {
  55. omap2_init_common_hw(NULL);
  56. omap_init_irq();
  57. omap_gpio_init();
  58. }
  59. extern void __init rx51_peripherals_init(void);
  60. static void __init rx51_init(void)
  61. {
  62. omap_board_config = rx51_config;
  63. omap_board_config_size = ARRAY_SIZE(rx51_config);
  64. omap_serial_init();
  65. usb_musb_init();
  66. rx51_peripherals_init();
  67. }
  68. static void __init rx51_map_io(void)
  69. {
  70. omap2_set_globals_343x();
  71. omap2_map_common_io();
  72. }
  73. MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
  74. /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
  75. .phys_io = 0x48000000,
  76. .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc,
  77. .boot_params = 0x80000100,
  78. .map_io = rx51_map_io,
  79. .init_irq = rx51_init_irq,
  80. .init_machine = rx51_init,
  81. .timer = &omap_timer,
  82. MACHINE_END