<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>PowerQUICC Processors中的主题 Re: U-Boot on MPC8360EA Reference Board.</title>
    <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144772#M45</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi All,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;We solved the problem, the problem was in MW compiler.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks anyaway.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Sep 2007 16:40:23 GMT</pubDate>
    <dc:creator>LuckyS</dc:creator>
    <dc:date>2007-09-28T16:40:23Z</dc:date>
    <item>
      <title>U-Boot on MPC8360EA Reference Board.</title>
      <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144765#M38</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi,&lt;BR /&gt;&amp;nbsp; I am trying to load customized linux kernel on MPC8360 reference board using U-Boot TFTP. I am not able to ping any outside address. I have tried connecting to TFTP server with a cross over cable. Still not able to ping the server. Am i missing something? Thanks and appreciate your help -&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 08:20:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144765#M38</guid>
      <dc:creator>clockwork</dc:creator>
      <dc:date>2007-09-11T08:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: U-Boot on MPC8360EA Reference Board.</title>
      <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144766#M39</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;clockwork,&lt;/P&gt;&lt;P&gt;When debugging u-boot networking and a new board for the first time, the real first step is KISS (keep it simple stupid) before you try more advanced networking, downloading etc. with it. u-boot has some quirks and also some of the setup is not 100% obvious if you are a u-boot newbie (as I was just 6 months ago)&lt;/P&gt;&lt;P&gt;First you should hook up your target board directly to your server using a straight through cable (as all the boards I've seen from Freescale have PHYs that have auto-crossover). Not all cross-over cables are created equal and some will not work at gigabit. The PHY on the board should take care of things OK.&lt;/P&gt;&lt;P&gt;Make sure that you see the carrier light on the port and also check the server side with an ifconfig (or similar command) to see that the port is up OK on the server as well. Also use a "known good" cable.&lt;/P&gt;&lt;P&gt;Assuming everything is OK at the physical level, you need to make sure u-boot is configured OK. Here is my config (for an MPC8313E-RDB board, but your config should be similar in the areas I will talk about):&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;=&amp;gt; &lt;STRONG&gt;print&lt;/STRONG&gt;&lt;BR /&gt;flash_nfs=run nfsargs addip addtty;bootm ${kernel_addr}&lt;BR /&gt;flash_self=run ramargs addip addtty;bootm ${kernel_addr} ${ramdisk_addr}&lt;BR /&gt;net_nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;bootm&lt;BR /&gt;load=tftp 100000 uboot_8313&lt;BR /&gt;update=protect off fe000000 fe04ffff; era fe000000 fe04ffff; cp.b 100000 fe00000&lt;BR /&gt;0 ${filesize}&lt;BR /&gt;upd=run load;run update&lt;BR /&gt;fdtaddr=400000&lt;BR /&gt;fdtfile=mpc8313erdb.dtb&lt;BR /&gt;vsc=cp.b fe050000 40000 12000;go 40004&lt;BR /&gt;bootcmd=protect on fe050000 fe07ffff;run vsc&lt;BR /&gt;ramargs=set bootargs root=/dev/ram rw ramdisk=128000&lt;BR /&gt;ethact=TSEC0&lt;BR /&gt;mtdids=nor0=nor,nand0=nand&lt;BR /&gt;rootpath=/tftpboot/192.168.2.192&lt;BR /&gt;filesize=119d&lt;BR /&gt;fileaddr=400000&lt;BR /&gt;gatewayip=192.168.2.1&lt;BR /&gt;netmask=255.255.255.0&lt;BR /&gt;ipaddr=192.168.2.192&lt;BR /&gt;serverip=192.168.2.129&lt;BR /&gt;bootargs=root=/dev/ram rw ramdisk=128000 console=ttyS0,115200&lt;BR /&gt;stdin=serial&lt;BR /&gt;stdout=serial&lt;BR /&gt;stderr=serial&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;Environment size: 1747/8188 bytes&lt;BR /&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Here are the key ones to focus on:&lt;/P&gt;&lt;P&gt;Make sure the local ipaddr and netmask are OK and for initial debugging, make sure you used hard configured IP addresses on both the target and the server, here are mine:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;ipaddr=192.168.2.192&lt;BR /&gt;netmask=255.255.255.0&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Make sure the server IP address is set OK and if you are using a back to back cable you need to make sure the server and the target are on the same subnet:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;serverip=192.168.2.129&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I believe the 8360 device like the 8313 has multiple ETSECs, so you need to make sure that the correct ETSEC is set as default (i.e. the one connected to the port you are trying to run). In my case, I typically use ETSEC1 in the chip, but one thing that may bite you is the Freescale numbers ETSECs starting at 1 (ETSEC1, ETSEC2) whereas u-boot starts from 0 (TSEC0, TSEC1), so in my case I want to use ETSEC1 so I set ethact on u-boot to TSEC0. The active TSEC is set using the ethact environment variable (here is a print command showing mine):&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;=&amp;gt; &lt;STRONG&gt;print ethact&lt;/STRONG&gt;&lt;BR /&gt;ethact=TSEC0&lt;BR /&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Another thing that may bite you is sometimes when u-boot fails, it will automatically toggle between TSEC0 and TSEC1, so if ping isn't working, use the print ethact command to see if you are on the right port. If it is wrong, you can use the set command:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;=&amp;gt; &lt;STRONG&gt;set ethact TSEC0&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Another thing that may bite you is my board (and perhaps yours) also has an embedded Ethernet Switch. If your board has one, you need to make sure that it is loaded and running if you are trying to ping through that switch. The MPC8313E-RDB board has a Vitesse switch chip hooked up to TSEC1 (u-boot TSEC0) which must be running properly. In my case, I have my boot command setup to load the code automatically at startup (run vsc) as follows:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;vsc=cp.b fe050000 40000 12000;go 40004&lt;BR /&gt;bootcmd=protect on fe050000 fe07ffff;run vsc&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;For my board when you "run vsc" you get the following output:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;Protected 3 sectors&lt;BR /&gt;## Starting application at 0x00040004 ...&lt;BR /&gt;VSC7385 Version = 0x273850e9&lt;BR /&gt;Value in IRAM matches binary, total bytes 0x2000 loaded&lt;BR /&gt;## Application terminated, rc = 0x0&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Also note that as the TSEC is directly connected on the boardto a port on the switch, it will always report the TSEC port as up even though nothing is connected to other switches on the port (this can cause confusion as well for a first time Freescale board user).&lt;/P&gt;&lt;P&gt;Another interesting bug (but shouldn't get you eventually get ping to work) is at least on my board and u-boot, the first time you try a ping, it gets an error, but then pings OK as follows:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;=&amp;gt; &lt;STRONG&gt;ping 192.168.2.129&lt;BR /&gt;&lt;/STRONG&gt;Speed: 1000, full duplex&lt;BR /&gt;Using TSEC0 device&lt;BR /&gt;Got error 4&lt;BR /&gt;host 192.168.2.129 is alive&lt;BR /&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Subsequent pings then work OK:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;=&amp;gt; &lt;STRONG&gt;ping 192.168.2.129&lt;/STRONG&gt;&lt;BR /&gt;Speed: 1000, full duplex&lt;BR /&gt;Using TSEC0 device&lt;BR /&gt;host 192.168.2.129 is alive&lt;BR /&gt;=&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Notice that the ping command also tells you the speed, duplex setting and TSEC setting, make sure all those are OK (with the caution that if attached to an on-board switch chip that is running OK, it will always be at 1000, full duplex). If the TSEC device is the wrong one, use the set ethact command to change it. Also it is a good idea to save.&lt;/P&gt;&lt;P&gt;Another thing to remember while debugging u-boot networking is that u-boot can transmit ping requests and process the received ping replies, but&amp;nbsp;u-boot does not support receiving ping requests and will silently discard them (so if you ping from the server to a u-boot target, you will not see a ping reply at the server side).&lt;/P&gt;&lt;P&gt;Last thing I can think of is I have seen cases where I've done a set ethact followed by a save and after a reboot, it doesn't "stick" and the other TSEC is the active one (not sure if this is a bug or a feature). Again either the print ethact or the ping command itself will tell which one is active (again remembering that u-boot numbers are one off from Freescale spec TSEC name).&lt;/P&gt;&lt;P&gt;Hope this helps :smileyhappy: Also after you get Ping to work OK, for other u-boot observations (such as running TFTP OK when running back to back, but sometimes failing on a network), you can check out my reply to another post at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://forums.freescale.com/freescale/board/message?board.id=MCUCOMM&amp;amp;thread.id=493" target="_blank"&gt;http://forums.freescale.com/freescale/board/message?board.id=MCUCOMM&amp;amp;thread.id=493&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;abartky&lt;/P&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 01:28:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144766#M39</guid>
      <dc:creator>abartky</dc:creator>
      <dc:date>2007-09-12T01:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: U-Boot on MPC8360EA Reference Board.</title>
      <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144767#M40</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Thanks abartky. I did read your other post before posting my question. How to determine whether i got a vitesse switch on my board? I checked the board user manual. No mention of it. Let me go through the steps mentioned in your reply. Thanks for your help. -&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 20:52:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144767#M40</guid>
      <dc:creator>clockwork</dc:creator>
      <dc:date>2007-09-12T20:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: U-Boot on MPC8360EA Reference Board.</title>
      <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144768#M41</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;Hi,&lt;BR /&gt;&amp;nbsp; I followed all these step. I verified following environment variables ipaddr,ethaddr,ethact, gatewayip,serverip,netmask. Everything looks ok. I have connected the board directly to the server. It still makes no difference. I am certainly missing something. I got 2 board. Both of them behave the sameway. I got to be doing something wrong. Thanks -&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;Here is my u-boot environment&lt;BR /&gt;=&amp;gt; printenv&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;loada&lt;BR /&gt;bootcmd=setenv bootargs root=/dev/nfs rw nfsroot=$serverip:$rootpath ip=$ipaddr:&lt;BR /&gt;rgs;tftp $ramdiskaddr $ramdiskfile;tftp $loadaddr $bootfile;bootm $loadaddr $ram&lt;BR /&gt;diskaddr&lt;BR /&gt;nfsboot=setenv bootargs root=/dev/nfs rw nfsroot=$serverip:$rootpath ip=$ipaddr:&lt;BR /&gt;$serverip:$gatewayip:$netmask:$hostname:$netdev&lt;IMG alt=":smileysurprised:" class="emoticon emoticon-smileysurprised" id="smileysurprised" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-surprised.gif" title="Smiley Surprised" /&gt;ff console=$consoledev,$baudrat&lt;BR /&gt;e $othbootargs;tftp $loadaddr $bootfile;bootm $loadaddr&lt;BR /&gt;bootdelay=6&lt;BR /&gt;baudrate=115200&lt;BR /&gt;loads_echo=1&lt;BR /&gt;loadaddr=200000&lt;BR /&gt;netdev=eth0&lt;BR /&gt;consoledev=ttyS0&lt;BR /&gt;ramdiskaddr=400000&lt;BR /&gt;ramdiskfile=ramfs.83xx&lt;BR /&gt;ethact=FSL GETH0&lt;BR /&gt;ipaddr=10.0.20.95&lt;BR /&gt;serverip=10.0.20.245&lt;BR /&gt;gatewayip=10.0.20.1&lt;BR /&gt;stdin=serial&lt;BR /&gt;stdout=serial&lt;BR /&gt;stderr=serial&lt;BR /&gt;ethaddr=00:00:01:12:23:01&lt;BR /&gt;&lt;BR /&gt;Environment size: 872/8188 bytes&lt;BR /&gt;=&amp;gt;&lt;BR /&gt;&lt;BR /&gt;U-Boot 1.1.3 (Dec&amp;nbsp; 8 2006 - 15:02:25) MPC83XX&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; SEC:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Clock configuration:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; Coherent System Bus:&amp;nbsp; 264 MHz MHz&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; Core:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 528 MHz MHz&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; QE:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 396 MHznumber.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; Local Bus Controller: 264 MHzcpu revision!&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; SEC:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 88 MHz&lt;BR /&gt;&amp;nbsp; I2C1:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 88 MHz&lt;BR /&gt;&amp;nbsp; I2C2:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 264 MHz&lt;BR /&gt;CPU: Rev: Unknown, incompatible u-boot image.&lt;BR /&gt;Board: Freescale MPC8360EPB&lt;BR /&gt;I2C:&amp;nbsp;&amp;nbsp; ready&lt;BR /&gt;DRAM:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; DDR DIMM: data bus width is 64 bit with ECC&lt;BR /&gt;&amp;nbsp;&amp;nbsp; DDRC ECC mode: ON&lt;BR /&gt;&amp;nbsp;&amp;nbsp; SDRAM on Local Bus: 64 MB&lt;BR /&gt;&amp;nbsp;&amp;nbsp; DDR RAM: 256 MB&lt;BR /&gt;FLASH: 32 MB&lt;BR /&gt;In:&amp;nbsp;&amp;nbsp;&amp;nbsp; serial&lt;BR /&gt;Out:&amp;nbsp;&amp;nbsp; serial&lt;BR /&gt;Err:&amp;nbsp;&amp;nbsp; serial&lt;BR /&gt;Net:&amp;nbsp;&amp;nbsp; FSL GETH0&lt;BR /&gt;Hit any key to stop autoboot:&amp;nbsp; 0&lt;BR /&gt;=&amp;gt; ping 10.0.20.245&lt;BR /&gt;geth: PHY is Marvell 88E11x1 (1410cc2)&lt;BR /&gt;FSL GETH0: Full Duplex&lt;BR /&gt;FSL GETH0: Speed 1000BT&lt;BR /&gt;FSL GETH0: Link is up&lt;BR /&gt;Using FSL GETH0 device&amp;nbsp;&amp;nbsp; ------&amp;gt; It stays here forever.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by clockwork on &lt;SPAN class="date_text"&gt;2007-09-12&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;04:48 PM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 22:46:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144768#M41</guid>
      <dc:creator>clockwork</dc:creator>
      <dc:date>2007-09-12T22:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: U-Boot on MPC8360EA Reference Board.</title>
      <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144769#M42</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;clockwork,&lt;/P&gt;&lt;P&gt;I did a quick google search and found a "working" u-boot example for the 8360 where I searched for "FSL GETH0 printenv", the link I found is at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.mail-archive.com/linuxppc-embedded@ozlabs.org/msg20887.html" target="test_blank"&gt;http://www.mail-archive.com/linuxppc-embedded@ozlabs.org/msg20887.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Here is an excerpt:&lt;/P&gt;&lt;P&gt;U-Boot 1.1.3 (ppc83xx-20050315-dev) (Dec 14 2005 - 09:37:59) MPC83XX&lt;BR /&gt;&lt;BR /&gt;Clock configuration:&lt;BR /&gt;Coherent System Bus: 264 MHz&lt;BR /&gt;Core: 528 MHz&lt;BR /&gt;QE: 396 MHz&lt;BR /&gt;Local Bus Controller: 264 MHz&lt;BR /&gt;Local Bus: 66 MHz&lt;BR /&gt;DDR: 264 MHz&lt;BR /&gt;DDR Secondary: 264 MHz&lt;BR /&gt;I2C: 264 MHz&lt;BR /&gt;CPU: MPC83xx, Rev: 20 at 528 MHz&lt;BR /&gt;Board: Freescale MPC8360EPB&lt;BR /&gt;I2C: ready&lt;BR /&gt;DRAM:&lt;BR /&gt;SDRAM on Local Bus: 64 MB&lt;BR /&gt;DDR RAM: 256 MB&lt;BR /&gt;FLASH: 16 MB&lt;BR /&gt;In: serial&lt;BR /&gt;Out: serial&lt;BR /&gt;Err: serial&lt;BR /&gt;Net: FSL GETH0&lt;BR /&gt;Hit any key to stop autoboot: 0&lt;BR /&gt;=&amp;gt; printenv&lt;BR /&gt;bootcmd=setenv bootargs root=/dev/nfs rw nfsroot=$serverip:$rootpath&lt;BR /&gt;ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netrramboot=setenv&lt;BR /&gt;bootargs root=/dev/ram rw console=$consoledev,$baudrate $othbootargs;tftp&lt;BR /&gt;$ramdiskaddr $ramdiskfile;tftp $loarnfsboot=setenv bootargs root=/dev/nfs&lt;BR /&gt;rw nfsroot=$serverip:$rootpath&lt;BR /&gt;ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netrbootdelay=6&lt;BR /&gt;baudrate=115200&lt;BR /&gt;loads_echo=1&lt;BR /&gt;ethaddr=00:04:9f:11:22:33&lt;BR /&gt;eth1addr=00:E0:0C:00:7D:01&lt;BR /&gt;hostname=unknown&lt;BR /&gt;loadaddr=200000&lt;BR /&gt;netdev=eth0&lt;BR /&gt;consoledev=ttyS0&lt;BR /&gt;ramdiskaddr=400000&lt;BR /&gt;ramdiskfile=ramfs.83xx&lt;BR /&gt;ethact=FSL GETH0&lt;BR /&gt;filesize=2d030a&lt;BR /&gt;fileaddr=20000&lt;BR /&gt;gatewayip=192.168.3.1&lt;BR /&gt;netmask=255.255.255.0&lt;BR /&gt;serverip=192.168.3.81&lt;BR /&gt;bootfile=/tftpboot/vmlinux.gz&lt;BR /&gt;ipaddr=192.168.3.253&lt;BR /&gt;stdin=serial&lt;BR /&gt;stdout=serial&lt;BR /&gt;stderr=serial&lt;BR /&gt;&lt;BR /&gt;Environment size: 1005/8188 bytes&lt;BR /&gt;=&amp;gt; setenv bootargs console=ttyS1 root=/dev/ram&lt;BR /&gt;=&amp;gt; tftp 200000 uImage_test&lt;BR /&gt;Auto negotiating done&lt;BR /&gt;switching to rgmii 100&lt;BR /&gt;duplexity: full&lt;BR /&gt;mac speed set to: 100&lt;BR /&gt;Using FSL GETH0 device&lt;BR /&gt;TFTP from server 192.168.3.81; our IP address is 192.168.3.253&lt;BR /&gt;Filename 'uImage_test'.&lt;BR /&gt;Load address: 0x200000&lt;BR /&gt;Loading: #################################################################&lt;BR /&gt;#################################################################&lt;BR /&gt;#################################################################&lt;BR /&gt;#######&lt;BR /&gt;done&lt;BR /&gt;Bytes transferred = 1033098 (fc38a hex)&lt;BR /&gt;=&amp;gt;&lt;/P&gt;&lt;P&gt;In your printenv, I did not see a netmask=255.255.255.0, so make sure that is set.&amp;nbsp; Also I noticed the example working code also sets the eth1addr, so if you have a 2 port system, you may want to try that as well.&lt;/P&gt;&lt;P&gt;The other worrysome part&amp;nbsp;are the startup messages from your trace&amp;nbsp;saying "number", "CPU revision!" and "Rev: Unknown, incompatible u-boot image" and the fact that&amp;nbsp;the ping command&amp;nbsp;is hanging there, rather than timing out, do not bode well.&amp;nbsp; Considering the fact the ping command is reporting the PHY status OK (full duplex Gigabit Ethernet), if adding the netmask and the eth1addr doesn't fix things, then you may have a u-boot&amp;nbsp;software issue. Are you using the version of u-boot that came with the board's BSP?&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;abartky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 23:57:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144769#M42</guid>
      <dc:creator>abartky</dc:creator>
      <dc:date>2007-09-12T23:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: U-Boot on MPC8360EA Reference Board.</title>
      <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144770#M43</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi abartky,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; I am using the one came with the board. I replaced using the one build from freescale linux BSP. Same revision 1.1.3 and made no difference. And finally, downloaded latest version 1.2 from net and build it for 8360. It did not boot at all. So reverted back to original revision came with the board. Thanks for your reply.&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2007 01:08:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144770#M43</guid>
      <dc:creator>clockwork</dc:creator>
      <dc:date>2007-09-13T01:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: U-Boot on MPC8360EA Reference Board.</title>
      <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144771#M44</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Hi all,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;We have almoast the same problem, we have took the freescale linux BSP (the last one: 3.0)&amp;nbsp;install all the patches, create U-Boot and when PPC8360 Rev 2.0 starts running U-Boot&amp;nbsp;some prints on console came up and then&amp;nbsp;MPC8360 freezes. Has anyone had similar problems?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks for your reply.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 14:06:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144771#M44</guid>
      <dc:creator>LuckyS</dc:creator>
      <dc:date>2007-09-28T14:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: U-Boot on MPC8360EA Reference Board.</title>
      <link>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144772#M45</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi All,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;We solved the problem, the problem was in MW compiler.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks anyaway.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 16:40:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/PowerQUICC-Processors/U-Boot-on-MPC8360EA-Reference-Board/m-p/144772#M45</guid>
      <dc:creator>LuckyS</dc:creator>
      <dc:date>2007-09-28T16:40:23Z</dc:date>
    </item>
  </channel>
</rss>

