board.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. *
  3. * Common functions for OMAP4 based boards
  4. *
  5. * (C) Copyright 2010
  6. * Texas Instruments, <www.ti.com>
  7. *
  8. * Author :
  9. * Aneesh V <aneesh@ti.com>
  10. * Steve Sakoman <steve@sakoman.com>
  11. *
  12. * See file CREDITS for list of people who contributed to this
  13. * project.
  14. *
  15. * This program is free software; you can redistribute it and/or
  16. * modify it under the terms of the GNU General Public License as
  17. * published by the Free Software Foundation; either version 2 of
  18. * the License, or (at your option) any later version.
  19. *
  20. * This program is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with this program; if not, write to the Free Software
  27. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  28. * MA 02111-1307 USA
  29. */
  30. #include <common.h>
  31. #include <asm/arch/cpu.h>
  32. #include <asm/arch/sys_proto.h>
  33. #include <asm/sizes.h>
  34. DECLARE_GLOBAL_DATA_PTR;
  35. /*
  36. * Routine: s_init
  37. * Description: Does early system init of muxing and clocks.
  38. * - Called path is with SRAM stack.
  39. */
  40. void s_init(void)
  41. {
  42. watchdog_init();
  43. }
  44. /*
  45. * Routine: wait_for_command_complete
  46. * Description: Wait for posting to finish on watchdog
  47. */
  48. void wait_for_command_complete(struct watchdog *wd_base)
  49. {
  50. int pending = 1;
  51. do {
  52. pending = readl(&wd_base->wwps);
  53. } while (pending);
  54. }
  55. /*
  56. * Routine: watchdog_init
  57. * Description: Shut down watch dogs
  58. */
  59. void watchdog_init(void)
  60. {
  61. struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE;
  62. writel(WD_UNLOCK1, &wd2_base->wspr);
  63. wait_for_command_complete(wd2_base);
  64. writel(WD_UNLOCK2, &wd2_base->wspr);
  65. }
  66. /*
  67. * This function finds the SDRAM size available in the system
  68. * based on DMM section configurations
  69. * This is needed because the size of memory installed may be
  70. * different on different versions of the board
  71. */
  72. u32 sdram_size(void)
  73. {
  74. u32 section, i, total_size = 0, size, addr;
  75. for (i = 0; i < 4; i++) {
  76. section = __raw_readl(DMM_LISA_MAP_BASE + i*4);
  77. addr = section & DMM_LISA_MAP_SYS_ADDR_MASK;
  78. /* See if the address is valid */
  79. if ((addr >= OMAP44XX_DRAM_ADDR_SPACE_START) &&
  80. (addr < OMAP44XX_DRAM_ADDR_SPACE_END)) {
  81. size = ((section & DMM_LISA_MAP_SYS_SIZE_MASK) >>
  82. DMM_LISA_MAP_SYS_SIZE_SHIFT);
  83. size = 1 << size;
  84. size *= SZ_16M;
  85. total_size += size;
  86. }
  87. }
  88. return total_size;
  89. }
  90. /*
  91. * Routine: dram_init
  92. * Description: sets uboots idea of sdram size
  93. */
  94. int dram_init(void)
  95. {
  96. gd->ram_size = sdram_size();
  97. return 0;
  98. }
  99. /*
  100. * Print board information
  101. */
  102. int checkboard(void)
  103. {
  104. puts(sysinfo.board_string);
  105. return 0;
  106. }
  107. /*
  108. * This function is called by start_armboot. You can reliably use static
  109. * data. Any boot-time function that require static data should be
  110. * called from here
  111. */
  112. int arch_cpu_init(void)
  113. {
  114. set_muxconf_regs();
  115. return 0;
  116. }