mirror of
https://github.com/torvalds/linux.git
synced 2026-04-27 11:02:31 -04:00
cpm_qe is supported on both powerpc and arm. and the QE code has been moved from arch/powerpc into drivers/soc/fsl, so move cpm_qe binding from powerpc/fsl to soc/fsl Signed-off-by: Zhao Qiang <qiang.zhao@nxp.com> Acked-by: Rob Herring<robh@kernel.org> Signed-off-by: Scott Wood <oss@buserror.net>
19 lines
376 B
Plaintext
19 lines
376 B
Plaintext
* Interrupt Controllers
|
|
|
|
Currently defined compatibles:
|
|
- fsl,cpm1-pic
|
|
- only one interrupt cell
|
|
- fsl,pq1-pic
|
|
- fsl,cpm2-pic
|
|
- second interrupt cell is level/sense:
|
|
- 2 is falling edge
|
|
- 8 is active low
|
|
|
|
Example:
|
|
interrupt-controller@10c00 {
|
|
#interrupt-cells = <2>;
|
|
interrupt-controller;
|
|
reg = <10c00 80>;
|
|
compatible = "mpc8272-pic", "fsl,cpm2-pic";
|
|
};
|