mpc512x_lpbfifo.txt 669 B

123456789101112131415161718192021
  1. Freescale MPC512x LocalPlus Bus FIFO (called SCLPC in the Reference Manual)
  2. Required properties:
  3. - compatible: should be "fsl,mpc512x-lpbfifo";
  4. - reg: should contain the offset and length of SCLPC register set;
  5. - interrupts: should contain the interrupt specifier for SCLPC; syntax of an
  6. interrupt client node is described in interrupt-controller/interrupts.txt;
  7. - dmas: should contain the DMA specifier for SCLPC as described at
  8. dma/dma.txt and dma/mpc512x-dma.txt;
  9. - dma-names: should be "rx-tx";
  10. Example:
  11. sclpc@10100 {
  12. compatible = "fsl,mpc512x-lpbfifo";
  13. reg = <0x10100 0x50>;
  14. interrupts = <7 0x8>;
  15. dmas = <&dma0 26>;
  16. dma-names = "rx-tx";
  17. };