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