zoom2.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright (c) 2009 Wind River Systems, Inc.
  3. * Tom Rix <Tom.Rix@windriver.com>
  4. *
  5. * Derived from Zoom1 code by
  6. * Nishanth Menon <nm@ti.com>
  7. * Sunil Kumar <sunilsaini05@gmail.com>
  8. * Shashi Ranjan <shashiranjanmca05@gmail.com>
  9. * Richard Woodruff <r-woodruff2@ti.com>
  10. * Syed Mohammed Khasim <khasim@ti.com>
  11. *
  12. *
  13. * See file CREDITS for list of people who contributed to this
  14. * project.
  15. *
  16. * This program is free software; you can redistribute it and/or
  17. * modify it under the terms of the GNU General Public License as
  18. * published by the Free Software Foundation; either version 2 of
  19. * the License, or (at your option) any later version.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program; if not, write to the Free Software
  28. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  29. * MA 02111-1307 USA
  30. */
  31. #include <common.h>
  32. #include <asm/io.h>
  33. #include <asm/arch/mem.h>
  34. #include <asm/arch/mux.h>
  35. #include <asm/arch/sys_proto.h>
  36. #include <asm/mach-types.h>
  37. #include "zoom2.h"
  38. #include "zoom2_serial.h"
  39. /*
  40. * This the the zoom2, board specific, gpmc configuration for the
  41. * quad uart on the debug board. The more general gpmc configurations
  42. * are setup at the cpu level in cpu/arm_cortexa8/omap3/mem.c
  43. *
  44. * The details of the setting of the serial gpmc setup are not available.
  45. * The values were provided by another party.
  46. */
  47. extern void enable_gpmc_config(u32 *gpmc_config, gpmc_csx_t *gpmc_cs_base,
  48. u32 base, u32 size);
  49. static u32 gpmc_serial_TL16CP754C[GPMC_MAX_REG] = {
  50. 0x00011000,
  51. 0x001F1F01,
  52. 0x00080803,
  53. 0x1D091D09,
  54. 0x041D1F1F,
  55. 0x1D0904C4, 0
  56. };
  57. /*
  58. * Routine: board_init
  59. * Description: Early hardware init.
  60. */
  61. int board_init (void)
  62. {
  63. DECLARE_GLOBAL_DATA_PTR;
  64. gpmc_csx_t *serial_cs_base;
  65. u32 *gpmc_config;
  66. gpmc_init (); /* in SRAM or SDRAM, finish GPMC */
  67. /* Configure console support on zoom2 */
  68. gpmc_config = gpmc_serial_TL16CP754C;
  69. serial_cs_base = (gpmc_csx_t *) (GPMC_CONFIG_CS0_BASE +
  70. (3 * GPMC_CONFIG_WIDTH));
  71. enable_gpmc_config(gpmc_config,
  72. serial_cs_base,
  73. SERIAL_TL16CP754C_BASE,
  74. GPMC_SIZE_16M);
  75. /* board id for Linux */
  76. gd->bd->bi_arch_number = MACH_TYPE_OMAP_ZOOM2;
  77. /* boot param addr */
  78. gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
  79. #if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
  80. status_led_set (STATUS_LED_BOOT, STATUS_LED_ON);
  81. #endif
  82. return 0;
  83. }
  84. /*
  85. * Routine: misc_init_r
  86. * Description: Configure zoom board specific configurations
  87. */
  88. int misc_init_r (void)
  89. {
  90. power_init_r ();
  91. dieid_num_r ();
  92. return 0;
  93. }
  94. /*
  95. * Routine: set_muxconf_regs
  96. * Description: Setting up the configuration Mux registers specific to the
  97. * hardware. Many pins need to be moved from protect to primary
  98. * mode.
  99. */
  100. void set_muxconf_regs (void)
  101. {
  102. /* platform specific muxes */
  103. MUX_ZOOM2 ();
  104. }