README.mpc85xxads 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. Motorola MPC8540ADS and MPC8560ADS board
  2. Xianghua Xiao(X.Xiao@motorola.com)
  3. Created 10/15/03
  4. -----------------------------------------
  5. 0. Toolchain
  6. The Binutils in current ELDK toolchain will not support MPC85xx chip. You need
  7. use the newest binutils-2.14.tar.bz2 from http://ftp.gnu.org/gnu/binutils.
  8. 1. SWITCH SETTINGS & JUMPERS
  9. 1.1 First, make sure the board default setting is consistent with the document
  10. shipped with your board. Then apply the following changes:
  11. SW3[1-6]="all OFF" (boot from 32bit flash, no boot sequence is used)
  12. SW10[2-6]="all OFF" (turn on CPM SCC for serial port,works for 8540/8560)
  13. SW11[2]='OFF for dracom, ON for draco' (single switch to toggle draco.dracom mode)
  14. SW4[7-8]="OFF OFF" (enable serial ports,I'm using the top serial connector)
  15. SW22[1-4]="OFF OFF ON OFF"
  16. SW5[1-10[="ON ON OFF OFF OFF OFF OFF OFF OFF OFF"
  17. J1 = "Enable Prog" (Make sure your flash is programmable for development)
  18. Ethernet PHY connectors(J47,J56) should be removed if you want to use the ethernet.
  19. 1.2 If you want to test PCI functionality with a 33Mhz PCI card, you will have to change
  20. the system clock from the default 66Mhz to 33Mhz by setting SW15[1]="OFF" and
  21. SW17[8]="OFF". After that you may also need double your platform clock(SW6) because
  22. the system clock is now only half of its original value.
  23. 1.3 SW6 is a very important switch, it decides your platform clock and CPU clock based on
  24. the on-board system clock(default 66MHz). Check the document along with your board
  25. for details.
  26. 2. MEMORY MAP TO WORK WITH LINUX KERNEL
  27. 2.1. For the initial bringup, we adopted a consistent memory scheme between u-boot and
  28. linux kernel, you can customize it based on your system requirements:
  29. DDR: 0x00000000-0x1fffffff (max 512MB)
  30. PCI: 0xe0000000-0xefffffff (256MB)
  31. RIO: 0xf0000000-0xf7ffffff (128MB)
  32. Local SDRAM: 0xf8000000-0xfbffffff (64MB)
  33. Local CSx: 0xfc000000-0xfdefffff (31MB) BCSR,RTC,ATM config,etc.
  34. CCSRBAR: 0xfdf00000-0xfdffffff (1MB)
  35. Flash: 0xfe000000-0xffffffff (max 32MB)
  36. 2.2 We are submitting Linux kernel patches for MPC8540 and MPC8560. Hope you will be
  37. able to download them from linuxppc-2.4 public source by the time you are reading
  38. this. Please make sure the kernel's ppcboot.h is consistent with U-Boot's u-boot.h,
  39. then you can use two default configuration files in the kernel source as a test:
  40. arch/ppc/configs/mpc8540ads_defconfig
  41. arch/ppc/configs/mpc8560ads_defconfig
  42. 3. DEFINITIONS AND COMPILATION
  43. 3.1 Explanation on NEW definitions in include/configs/MPC8540ADS.h and include/
  44. configs/MPC8560ADS.h
  45. CONFIG_BOOKE BOOKE(e.g. Motorola MPC85xx, IBM 440, etc)
  46. CONFIG_E500 BOOKE e500 family(Motorola)
  47. CONFIG_MPC85xx MPC8540,MPC8560 and their derivatives
  48. CONFIG_MPC85xx_REV1 MPC85xx Rev 1 Chip, in general you will use a Rev2
  49. chip from Nov.2003. If you still see this definition
  50. while you have a Rev2(and newer) chip,undef this.
  51. CONFIG_MPC8540 MPC8540 specific
  52. CONFIG_MPC8560 MPC8560 specific
  53. CONFIG_MPC8540ADS MPC8540ADS board specific
  54. CONFIG_MPC8560ADS MPC8560ADS board specific
  55. CONFIG_TSEC_ENET Use on-chip 10/100/1000 ethernet for networking
  56. CONFIG_SPD_EEPROM Use SPD EEPROM for DDR auto configuration, you can also
  57. manual config the DDR after undef this definition.
  58. CONFIG_DDR_ECC only for ECC DDR module
  59. CONFIG_DDR_DLL possible DLL fix needed for Rev1 chip for more stability.
  60. you can disable this if you're having a newer chip.
  61. CONFIG_RAM_AS_FLASH after define this, you can load U-Boot into localbus
  62. SDRAM and treat localbus SDRAM as a flash. We use this
  63. memory based U-Boot before flash is working while Metrowerks
  64. and Windriver are still working on their flash/JTAG tools.
  65. if you can program the flash directly, undef this.
  66. Other than the above definitions, the rest in the config files are straightforward.
  67. 3.2 Compilation
  68. export CROSS_COMPILE=your-cross-compile-prefix(assuming you're using BASH shell)
  69. cd u-boot
  70. make distclean
  71. make MPC8560ADS_config (or make MPC8540ADS_config)
  72. make
  73. 4. Note on the 10/100/1000 Ethernet controller:
  74. 4.1 Sometimes after U-Boot is up, the 'tftp' won't work well with TSEC ethernet. If that
  75. happens, you can try the following steps to make network work:
  76. MPC8560ADS>tftp 1000000 pImage
  77. (if it hangs, use Ctrl-C to quit)
  78. MPC8560ADS>nm fdf24524
  79. >0
  80. >1
  81. >. (to quit this memory operation)
  82. MPC8560ADS>tftp 1000000 pImage
  83. 5. Screen dump:
  84. 5.1 MPC8540ADS board
  85. U-Boot 1.0.0-pre (Oct 15 2003 - 13:40:33)
  86. Motorola PowerPC ProcessorID=00000000 Rev. PVR=80200010
  87. Board: Motorola MPC8540ADS Board
  88. CPU: 792 MHz
  89. CCB: 264 MHz
  90. DDR: 132 MHz
  91. LBC: 66 MHz
  92. L1 D-cache 32KB, L1 I-cache 32KB enabled.
  93. I2C: ready
  94. DRAM: DDR module detected, total size:128MB.
  95. 128 MB
  96. FLASH: 16 MB
  97. L2 cache enabled: 256KB
  98. *** Warning - bad CRC, using default environment
  99. In: serial
  100. Out: serial
  101. Err: serial
  102. Net: MOTOROLA ETHERNE
  103. Hit any key to stop autoboot: 0
  104. MPC8540ADS=> fli
  105. Bank # 1: Intel 28F640J3A (64 Mbit, 64 x 128K)
  106. Size: 16 MB in 64 Sectors
  107. Sector Start Addresses:
  108. FF000000 FF040000 FF080000 FF0C0000 FF100000
  109. FF140000 FF180000 FF1C0000 FF200000 FF240000
  110. FF280000 FF2C0000 FF300000 FF340000 FF380000
  111. FF3C0000 FF400000 FF440000 FF480000 FF4C0000
  112. FF500000 FF540000 FF580000 FF5C0000 FF600000
  113. FF640000 FF680000 FF6C0000 FF700000 FF740000
  114. FF780000 FF7C0000 FF800000 FF840000 FF880000
  115. FF8C0000 FF900000 FF940000 FF980000 FF9C0000
  116. FFA00000 FFA40000 FFA80000 FFAC0000 FFB00000
  117. FFB40000 FFB80000 FFBC0000 FFC00000 FFC40000
  118. FFC80000 FFCC0000 FFD00000 FFD40000 FFD80000
  119. FFDC0000 FFE00000 FFE40000 FFE80000 FFEC0000
  120. FFF00000 FFF40000 FFF80000 (RO) FFFC0000 (RO)
  121. MPC8540ADS=> imi ff000000
  122. ## Checking Image at ff000000 ...
  123. Image Name: Linux-2.4.21-rc5
  124. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  125. Data Size: 800594 Bytes = 781.8 kB
  126. Load Address: 00000000
  127. Entry Point: 00000000
  128. Verifying Checksum ... OK
  129. MPC8540ADS=> bdinfo
  130. memstart = 0x00000000
  131. memsize = 0x08000000
  132. flashstart = 0xFF000000
  133. flashsize = 0x01000000
  134. flashoffset = 0x00000000
  135. sramstart = 0x00000000
  136. sramsize = 0x00000000
  137. immr_base = 0xFDF00000
  138. bootflags = 0x40003F80
  139. intfreq = 792 MHz
  140. busfreq = 264 MHz
  141. ethaddr = 00:01:AF:07:9B:8A
  142. eth1addr = 00:01:AF:07:9B:8B
  143. eth2addr = 00:01:AF:07:9B:8C
  144. IP addr = 10.82.0.105
  145. baudrate = 115200 bps
  146. MPC8540ADS=> printenv
  147. bootargs=root=/dev/nfs rw nfsroot=163.12.64.52:/localhome/r6aads/linuxppc/target ip=10.82.0.105:163.12.64.52:10.82.1.254:255.255.254.0:mpc8540ads-003:eth0:off console=ttyS0,115200
  148. bootcmd=bootm 0xff300000 0xff700000
  149. bootdelay=3
  150. baudrate=115200
  151. loads_echo=1
  152. ethaddr=00:01:af:07:9b:8a
  153. eth1addr=00:01:af:07:9b:8b
  154. eth2addr=00:01:af:07:9b:8c
  155. ipaddr=10.82.0.105
  156. serverip=163.12.64.52
  157. rootpath=/home/r6aads/mpclinux/eldk-2.0.2/ppc_82xx
  158. gatewayip=10.82.1.254
  159. netmask=255.255.254.0
  160. hostname=MPC8560ADS_PILOT_003
  161. bootfile=pImage
  162. stdin=serial
  163. stdout=serial
  164. stderr=serial
  165. Environment size: 560/8188 bytes
  166. MPC8540ADS=> bootm ff000000
  167. ## Booting image at ff000000 ...
  168. Image Name: Linux-2.4.21-rc5
  169. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  170. Data Size: 800594 Bytes = 781.8 kB
  171. Load Address: 00000000
  172. Entry Point: 00000000
  173. Verifying Checksum ... OK
  174. Uncompressing Kernel Image ... OK
  175. mpc85xx_init(): exit
  176. id mach(): done
  177. MMU:enter
  178. Memory CAM mapping: CAM0=64Mb, CAM1=64Mb, CAM2=0Mb residual: 0Mb
  179. MMU:hw init
  180. MMU:mapin
  181. MMU:mapin_ram done
  182. MMU:setio
  183. MMU:exit
  184. Linux version 2.4.21-rc5 (@etest) (gcc version 2.95.3 20010315 (release)) #1 Wed Oct 15 09:05:42 CDT 2003
  185. setup_arch: enter
  186. setup_arch: bootmem
  187. mpc85xx_setup_arch
  188. Host Bridge Vendor ID = 1057
  189. Host Bridge Device ID = 3
  190. Host Bridge header = 0
  191. arch: exit
  192. On node 0 totalpages: 32768
  193. zone(0): 32768 pages.
  194. zone(1): 0 pages.
  195. zone(2): 0 pages.
  196. Kernel command line: root=/dev/nfs rw nfsroot=163.12.64.52:/localhome/r6aads/linuxppc/target ip=10.82.0.105:163.12.64.52:10.82.1.254:255.255.254.0:mpc8540ads-003:eth0:off console=ttyS0,115200
  197. openpic: enter
  198. OpenPIC Version 1.2 (1 CPUs and 44 IRQ sources) at fdf40000
  199. openpic: timer
  200. openpic: external
  201. openpic: spurious
  202. openpic: exit
  203. time_init: decrementer frequency = 33.000000 MHz
  204. Calibrating delay loop... 226.09 BogoMIPS
  205. Memory: 127488k available (1344k kernel code, 448k data, 248k init, 0k highmem)
  206. Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
  207. Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
  208. Mount cache hash table entries: 512 (order: 0, 4096 bytes)
  209. Buffer-cache hash table entries: 8192 (order: 3, 32768 bytes)
  210. Page-cache hash table entries: 32768 (order: 5, 131072 bytes)
  211. POSIX conformance testing by UNIFIX
  212. PCI: Probing PCI hardware
  213. Linux NET4.0 for Linux 2.4
  214. Based upon Swansea University Computer Society NET3.039
  215. Initializing RT netlink socket
  216. Starting kswapd
  217. Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
  218. pty: 256 Unix98 ptys configured
  219. Serial driver version 5.05c (2001-07-08) with MANY_PORTS SHARE_IRQ SERIAL_PCI enabled
  220. ttyS00 at 0xfdf04500 (irq = 90) is a 16550A
  221. ttyS01 at 0xfdf04600 (irq = 0) is a 16550A
  222. eth0: Three Speed Ethernet Controller Version 0.2, 00:01:af:07:9b:8a:
  223. eth1: Three Speed Ethernet Controller Version 0.2, 00:01:af:07:9b:8b:
  224. RAMDISK driver initialized: 16 RAM disks of 32768K size 1024 blocksize
  225. loop: loaded (max 8 devices)
  226. Intel(R) PRO/1000 Network Driver - version 5.0.43-k1
  227. Copyright (c) 1999-2003 Intel Corporation.
  228. PPP generic driver version 2.4.2
  229. PPP Deflate Compression module registered
  230. NET4: Linux TCP/IP 1.0 for NET4.0
  231. IP Protocols: ICMP, UDP, TCP, IGMP
  232. IP: routing cache hash table of 1024 buckets, 8Kbytes
  233. TCP: Hash tables configured (established 8192 bind 8192)
  234. IP-Config: Complete:
  235. device=eth0, addr=10.82.0.105, mask=255.255.254.0, gw=10.82.1.254,
  236. host=mpc8540ads-003, domain=, nis-domain=(none),
  237. bootserver=163.12.64.52, rootserver=163.12.64.52, rootpath=
  238. NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
  239. Looking up port of RPC 100003/2 on 163.12.64.52
  240. Looking up port of RPC 100005/1 on 163.12.64.52
  241. VFS: Mounted root (nfs filesystem).
  242. Freeing unused kernel memory: 248k init
  243. INIT: version 2.78 booting
  244. Activating swap...
  245. Checking all file systems...
  246. Parallelizing fsck version 1.22 (22-Jun-2001)
  247. Mounting local filesystems...
  248. nothing was mounted
  249. Cleaning: /etc/network/ifstate.
  250. Setting up IP spoofing protection: rp_filter.
  251. Disable TCP/IP Explicit Congestion Notification: done.
  252. Configuring network interfaces: done.
  253. Starting portmap daemon: portmap.
  254. Cleaning: /tmp /var/lock /var/run.
  255. INIT: Entering runlevel: 2
  256. Starting system log daemon: syslogd klogd.
  257. Starting internet superserver: inetd.
  258. mpc8540ads-003 login: root
  259. Last login: Thu Jan 1 00:00:07 1970 on console
  260. Linux mpc8540ads-003 2.4.21-rc5 #1 Wed Oct 15 09:05:42 CDT 2003 ppc unknown
  261. root@mpc8540ads-003:~# ls
  262. 21142.o aa e100.o hello.o mii.o timer.o
  263. root@mpc8540ads-003:~# /sbin/ifconfig
  264. eth0 Link encap:Ethernet HWaddr 00:01:AF:07:9B:8A
  265. inet addr:10.82.0.105 Bcast:10.82.1.255 Mask:255.255.254.0
  266. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  267. RX packets:4576 errors:0 dropped:0 overruns:0 frame:0
  268. TX packets:2587 errors:0 dropped:0 overruns:0 carrier:0
  269. collisions:0 txqueuelen:100
  270. RX bytes:4457023 (4.2 Mb) TX bytes:437770 (427.5 Kb)
  271. Base address:0x4000
  272. lo Link encap:Local Loopback
  273. inet addr:127.0.0.1 Mask:255.0.0.0
  274. UP LOOPBACK RUNNING MTU:16436 Metric:1
  275. RX packets:4 errors:0 dropped:0 overruns:0 frame:0
  276. TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
  277. collisions:0 txqueuelen:0
  278. RX bytes:296 (296.0 b) TX bytes:296 (296.0 b)
  279. root@mpc8540ads-003:~# ping 163.12.64.52
  280. PING 163.12.64.52 (163.12.64.52): 56 data bytes
  281. 64 bytes from 163.12.64.52: icmp_seq=0 ttl=63 time=0.2 ms
  282. 64 bytes from 163.12.64.52: icmp_seq=1 ttl=63 time=0.1 ms
  283. 64 bytes from 163.12.64.52: icmp_seq=2 ttl=63 time=0.1 ms
  284. --- 163.12.64.52 ping statistics ---
  285. 3 packets transmitted, 3 packets received, 0% packet loss
  286. round-trip min/avg/max = 0.1/0.1/0.2 ms
  287. root@mpc8540ads-003:~#
  288. 5.2 MPC8560ADS board
  289. U-Boot 1.0.0-pre (Oct 15 2003 - 13:42:04)
  290. Motorola PowerPC ProcessorID=00000000 Rev. PVR=80200010
  291. Board: Motorola MPC8560ADS Board
  292. CPU: 792 MHz
  293. CCB: 264 MHz
  294. DDR: 132 MHz
  295. LBC: 66 MHz
  296. CPM: 264 Mhz
  297. L1 D-cache 32KB, L1 I-cache 32KB enabled.
  298. I2C: ready
  299. DRAM: DDR module detected, total size:128MB.
  300. 128 MB
  301. FLASH: 16 MB
  302. L2 cache enabled: 256KB
  303. *** Warning - bad CRC, using default environment
  304. In: serial
  305. Out: serial
  306. Err: serial
  307. Net: MOTOROLA ETHERNE
  308. Hit any key to stop autoboot: 3
  309. MPC8560ADS=> bdinfo
  310. memstart = 0x00000000
  311. memsize = 0x08000000
  312. flashstart = 0xFF000000
  313. flashsize = 0x01000000
  314. flashoffset = 0x00000000
  315. sramstart = 0x00000000
  316. sramsize = 0x00000000
  317. immr_base = 0xFDF00000
  318. bootflags = 0x00000000
  319. vco = 528 MHz
  320. sccfreq = 132 MHz
  321. brgfreq = 132 MHz
  322. intfreq = 792 MHz
  323. cpmfreq = 264 MHz
  324. busfreq = 264 MHz
  325. ethaddr = 00:01:AF:07:9B:8A
  326. eth1addr = 00:01:AF:07:9B:8B
  327. eth2addr = 00:01:AF:07:9B:8C
  328. IP addr = 10.82.0.105
  329. baudrate = 115200 bps
  330. MPC8560ADS=> printenv
  331. bootargs=root=/dev/nfs rw nfsroot=163.12.64.52:/localhome/r6aads/linuxppc/target ip=10.82.0.105:163.12.64.52:10.82.1.254:255.255.254.0:mpc8560ads-003:eth0:off console=ttyS0,115200
  332. bootcmd=bootm 0xff400000 0xff700000
  333. bootdelay=3
  334. baudrate=115200
  335. loads_echo=1
  336. ethaddr=00:01:af:07:9b:8a
  337. eth1addr=00:01:af:07:9b:8b
  338. eth2addr=00:01:af:07:9b:8c
  339. ipaddr=10.82.0.105
  340. serverip=163.12.64.52
  341. rootpath=/home/r6aads/mpclinux/eldk-2.0.2/ppc_82xx
  342. gatewayip=10.82.1.254
  343. netmask=255.255.254.0
  344. hostname=MPC8560ADS_PILOT_003
  345. bootfile=pImage
  346. stdin=serial
  347. stdout=serial
  348. stderr=serial
  349. Environment size: 560/8188 bytes
  350. MPC8560ADS=> fli
  351. Bank # 1: Intel 28F640J3A (64 Mbit, 64 x 128K)
  352. Size: 16 MB in 64 Sectors
  353. Sector Start Addresses:
  354. FF000000 FF040000 FF080000 FF0C0000 FF100000
  355. FF140000 FF180000 FF1C0000 FF200000 FF240000
  356. FF280000 FF2C0000 FF300000 FF340000 FF380000
  357. FF3C0000 FF400000 FF440000 FF480000 FF4C0000
  358. FF500000 FF540000 FF580000 FF5C0000 FF600000
  359. FF640000 FF680000 FF6C0000 FF700000 FF740000
  360. FF780000 FF7C0000 FF800000 FF840000 FF880000
  361. FF8C0000 FF900000 FF940000 FF980000 FF9C0000
  362. FFA00000 FFA40000 FFA80000 FFAC0000 FFB00000
  363. FFB40000 FFB80000 FFBC0000 FFC00000 FFC40000
  364. FFC80000 FFCC0000 FFD00000 FFD40000 FFD80000
  365. FFDC0000 FFE00000 FFE40000 FFE80000 FFEC0000
  366. FFF00000 FFF40000 FFF80000 (RO) FFFC0000 (RO)
  367. MPC8560ADS=> imi ff100000
  368. ## Checking Image at ff100000 ...
  369. Image Name: Linux-2.4.21-rc5
  370. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  371. Data Size: 755361 Bytes = 737.7 kB
  372. Load Address: 00000000
  373. Entry Point: 00000000
  374. Verifying Checksum ... OK
  375. MPC8560ADS=> tftp 1000000 pImage.dracom.public
  376. TFTP from server 163.12.64.52; our IP address is 10.82.0.105; sending through gateway 10.82.1.254
  377. Filename 'pImage.dracom.public'.
  378. Load address: 0x1000000
  379. Loading: *#################################################################
  380. #################################################################
  381. ##################
  382. done
  383. Bytes transferred = 755425 (b86e1 hex)
  384. MPC8560ADS=> bootm ff100000
  385. ## Booting image at ff100000 ...
  386. Image Name: Linux-2.4.21-rc5
  387. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  388. Data Size: 755361 Bytes = 737.7 kB
  389. Load Address: 00000000
  390. Entry Point: 00000000
  391. Verifying Checksum ... OK
  392. Uncompressing Kernel Image ... OK
  393. mpc85xx_init(): exit
  394. id mach(): done
  395. MMU:enter
  396. Memory CAM mapping: CAM0=64Mb, CAM1=64Mb, CAM2=0Mb residual: 0Mb
  397. MMU:hw init
  398. MMU:mapin
  399. MMU:mapin_ram done
  400. MMU:setio
  401. MMU:exit
  402. Linux version 2.4.21-rc5 (@etest) (gcc version 2.95.3 20010315 (release)) #2 Wed Oct 15 09:13:46 CDT 2003
  403. setup_arch: enter
  404. setup_arch: bootmem
  405. mpc85xx_setup_arch
  406. Host Bridge Vendor ID = 1057
  407. Host Bridge Device ID = 3
  408. Host Bridge header = 0
  409. arch: exit
  410. On node 0 totalpages: 32768
  411. zone(0): 32768 pages.
  412. zone(1): 0 pages.
  413. zone(2): 0 pages.
  414. Kernel command line: root=/dev/nfs rw nfsroot=163.12.64.52:/localhome/r6aads/linuxppc/target ip=10.82.0.105:163.12.64.52:10.82.1.254:255.255.254.0:mpc8560ads-003:eth0:off console=ttyS0,115200
  415. openpic: enter
  416. OpenPIC Version 1.2 (1 CPUs and 44 IRQ sources) at fdf40000
  417. openpic: timer
  418. openpic: external
  419. openpic: spurious
  420. openpic: exit
  421. time_init: decrementer frequency = 33.000000 MHz
  422. Calibrating delay loop... 226.09 BogoMIPS
  423. Memory: 127624k available (1276k kernel code, 384k data, 236k init, 0k highmem)
  424. Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
  425. Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
  426. Mount cache hash table entries: 512 (order: 0, 4096 bytes)
  427. Buffer-cache hash table entries: 8192 (order: 3, 32768 bytes)
  428. Page-cache hash table entries: 32768 (order: 5, 131072 bytes)
  429. POSIX conformance testing by UNIFIX
  430. PCI: Probing PCI hardware
  431. Linux NET4.0 for Linux 2.4
  432. Based upon Swansea University Computer Society NET3.039
  433. Initializing RT netlink socket
  434. Starting kswapd
  435. Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
  436. CPM UART driver version 0.01
  437. ttyS0 on SCC1 at 0x8000, BRG1
  438. UART interrupt installed(40)
  439. pty: 256 Unix98 ptys configured
  440. eth0: Three Speed Ethernet Controller Version 0.2, 00:01:af:07:9b:8a:
  441. eth1: Three Speed Ethernet Controller Version 0.2, 00:01:af:07:9b:8b:
  442. RAMDISK driver initialized: 16 RAM disks of 32768K size 1024 blocksize
  443. loop: loaded (max 8 devices)
  444. Intel(R) PRO/1000 Network Driver - version 5.0.43-k1
  445. Copyright (c) 1999-2003 Intel Corporation.
  446. PPP generic driver version 2.4.2
  447. PPP Deflate Compression module registered
  448. NET4: Linux TCP/IP 1.0 for NET4.0
  449. IP Protocols: ICMP, UDP, TCP, IGMP
  450. IP: routing cache hash table of 1024 buckets, 8Kbytes
  451. TCP: Hash tables configured (established 8192 bind 8192)
  452. IP-Config: Complete:
  453. device=eth0, addr=10.82.0.105, mask=255.255.254.0, gw=10.82.1.254,
  454. host=mpc8560ads-003, domain=, nis-domain=(none),
  455. bootserver=163.12.64.52, rootserver=163.12.64.52, rootpath=
  456. NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
  457. Looking up port of RPC 100003/2 on 163.12.64.52
  458. Looking up port of RPC 100005/1 on 163.12.64.52
  459. VFS: Mounted root (nfs filesystem).
  460. Freeing unused kernel memory: 236k init
  461. INIT: version 2.78 booting
  462. Activating swap...
  463. Checking all file systems...
  464. Parallelizing fsck version 1.22 (22-Jun-2001)
  465. Mounting local filesystems...
  466. nothing was mounted
  467. Cleaning: /etc/network/ifstate.
  468. Setting up IP spoofing protection: FAILED
  469. Configuring network interfaces: done.
  470. Starting portmap daemon: portmap.
  471. Cleaning: /tmp /var/lock /var/run.
  472. INIT: Entering runlevel: 2
  473. Starting system log daemon: syslogd klogd.
  474. Starting internet superserver: inetd.
  475. mpc8560ads-003 login: root
  476. Last login: Thu Jan 1 00:00:05 1970 on console
  477. Linux mpc8560ads-003 2.4.21-rc5 #2 Wed Oct 15 09:13:46 CDT 2003 ppc unknown
  478. root@mpc8560ads-003:~# ls
  479. 21142.o aa e100.o hello.o mii.o timer.o
  480. root@mpc8560ads-003:~# cd /
  481. root@mpc8560ads-003:/# ls
  482. bin boot dev etc home lib mnt opt proc root sbin tmp usr var
  483. root@mpc8560ads-003:/# /sbin/ifconfig
  484. eth0 Link encap:Ethernet HWaddr 00:01:AF:07:9B:8A
  485. inet addr:10.82.0.105 Bcast:10.82.1.255 Mask:255.255.254.0
  486. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  487. RX packets:4608 errors:0 dropped:0 overruns:0 frame:0
  488. TX packets:2610 errors:0 dropped:0 overruns:0 carrier:0
  489. collisions:0 txqueuelen:100
  490. RX bytes:4465943 (4.2 Mb) TX bytes:440944 (430.6 Kb)
  491. Base address:0x4000
  492. lo Link encap:Local Loopback
  493. inet addr:127.0.0.1 Mask:255.0.0.0
  494. UP LOOPBACK RUNNING MTU:16436 Metric:1
  495. RX packets:4 errors:0 dropped:0 overruns:0 frame:0
  496. TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
  497. collisions:0 txqueuelen:0
  498. RX bytes:296 (296.0 b) TX bytes:296 (296.0 b)
  499. root@mpc8560ads-003:/# ping 163.12.64.52
  500. PING 163.12.64.52 (163.12.64.52): 56 data bytes
  501. 64 bytes from 163.12.64.52: icmp_seq=0 ttl=63 time=0.1 ms
  502. 64 bytes from 163.12.64.52: icmp_seq=1 ttl=63 time=0.1 ms
  503. 64 bytes from 163.12.64.52: icmp_seq=2 ttl=63 time=0.1 ms
  504. --- 163.12.64.52 ping statistics ---
  505. 3 packets transmitted, 3 packets received, 0% packet loss
  506. round-trip min/avg/max = 0.1/0.1/0.1 ms
  507. root@mpc8560ads-003:/#