README 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Wind River SBC8641D reference board
  2. ===========================
  3. Created 06/14/2007 Joe Hamman
  4. Copyright 2007, Embedded Specialties, Inc.
  5. Copyright 2007 Wind River Systems, Inc.
  6. -----------------------------
  7. 1. Building U-Boot
  8. ------------------
  9. The SBC8641D code is known to build using ELDK 4.1.
  10. $ make sbc8641d_config
  11. Configuring for sbc8641d board...
  12. $ make
  13. 2. Switch and Jumper Settings
  14. -----------------------------
  15. All Jumpers & Switches are in their default positions. Please refer to
  16. the board documentation for details. Some settings control CPU voltages
  17. and settings may change with board revisions.
  18. 3. Known limitations
  19. --------------------
  20. PCI:
  21. The PCI command may hang if no boards are present in either slot.
  22. 4. Reflashing U-Boot
  23. --------------------
  24. The board has two independent flash devices which can be used for dual
  25. booting, or for U-Boot backup and recovery. A two pin jumper on the
  26. three pin JP10 determines which device is attached to /CS0 line.
  27. Assuming one device has a functional U-Boot, and the other device has
  28. a recently installed non-functional image, to perform a recovery from
  29. that non-functional image goes essentially as follows:
  30. a) power down the board and jumper JP10 to select the functional image.
  31. b) power on the board and let it get to U-Boot prompt.
  32. c) while on, using static precautions, move JP10 back to the failed image.
  33. d) use "md fff00000" to confirm you are looking at the failed image
  34. e) turn off write protect with "prot off all"
  35. f) get new image, i.e. "tftp 200000 /somepath/u-boot.bin"
  36. g) erase failed image: "erase FFF00000 FFF5FFFF"
  37. h) copy in new image: "cp.b 200000 FFF00000 60000"
  38. i) ensure new image is written: "md fff00000"
  39. k) power cycle the board and confirm new image works.