README.mpc85xxads 21 KB

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