sys_info.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. /*
  2. * (C) Copyright 2008
  3. * Texas Instruments, <www.ti.com>
  4. *
  5. * Author :
  6. * Manikandan Pillai <mani.pillai@ti.com>
  7. *
  8. * Derived from Beagle Board and 3430 SDP code by
  9. * Richard Woodruff <r-woodruff2@ti.com>
  10. * Syed Mohammed Khasim <khasim@ti.com>
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <common.h>
  28. #include <asm/io.h>
  29. #include <asm/arch/mem.h> /* get mem tables */
  30. #include <asm/arch/sys_proto.h>
  31. #include <i2c.h>
  32. extern omap3_sysinfo sysinfo;
  33. static struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
  34. static char *rev_s[CPU_3XX_MAX_REV] = {
  35. "1.0",
  36. "2.0",
  37. "2.1",
  38. "3.0",
  39. "3.1"};
  40. /*****************************************************************
  41. * dieid_num_r(void) - read and set die ID
  42. *****************************************************************/
  43. void dieid_num_r(void)
  44. {
  45. struct ctrl_id *id_base = (struct ctrl_id *)OMAP34XX_ID_L4_IO_BASE;
  46. char *uid_s, die_id[34];
  47. u32 id[4];
  48. memset(die_id, 0, sizeof(die_id));
  49. uid_s = getenv("dieid#");
  50. if (uid_s == NULL) {
  51. id[3] = readl(&id_base->die_id_0);
  52. id[2] = readl(&id_base->die_id_1);
  53. id[1] = readl(&id_base->die_id_2);
  54. id[0] = readl(&id_base->die_id_3);
  55. sprintf(die_id, "%08x%08x%08x%08x", id[0], id[1], id[2], id[3]);
  56. setenv("dieid#", die_id);
  57. uid_s = die_id;
  58. }
  59. printf("Die ID #%s\n", uid_s);
  60. }
  61. /******************************************
  62. * get_cpu_type(void) - extract cpu info
  63. ******************************************/
  64. u32 get_cpu_type(void)
  65. {
  66. return readl(&ctrl_base->ctrl_omap_stat);
  67. }
  68. /******************************************
  69. * get_cpu_rev(void) - extract version info
  70. ******************************************/
  71. u32 get_cpu_rev(void)
  72. {
  73. u32 cpuid = 0;
  74. struct ctrl_id *id_base;
  75. /*
  76. * On ES1.0 the IDCODE register is not exposed on L4
  77. * so using CPU ID to differentiate between ES1.0 and > ES1.0.
  78. */
  79. __asm__ __volatile__("mrc p15, 0, %0, c0, c0, 0":"=r"(cpuid));
  80. if ((cpuid & 0xf) == 0x0)
  81. return CPU_3XX_ES10;
  82. else {
  83. /* Decode the IDs on > ES1.0 */
  84. id_base = (struct ctrl_id *) OMAP34XX_ID_L4_IO_BASE;
  85. cpuid = (readl(&id_base->idcode) >> CPU_3XX_ID_SHIFT) & 0xf;
  86. /* Some early ES2.0 seem to report ID 0, fix this */
  87. if(cpuid == 0)
  88. cpuid = CPU_3XX_ES20;
  89. return cpuid;
  90. }
  91. }
  92. /***************************************************************************
  93. * get_gpmc0_base() - Return current address hardware will be
  94. * fetching from. The below effectively gives what is correct, its a bit
  95. * mis-leading compared to the TRM. For the most general case the mask
  96. * needs to be also taken into account this does work in practice.
  97. * - for u-boot we currently map:
  98. * -- 0 to nothing,
  99. * -- 4 to flash
  100. * -- 8 to enent
  101. * -- c to wifi
  102. ****************************************************************************/
  103. u32 get_gpmc0_base(void)
  104. {
  105. u32 b;
  106. b = readl(&gpmc_cfg->cs[0].config7);
  107. b &= 0x1F; /* keep base [5:0] */
  108. b = b << 24; /* ret 0x0b000000 */
  109. return b;
  110. }
  111. /*******************************************************************
  112. * get_gpmc0_width() - See if bus is in x8 or x16 (mainly for nand)
  113. *******************************************************************/
  114. u32 get_gpmc0_width(void)
  115. {
  116. return WIDTH_16BIT;
  117. }
  118. /*************************************************************************
  119. * get_board_rev() - setup to pass kernel board revision information
  120. * returns:(bit[0-3] sub version, higher bit[7-4] is higher version)
  121. *************************************************************************/
  122. u32 get_board_rev(void)
  123. {
  124. return 0x20;
  125. }
  126. /********************************************************
  127. * get_base(); get upper addr of current execution
  128. *******************************************************/
  129. u32 get_base(void)
  130. {
  131. u32 val;
  132. __asm__ __volatile__("mov %0, pc \n":"=r"(val)::"memory");
  133. val &= 0xF0000000;
  134. val >>= 28;
  135. return val;
  136. }
  137. /********************************************************
  138. * is_running_in_flash() - tell if currently running in
  139. * FLASH.
  140. *******************************************************/
  141. u32 is_running_in_flash(void)
  142. {
  143. if (get_base() < 4)
  144. return 1; /* in FLASH */
  145. return 0; /* running in SRAM or SDRAM */
  146. }
  147. /********************************************************
  148. * is_running_in_sram() - tell if currently running in
  149. * SRAM.
  150. *******************************************************/
  151. u32 is_running_in_sram(void)
  152. {
  153. if (get_base() == 4)
  154. return 1; /* in SRAM */
  155. return 0; /* running in FLASH or SDRAM */
  156. }
  157. /********************************************************
  158. * is_running_in_sdram() - tell if currently running in
  159. * SDRAM.
  160. *******************************************************/
  161. u32 is_running_in_sdram(void)
  162. {
  163. if (get_base() > 4)
  164. return 1; /* in SDRAM */
  165. return 0; /* running in SRAM or FLASH */
  166. }
  167. /***************************************************************
  168. * get_boot_type() - Is this an XIP type device or a stream one
  169. * bits 4-0 specify type. Bit 5 says mem/perif
  170. ***************************************************************/
  171. u32 get_boot_type(void)
  172. {
  173. return (readl(&ctrl_base->status) & SYSBOOT_MASK);
  174. }
  175. /*************************************************************
  176. * get_device_type(): tell if GP/HS/EMU/TST
  177. *************************************************************/
  178. u32 get_device_type(void)
  179. {
  180. return ((readl(&ctrl_base->status) & (DEVICE_MASK)) >> 8);
  181. }
  182. #ifdef CONFIG_DISPLAY_CPUINFO
  183. /**
  184. * Print CPU information
  185. */
  186. int print_cpuinfo (void)
  187. {
  188. char *cpu_s, *sec_s;
  189. switch (get_cpu_type()) {
  190. case OMAP3503:
  191. cpu_s = "3503";
  192. break;
  193. case OMAP3515:
  194. cpu_s = "3515";
  195. break;
  196. case OMAP3525:
  197. cpu_s = "3525";
  198. break;
  199. case OMAP3530:
  200. cpu_s = "3530";
  201. break;
  202. default:
  203. cpu_s = "35XX";
  204. break;
  205. }
  206. switch (get_device_type()) {
  207. case TST_DEVICE:
  208. sec_s = "TST";
  209. break;
  210. case EMU_DEVICE:
  211. sec_s = "EMU";
  212. break;
  213. case HS_DEVICE:
  214. sec_s = "HS";
  215. break;
  216. case GP_DEVICE:
  217. sec_s = "GP";
  218. break;
  219. default:
  220. sec_s = "?";
  221. }
  222. printf("OMAP%s-%s ES%s, CPU-OPP2 L3-165MHz\n",
  223. cpu_s, sec_s, rev_s[get_cpu_rev()]);
  224. return 0;
  225. }
  226. #endif /* CONFIG_DISPLAY_CPUINFO */