Assabet
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. The Intel Assabet (SA-1110 evaluation) board
  2. ============================================
  3. Please see:
  4. http://developer.intel.com/design/strong/quicklist/eval-plat/sa-1110.htm
  5. http://developer.intel.com/design/strong/guides/278278.htm
  6. Also some notes from John G Dorsey <jd5q@andrew.cmu.edu>:
  7. http://www.cs.cmu.edu/~wearable/software/assabet.html
  8. Building the kernel
  9. -------------------
  10. To build the kernel with current defaults:
  11. make assabet_config
  12. make oldconfig
  13. make dep
  14. make zImage
  15. The resulting kernel image should be available in linux/arch/arm/boot/zImage.
  16. Installing a bootloader
  17. -----------------------
  18. A couple of bootloaders able to boot Linux on Assabet are available:
  19. BLOB (http://www.lart.tudelft.nl/lartware/blob/)
  20.    BLOB is a bootloader used within the LART project.  Some contributed
  21.    patches were merged into BLOB to add support for Assabet.
  22. Compaq's Bootldr + John Dorsey's patch for Assabet support
  23. (http://www.handhelds.org/Compaq/bootldr.html)
  24. (http://www.wearablegroup.org/software/bootldr/)
  25.    Bootldr is the bootloader developed by Compaq for the iPAQ Pocket PC.
  26.    John Dorsey has produced add-on patches to add support for Assabet and
  27.    the JFFS filesystem.
  28. RedBoot (http://sources.redhat.com/redboot/)
  29.    RedBoot is a bootloader developed by Red Hat based on the eCos RTOS
  30.    hardware abstraction layer.  It supports Assabet amongst many other
  31.    hardware platforms.
  32. RedBoot is currently the recommended choice since it's the only one to have
  33. networking support, and is the most actively maintained.
  34. Brief examples on how to boot Linux with RedBoot are shown below.  But first
  35. you need to have RedBoot installed in your flash memory.  A known to work
  36. precompiled RedBoot binary is available from the following location:
  37. ftp://ftp.netwinder.org/users/n/nico/
  38. ftp://ftp.arm.linux.org.uk/pub/linux/arm/people/nico/
  39. ftp://ftp.handhelds.org/pub/linux/arm/sa-1100-patches/
  40. Look for redboot-assabet*.tgz.  Some installation infos are provided in
  41. redboot-assabet*.txt.
  42. Initial RedBoot configuration
  43. -----------------------------
  44. The commands used here are explained in The RedBoot User's Guide available
  45. on-line at http://sources.redhat.com/ecos/docs-latest/redboot/redboot.html.
  46. Please refer to it for explanations.
  47. If you have a CF network card (my Assabet kit contained a CF+ LP-E from
  48. Socket Communications Inc.), you should strongly consider using it for TFTP
  49. file transfers.  You must insert it before RedBoot runs since it can't detect
  50. it dynamically.
  51. To initialize the flash directory:
  52. fis init -f
  53. To initialize the non-volatile settings, like whether you want to use BOOTP or
  54. a static IP address, etc, use this command:
  55. fconfig -i
  56. Writing a kernel image into flash
  57. ---------------------------------
  58. First, the kernel image must be loaded into RAM.  If you have the zImage file
  59. available on a TFTP server:
  60. load zImage -r -b 0x100000
  61. If you rather want to use Y-Modem upload over the serial port:
  62. load -m ymodem -r -b 0x100000
  63. To write it to flash:
  64. fis create "Linux kernel" -b 0x100000 -l 0xc0000
  65. Booting the kernel
  66. ------------------
  67. The kernel still requires a filesystem to boot.  A ramdisk image can be loaded
  68. as follows:
  69. load ramdisk_image.gz -r -b 0x800000
  70. Again, Y-Modem upload can be used instead of TFTP by replacing the file name
  71. by '-y ymodem'.
  72. Now the kernel can be retrieved from flash like this:
  73. fis load "Linux kernel"
  74. or loaded as described previously.  To boot the kernel:
  75. exec -b 0x100000 -l 0xc0000
  76. The ramdisk image could be stored into flash as well, but there are better
  77. solutions for on-flash filesystems as mentioned below.
  78. Using JFFS2
  79. -----------
  80. Using JFFS2 (the Second Journalling Flash File System) is probably the most
  81. convenient way to store a writable filesystem into flash.  JFFS2 is used in
  82. conjunction with the MTD layer which is responsible for low-level flash
  83. management.  More information on the Linux MTD can be found on-line at:
  84. http://www.linux-mtd.infradead.org/.  A JFFS howto with some infos about
  85. creating JFFS/JFFS2 images is available from the same site.
  86. For instance, a sample JFFS2 image can be retrieved from the same FTP sites
  87. mentioned below for the precompiled RedBoot image.
  88. To load this file:
  89. load sample_img.jffs2 -r -b 0x100000
  90. The result should look like:
  91. RedBoot> load sample_img.jffs2 -r -b 0x100000
  92. Raw file loaded 0x00100000-0x00377424
  93. Now we must know the size of the unallocated flash:
  94. fis free
  95. Result:
  96. RedBoot> fis free
  97.   0x500E0000 .. 0x503C0000
  98. The values above may be different depending on the size of the filesystem and
  99. the type of flash.  See their usage below as an example and take care of
  100. substituting yours appropriately.
  101. We must determine some values:
  102. size of unallocated flash: 0x503c0000 - 0x500e0000 = 0x2e0000
  103. size of the filesystem image: 0x00377424 - 0x00100000 = 0x277424
  104. We want to fit the filesystem image of course, but we also want to give it all
  105. the remaining flash space as well.  To write it:
  106. fis unlock -f 0x500E0000 -l 0x2e0000
  107. fis erase -f 0x500E0000 -l 0x2e0000
  108. fis write -b 0x100000 -l 0x277424 -f 0x500E0000
  109. fis create "JFFS2" -n -f 0x500E0000 -l 0x2e0000
  110. Now the filesystem is associated to a MTD "partition" once Linux has discovered
  111. what they are in the boot process.  From Redboot, the 'fis list' command
  112. displays them:
  113. RedBoot> fis list
  114. Name              FLASH addr  Mem addr    Length      Entry point
  115. RedBoot           0x50000000  0x50000000  0x00020000  0x00000000
  116. RedBoot config    0x503C0000  0x503C0000  0x00020000  0x00000000
  117. FIS directory     0x503E0000  0x503E0000  0x00020000  0x00000000
  118. Linux kernel      0x50020000  0x00100000  0x000C0000  0x00000000
  119. JFFS2             0x500E0000  0x500E0000  0x002E0000  0x00000000
  120. However Linux should display something like:
  121. SA1100 flash: probing 32-bit flash bus
  122. SA1100 flash: Found 2 x16 devices at 0x0 in 32-bit mode
  123. Using RedBoot partition definition
  124. Creating 5 MTD partitions on "SA1100 flash":
  125. 0x00000000-0x00020000 : "RedBoot"
  126. 0x00020000-0x000e0000 : "Linux kernel"
  127. 0x000e0000-0x003c0000 : "JFFS2"
  128. 0x003c0000-0x003e0000 : "RedBoot config"
  129. 0x003e0000-0x00400000 : "FIS directory"
  130. What's important here is the position of the partition we are interested in,
  131. which is the third one.  Within Linux, this correspond to /dev/mtdblock2.
  132. Therefore to boot Linux with the kernel and its root filesystem in flash, we
  133. need this RedBoot command:
  134. fis load "Linux kernel"
  135. exec -b 0x100000 -l 0xc0000 -c "root=/dev/mtdblock2"
  136. Of course other filesystems than JFFS might be used, like cramfs for example.
  137. You might want to boot with a root filesystem over NFS, etc.  It is also
  138. possible, and sometimes more convenient, to flash a filesystem directly from
  139. within Linux while booted from a ramdisk or NFS.  The Linux MTD repository has
  140. many tools to deal with flash memory as well, to erase it for example.  JFFS2
  141. can then be mounted directly on a freshly erased partition and files can be
  142. copied over directly.  Etc...
  143. RedBoot scripting
  144. -----------------
  145. All the commands above aren't so useful if they have to be typed in every
  146. time the Assabet is rebooted.  Therefore it's possible to automatize the boot
  147. process using RedBoot's scripting capability.
  148. For example, I use this to boot Linux with both the kernel and the ramdisk
  149. images retrieved from a TFTP server on the network:
  150. RedBoot> fconfig
  151. Run script at boot: false true
  152. Boot script:
  153. Enter script, terminate with empty line
  154. >> load zImage -r -b 0x100000
  155. >> load ramdisk_ks.gz -r -b 0x800000
  156. >> exec -b 0x100000 -l 0xc0000
  157. >>
  158. Boot script timeout (1000ms resolution): 3
  159. Use BOOTP for network configuration: true
  160. GDB connection port: 9000
  161. Network debug at boot time: false
  162. Update RedBoot non-volatile configuration - are you sure (y/n)? y
  163. Then, rebooting the Assabet is just a matter of waiting for the login prompt.
  164. Nicolas Pitre
  165. nico@cam.org
  166. June 12, 2001
  167. Status of peripherals in -rmk tree (updated 14/10/2001)
  168. -------------------------------------------------------
  169. Assabet:
  170.  Serial ports:
  171.   Radio: TX, RX, CTS, DSR, DCD, RI
  172.    PM: Not tested.
  173.   COM: TX, RX, CTS, DSR, DCD, RTS, DTR, PM
  174.    PM: Not tested.
  175.   I2C: Implemented, not fully tested.
  176.   L3: Fully tested, pass.
  177.    PM: Not tested.
  178.  Video:
  179.   LCD: Fully tested.  PM
  180. (LCD doesn't like being blanked with
  181.  neponset connected)
  182.   Video out: Not fully
  183.  Audio:
  184.   UDA1341:
  185.    Playback: Fully tested, pass.
  186.    Record: Implemented, not tested.
  187.    PM: Not tested.
  188.   UCB1200:
  189.    Audio play: Implemented, not heavily tested.
  190.    Audio rec: Implemented, not heavily tested.
  191.    Telco audio play: Implemented, not heavily tested.
  192.    Telco audio rec: Implemented, not heavily tested.
  193.    POTS control: No
  194.    Touchscreen: Yes
  195.    PM: Not tested.
  196.  Other:
  197.   PCMCIA:
  198.    LPE: Fully tested, pass.
  199.   USB: No
  200.   IRDA:
  201.    SIR: Fully tested, pass.
  202.    FIR: Fully tested, pass.
  203.    PM: Not tested.
  204. Neponset:
  205.  Serial ports:
  206.   COM1,2: TX, RX, CTS, DSR, DCD, RTS, DTR
  207.    PM: Not tested.
  208.   USB: Implemented, not heavily tested.
  209.   PCMCIA: Implemented, not heavily tested.
  210.    PM: Not tested.
  211.   CF: Implemented, not heavily tested.
  212.    PM: Not tested.
  213. More stuff can be found in the -np (Nicolas Pitre's) tree.