zoom2.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. #ifdef CONFIG_STATUS_LED
  33. #include <status_led.h>
  34. #endif
  35. #include <asm/io.h>
  36. #include <asm/arch/mem.h>
  37. #include <asm/arch/mux.h>
  38. #include <asm/arch/sys_proto.h>
  39. #include <asm/mach-types.h>
  40. #include "zoom2.h"
  41. #include "zoom2_serial.h"
  42. /*
  43. * This the the zoom2, board specific, gpmc configuration for the
  44. * quad uart on the debug board. The more general gpmc configurations
  45. * are setup at the cpu level in cpu/arm_cortexa8/omap3/mem.c
  46. *
  47. * The details of the setting of the serial gpmc setup are not available.
  48. * The values were provided by another party.
  49. */
  50. extern void enable_gpmc_config(u32 *gpmc_config, gpmc_csx_t *gpmc_cs_base,
  51. u32 base, u32 size);
  52. static u32 gpmc_serial_TL16CP754C[GPMC_MAX_REG] = {
  53. 0x00011000,
  54. 0x001F1F01,
  55. 0x00080803,
  56. 0x1D091D09,
  57. 0x041D1F1F,
  58. 0x1D0904C4, 0
  59. };
  60. /*
  61. * Routine: board_init
  62. * Description: Early hardware init.
  63. */
  64. int board_init (void)
  65. {
  66. DECLARE_GLOBAL_DATA_PTR;
  67. gpmc_csx_t *serial_cs_base;
  68. u32 *gpmc_config;
  69. gpmc_init (); /* in SRAM or SDRAM, finish GPMC */
  70. /* Configure console support on zoom2 */
  71. gpmc_config = gpmc_serial_TL16CP754C;
  72. serial_cs_base = (gpmc_csx_t *) (GPMC_CONFIG_CS0_BASE +
  73. (3 * GPMC_CONFIG_WIDTH));
  74. enable_gpmc_config(gpmc_config,
  75. serial_cs_base,
  76. SERIAL_TL16CP754C_BASE,
  77. GPMC_SIZE_16M);
  78. /* board id for Linux */
  79. gd->bd->bi_arch_number = MACH_TYPE_OMAP_ZOOM2;
  80. /* boot param addr */
  81. gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
  82. #if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
  83. status_led_set (STATUS_LED_BOOT, STATUS_LED_ON);
  84. #endif
  85. return 0;
  86. }
  87. /*
  88. * Routine: misc_init_r
  89. * Description: Configure zoom board specific configurations
  90. */
  91. int misc_init_r (void)
  92. {
  93. power_init_r ();
  94. dieid_num_r ();
  95. return 0;
  96. }
  97. /*
  98. * Routine: set_muxconf_regs
  99. * Description: Setting up the configuration Mux registers specific to the
  100. * hardware. Many pins need to be moved from protect to primary
  101. * mode.
  102. */
  103. void set_muxconf_regs (void)
  104. {
  105. /* platform specific muxes */
  106. MUX_ZOOM2 ();
  107. }