microchip,pic32mzda.txt 789 B

1234567891011121314151617181920212223242526272829303132
  1. * Microchip PIC32MZDA Platforms
  2. PIC32MZDA Starter Kit
  3. Required root node properties:
  4. - compatible = "microchip,pic32mzda-sk", "microchip,pic32mzda"
  5. CPU nodes:
  6. ----------
  7. A "cpus" node is required. Required properties:
  8. - #address-cells: Must be 1.
  9. - #size-cells: Must be 0.
  10. A CPU sub-node is also required. Required properties:
  11. - device_type: Must be "cpu".
  12. - compatible: Must be "mti,mips14KEc".
  13. Example:
  14. cpus {
  15. #address-cells = <1>;
  16. #size-cells = <0>;
  17. cpu0: cpu@0 {
  18. device_type = "cpu";
  19. compatible = "mti,mips14KEc";
  20. };
  21. };
  22. Boot protocol
  23. --------------
  24. In accordance with Unified Hosting Interface Reference Manual (MD01069), the
  25. bootloader must pass the following arguments to the kernel:
  26. - $a0: -2.
  27. - $a1: KSEG0 address of the flattened device-tree blob.