mirror of
https://github.com/torvalds/linux.git
synced 2026-04-23 00:55:48 -04:00
The device tree is used by more than just PowerPC. Make the documentation
directory available to all.
v2: reorganized files while moving to create arch and driver specific
directories.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
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";
|
|
};
|