sys_info.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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 gpmc_csx_t *gpmc_cs_base = (gpmc_csx_t *)GPMC_CONFIG_CS0_BASE;
  34. static sdrc_t *sdrc_base = (sdrc_t *)OMAP34XX_SDRC_BASE;
  35. static ctrl_t *ctrl_base = (ctrl_t *)OMAP34XX_CTRL_BASE;
  36. /*****************************************************************
  37. * dieid_num_r(void) - read and set die ID
  38. *****************************************************************/
  39. void dieid_num_r(void)
  40. {
  41. ctrl_id_t *id_base = (ctrl_id_t *)OMAP34XX_ID_L4_IO_BASE;
  42. char *uid_s, die_id[34];
  43. u32 id[4];
  44. memset(die_id, 0, sizeof(die_id));
  45. uid_s = getenv("dieid#");
  46. if (uid_s == NULL) {
  47. id[3] = readl(&id_base->die_id_0);
  48. id[2] = readl(&id_base->die_id_1);
  49. id[1] = readl(&id_base->die_id_2);
  50. id[0] = readl(&id_base->die_id_3);
  51. sprintf(die_id, "%08x%08x%08x%08x", id[0], id[1], id[2], id[3]);
  52. setenv("dieid#", die_id);
  53. uid_s = die_id;
  54. }
  55. printf("Die ID #%s\n", uid_s);
  56. }
  57. /******************************************
  58. * get_cpu_type(void) - extract cpu info
  59. ******************************************/
  60. u32 get_cpu_type(void)
  61. {
  62. return readl(&ctrl_base->ctrl_omap_stat);
  63. }
  64. /******************************************
  65. * get_cpu_rev(void) - extract version info
  66. ******************************************/
  67. u32 get_cpu_rev(void)
  68. {
  69. u32 cpuid = 0;
  70. /*
  71. * On ES1.0 the IDCODE register is not exposed on L4
  72. * so using CPU ID to differentiate
  73. * between ES2.0 and ES1.0.
  74. */
  75. __asm__ __volatile__("mrc p15, 0, %0, c0, c0, 0":"=r"(cpuid));
  76. if ((cpuid & 0xf) == 0x0)
  77. return CPU_3430_ES1;
  78. else
  79. return CPU_3430_ES2;
  80. }
  81. /****************************************************
  82. * is_mem_sdr() - return 1 if mem type in use is SDR
  83. ****************************************************/
  84. u32 is_mem_sdr(void)
  85. {
  86. if (readl(&sdrc_base->cs[CS0].mr) == SDP_SDRC_MR_0_SDR)
  87. return 1;
  88. return 0;
  89. }
  90. /***********************************************************************
  91. * get_cs0_size() - get size of chip select 0/1
  92. ************************************************************************/
  93. u32 get_sdr_cs_size(u32 cs)
  94. {
  95. u32 size;
  96. /* get ram size field */
  97. size = readl(&sdrc_base->cs[cs].mcfg) >> 8;
  98. size &= 0x3FF; /* remove unwanted bits */
  99. size *= SZ_2M; /* find size in MB */
  100. return size;
  101. }
  102. /***********************************************************************
  103. * get_sdr_cs_offset() - get offset of cs from cs0 start
  104. ************************************************************************/
  105. u32 get_sdr_cs_offset(u32 cs)
  106. {
  107. u32 offset;
  108. if (!cs)
  109. return 0;
  110. offset = readl(&sdrc_base->cs_cfg);
  111. offset = (offset & 15) << 27 | (offset & 0x30) >> 17;
  112. return offset;
  113. }
  114. /***********************************************************************
  115. * get_board_type() - get board type based on current production stats.
  116. * - NOTE-1-: 2 I2C EEPROMs will someday be populated with proper info.
  117. * when they are available we can get info from there. This should
  118. * be correct of all known boards up until today.
  119. * - NOTE-2- EEPROMs are populated but they are updated very slowly. To
  120. * avoid waiting on them we will use ES version of the chip to get info.
  121. * A later version of the FPGA migth solve their speed issue.
  122. ************************************************************************/
  123. u32 get_board_type(void)
  124. {
  125. if (get_cpu_rev() == CPU_3430_ES2)
  126. return sysinfo.board_type_v2;
  127. else
  128. return sysinfo.board_type_v1;
  129. }
  130. /***************************************************************************
  131. * get_gpmc0_base() - Return current address hardware will be
  132. * fetching from. The below effectively gives what is correct, its a bit
  133. * mis-leading compared to the TRM. For the most general case the mask
  134. * needs to be also taken into account this does work in practice.
  135. * - for u-boot we currently map:
  136. * -- 0 to nothing,
  137. * -- 4 to flash
  138. * -- 8 to enent
  139. * -- c to wifi
  140. ****************************************************************************/
  141. u32 get_gpmc0_base(void)
  142. {
  143. u32 b;
  144. b = readl(&gpmc_cs_base->config7);
  145. b &= 0x1F; /* keep base [5:0] */
  146. b = b << 24; /* ret 0x0b000000 */
  147. return b;
  148. }
  149. /*******************************************************************
  150. * get_gpmc0_width() - See if bus is in x8 or x16 (mainly for nand)
  151. *******************************************************************/
  152. u32 get_gpmc0_width(void)
  153. {
  154. return WIDTH_16BIT;
  155. }
  156. /*************************************************************************
  157. * get_board_rev() - setup to pass kernel board revision information
  158. * returns:(bit[0-3] sub version, higher bit[7-4] is higher version)
  159. *************************************************************************/
  160. u32 get_board_rev(void)
  161. {
  162. return 0x20;
  163. }
  164. /*********************************************************************
  165. * display_board_info() - print banner with board info.
  166. *********************************************************************/
  167. void display_board_info(u32 btype)
  168. {
  169. char *cpu_s, *mem_s, *sec_s;
  170. switch (get_cpu_type()) {
  171. case OMAP3503:
  172. cpu_s = "3503";
  173. break;
  174. case OMAP3515:
  175. cpu_s = "3515";
  176. break;
  177. case OMAP3525:
  178. cpu_s = "3525";
  179. break;
  180. case OMAP3530:
  181. cpu_s = "3530";
  182. break;
  183. default:
  184. cpu_s = "35XX";
  185. break;
  186. }
  187. if (is_mem_sdr())
  188. mem_s = "mSDR";
  189. else
  190. mem_s = "LPDDR";
  191. switch (get_device_type()) {
  192. case TST_DEVICE:
  193. sec_s = "TST";
  194. break;
  195. case EMU_DEVICE:
  196. sec_s = "EMU";
  197. break;
  198. case HS_DEVICE:
  199. sec_s = "HS";
  200. break;
  201. case GP_DEVICE:
  202. sec_s = "GP";
  203. break;
  204. default:
  205. sec_s = "?";
  206. }
  207. printf("OMAP%s-%s rev %d, CPU-OPP2 L3-165MHz\n", cpu_s,
  208. sec_s, get_cpu_rev());
  209. printf("%s + %s/%s\n", sysinfo.board_string,
  210. mem_s, sysinfo.nand_string);
  211. }
  212. /********************************************************
  213. * get_base(); get upper addr of current execution
  214. *******************************************************/
  215. u32 get_base(void)
  216. {
  217. u32 val;
  218. __asm__ __volatile__("mov %0, pc \n":"=r"(val)::"memory");
  219. val &= 0xF0000000;
  220. val >>= 28;
  221. return val;
  222. }
  223. /********************************************************
  224. * is_running_in_flash() - tell if currently running in
  225. * FLASH.
  226. *******************************************************/
  227. u32 is_running_in_flash(void)
  228. {
  229. if (get_base() < 4)
  230. return 1; /* in FLASH */
  231. return 0; /* running in SRAM or SDRAM */
  232. }
  233. /********************************************************
  234. * is_running_in_sram() - tell if currently running in
  235. * SRAM.
  236. *******************************************************/
  237. u32 is_running_in_sram(void)
  238. {
  239. if (get_base() == 4)
  240. return 1; /* in SRAM */
  241. return 0; /* running in FLASH or SDRAM */
  242. }
  243. /********************************************************
  244. * is_running_in_sdram() - tell if currently running in
  245. * SDRAM.
  246. *******************************************************/
  247. u32 is_running_in_sdram(void)
  248. {
  249. if (get_base() > 4)
  250. return 1; /* in SDRAM */
  251. return 0; /* running in SRAM or FLASH */
  252. }
  253. /***************************************************************
  254. * get_boot_type() - Is this an XIP type device or a stream one
  255. * bits 4-0 specify type. Bit 5 says mem/perif
  256. ***************************************************************/
  257. u32 get_boot_type(void)
  258. {
  259. return (readl(&ctrl_base->status) & SYSBOOT_MASK);
  260. }
  261. /*************************************************************
  262. * get_device_type(): tell if GP/HS/EMU/TST
  263. *************************************************************/
  264. u32 get_device_type(void)
  265. {
  266. return ((readl(&ctrl_base->status) & (DEVICE_MASK)) >> 8);
  267. }