README 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Board information
  2. -----------------
  3. The SBC produced by Phytec has a SOM based on a i.MX6Q.
  4. The SOM is sold in two versions, with eMMC or with NAND. Support
  5. here is for the SOM with NAND.
  6. The evaluation board "phyBoard-Mira" is thought to be used
  7. together with the SOM.
  8. More information on the board can be found on manufacturer's
  9. website:
  10. http://www.phytec.de/produkt/single-board-computer/phyboard-mira/
  11. http://www.phytec.de/fileadmin/user_upload/images/content/1.Products/SOMs/phyCORE-i.MX6/L-808e_1.pdf
  12. Building U-Boot
  13. -------------------------------
  14. $ make pcm058_defconfig
  15. $ make
  16. This generates the artifacts SPL and u-boot.img.
  17. The SOM can boot from NAND or from SD-Card, having the SPI-NOR
  18. as second option.
  19. The dip switch "DIP-1" on the board let choose between
  20. NAND and SD.
  21. DIP-1 set to off: Boot first from NAND, then try SPI
  22. DIP-1 set to on: Boot first from SD, then try SPI
  23. The bootloader was tested with DIP-1 set to on. If a SD-card
  24. is present, then the RBL tries to load SPL from the SD Card, if not,
  25. RBL loads from SPI-NOR. The SPL tries then to load from the same
  26. device where SPL was loaded (SD or SPI). Booting from NAND is
  27. not supported.