Brutus 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. Brutus is an evaluation platform for the SA1100 manufactured by Intel.
  2. For more details, see:
  3. http://developer.intel.com
  4. To compile for Brutus, you must issue the following commands:
  5. make brutus_config
  6. make config
  7. [accept all the defaults]
  8. make zImage
  9. The resulting kernel will end up in linux/arch/arm/boot/zImage. This file
  10. must be loaded at 0xc0008000 in Brutus's memory and execution started at
  11. 0xc0008000 as well with the value of registers r0 = 0 and r1 = 16 upon
  12. entry.
  13. But prior to execute the kernel, a ramdisk image must also be loaded in
  14. memory. Use memory address 0xd8000000 for this. Note that the file
  15. containing the (compressed) ramdisk image must not exceed 4 MB.
  16. Typically, you'll need angelboot to load the kernel.
  17. The following angelboot.opt file should be used:
  18. ----- begin angelboot.opt -----
  19. base 0xc0008000
  20. entry 0xc0008000
  21. r0 0x00000000
  22. r1 0x00000010
  23. device /dev/ttyS0
  24. options "9600 8N1"
  25. baud 115200
  26. otherfile ramdisk_img.gz
  27. otherbase 0xd8000000
  28. ----- end angelboot.opt -----
  29. Then load the kernel and ramdisk with:
  30. angelboot -f angelboot.opt zImage
  31. The first Brutus serial port (assumed to be linked to /dev/ttyS0 on your
  32. host PC) is used by angel to load the kernel and ramdisk image. The serial
  33. console is provided through the second Brutus serial port. To access it,
  34. you may use minicom configured with /dev/ttyS1, 9600 baud, 8N1, no flow
  35. control.
  36. Currently supported:
  37. - RS232 serial ports
  38. - audio output
  39. - LCD screen
  40. - keyboard
  41. The actual Brutus support may not be complete without extra patches.
  42. If such patches exist, they should be found from
  43. ftp.netwinder.org/users/n/nico.
  44. A full PCMCIA support is still missing, although it's possible to hack
  45. some drivers in order to drive already inserted cards at boot time with
  46. little modifications.
  47. Any contribution is welcome.
  48. Please send patches to nico@fluxnic.net
  49. Have Fun !