Hi, <br><br>I am new to U-Boot. Currently I am working for adm5120 board.<br>I read &quot;readme&quot; file, and &quot;DULG.pdf&quot;,&nbsp; &amp; U-Boot mailing archive also.<br><br>ADM5120 / ADM5120P <br>Specs:<br><br>&nbsp;&nbsp;&nbsp; * 175MHz/227MIPS 4Kc CPU with an embedded cache, 8K-byte I-cache and 8K D-cache MIPS32
<br>&nbsp;&nbsp;&nbsp; * 5 IEEE 802.e Fast Ethernet PHY interfaces and 1 GMII/MII interface<br>&nbsp;&nbsp;&nbsp; * Two SDRAM banks (each bank 1M-32 up to 32Mx32Bit)(support upto 2Mx32Bytes)<br>&nbsp;&nbsp;&nbsp; * Two Flash banks up to 4MB(NOR Flash and Nand Flash), and many more.&nbsp;&nbsp; &nbsp;
<br><br>I have few questions regarding this, are<br><br>My &quot;<a href="http://config.mk">config.mk</a>&quot; file contains<br>&nbsp;&nbsp; &nbsp;#ROM version<br>&nbsp;&nbsp; &nbsp;TEXT_BASE = 0x80100000<br>&nbsp;&nbsp; &nbsp;PRE_TEXT_BASE = 0xBFC00000<br><br>Q1: TEXT_BASE is the location of U-Boot in RAM, means TEXT_BASE points to SDRAM perticular location? or tell more about TEXT_BASE.
<br>Q2: In my board setting CFG_MONITOR_BASE=TEXT_BASE, means my boot monitor code reading from EEPROM?<br>*****************************<br>For my board setting <br>#define CFG_SDRAM_BASE &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x80000000 &nbsp;&nbsp; &nbsp;and <br>
#define CFG_MEMTEST_START &nbsp;&nbsp; &nbsp; 0x80100000<br>#define CFG_MEMTEST_END &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x81000000<br><br>Q3: CFG_MEMTEST_START, and CFG_MEMTEST_END are simple memory test area, but I don&#39;t understand purpose of this test or which test and purpose?
<br>*****************************<br>In my board setting<br>/* addresses for switch descriptors and buffers<br>&nbsp;* reason for those fixed address is that the adm5120 switch<br>&nbsp;* engine can only deploy descriptors and packet buffers
<br>&nbsp;* @ address &lt; 16MB.<br>&nbsp;* 0x80000000 ~ 0x80100000 is now reserved, so it SHOULD be safe<br>&nbsp;* to put the addresses within this area<br>&nbsp;*/<br>#define CFG_PKTBUF_ADDR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x800C0000<br>#define CFG_ARPBUF_ADDR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x800D0000
<br>#define CFG_DESC_ADDR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x800F0000<br><br>Q4: means?<br><br>Q5: Which are the other important configuration macro&#39;s I&#39;ve to study? or I&#39;ve to pay more attention?<br><br>Q6: Where I get more help of U-Boot for ADM5120, excepts the above mentioned files?