board.txt 593 B

1234567891011121314151617181920212223242526272829
  1. * Board Control and Status (BCSR)
  2. Required properties:
  3. - device_type : Should be "board-control"
  4. - reg : Offset and length of the register set for the device
  5. Example:
  6. bcsr@f8000000 {
  7. device_type = "board-control";
  8. reg = <f8000000 8000>;
  9. };
  10. * Freescale on board FPGA
  11. This is the memory-mapped registers for on board FPGA.
  12. Required properities:
  13. - compatible : should be "fsl,fpga-pixis".
  14. - reg : should contain the address and the lenght of the FPPGA register
  15. set.
  16. Example (MPC8610HPCD):
  17. board-control@e8000000 {
  18. compatible = "fsl,fpga-pixis";
  19. reg = <0xe8000000 32>;
  20. };