diff options
author | Stuart Yoder <b08248@freescale.com> | 2007-03-02 14:42:33 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-03-08 23:03:24 -0500 |
commit | 27565903e94d548256bf5923653ab2a9668c9b9f (patch) | |
tree | 9e03081e80a9fd7af6a00e9e4c3b9b1112af94a0 | |
parent | 500798d48fdcffbbc7f619bd3e6b5b5cea6869d1 (diff) |
[POWERPC] Update interrupt info in booting-without-of.txt
Create a new section descrbing how interrupts are represented
in the device tree. Added more detail. Clarified some things.
Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | Documentation/powerpc/booting-without-of.txt | 123 |
1 files changed, 87 insertions, 36 deletions
diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index eaa0c3285ac9..6d5a5a0fa5e8 100644 --- a/Documentation/powerpc/booting-without-of.txt +++ b/Documentation/powerpc/booting-without-of.txt | |||
@@ -1108,42 +1108,7 @@ See appendix A for an example partial SOC node definition for the | |||
1108 | MPC8540. | 1108 | MPC8540. |
1109 | 1109 | ||
1110 | 1110 | ||
1111 | 2) Specifying interrupt information for SOC devices | 1111 | 2) Representing devices without a current OF specification |
1112 | --------------------------------------------------- | ||
1113 | |||
1114 | Each device that is part of an SOC and which generates interrupts | ||
1115 | should have the following properties: | ||
1116 | |||
1117 | - interrupt-parent : contains the phandle of the interrupt | ||
1118 | controller which handles interrupts for this device | ||
1119 | - interrupts : a list of tuples representing the interrupt | ||
1120 | number and the interrupt sense and level for each interrupt | ||
1121 | for this device. | ||
1122 | |||
1123 | This information is used by the kernel to build the interrupt table | ||
1124 | for the interrupt controllers in the system. | ||
1125 | |||
1126 | Sense and level information should be encoded as follows: | ||
1127 | |||
1128 | Devices connected to openPIC-compatible controllers should encode | ||
1129 | sense and polarity as follows: | ||
1130 | |||
1131 | 0 = low to high edge sensitive type enabled | ||
1132 | 1 = active low level sensitive type enabled | ||
1133 | 2 = active high level sensitive type enabled | ||
1134 | 3 = high to low edge sensitive type enabled | ||
1135 | |||
1136 | ISA PIC interrupt controllers should adhere to the ISA PIC | ||
1137 | encodings listed below: | ||
1138 | |||
1139 | 0 = active low level sensitive type enabled | ||
1140 | 1 = active high level sensitive type enabled | ||
1141 | 2 = high to low edge sensitive type enabled | ||
1142 | 3 = low to high edge sensitive type enabled | ||
1143 | |||
1144 | |||
1145 | |||
1146 | 3) Representing devices without a current OF specification | ||
1147 | ---------------------------------------------------------- | 1112 | ---------------------------------------------------------- |
1148 | 1113 | ||
1149 | Currently, there are many devices on SOCs that do not have a standard | 1114 | Currently, there are many devices on SOCs that do not have a standard |
@@ -1732,6 +1697,92 @@ platforms are moved over to use the flattened-device-tree model. | |||
1732 | 1697 | ||
1733 | More devices will be defined as this spec matures. | 1698 | More devices will be defined as this spec matures. |
1734 | 1699 | ||
1700 | VII - Specifying interrupt information for devices | ||
1701 | =================================================== | ||
1702 | |||
1703 | The device tree represents the busses and devices of a hardware | ||
1704 | system in a form similar to the physical bus topology of the | ||
1705 | hardware. | ||
1706 | |||
1707 | In addition, a logical 'interrupt tree' exists which represents the | ||
1708 | hierarchy and routing of interrupts in the hardware. | ||
1709 | |||
1710 | The interrupt tree model is fully described in the | ||
1711 | document "Open Firmware Recommended Practice: Interrupt | ||
1712 | Mapping Version 0.9". The document is available at: | ||
1713 | <http://playground.sun.com/1275/practice>. | ||
1714 | |||
1715 | 1) interrupts property | ||
1716 | ---------------------- | ||
1717 | |||
1718 | Devices that generate interrupts to a single interrupt controller | ||
1719 | should use the conventional OF representation described in the | ||
1720 | OF interrupt mapping documentation. | ||
1721 | |||
1722 | Each device which generates interrupts must have an 'interrupt' | ||
1723 | property. The interrupt property value is an arbitrary number of | ||
1724 | of 'interrupt specifier' values which describe the interrupt or | ||
1725 | interrupts for the device. | ||
1726 | |||
1727 | The encoding of an interrupt specifier is determined by the | ||
1728 | interrupt domain in which the device is located in the | ||
1729 | interrupt tree. The root of an interrupt domain specifies in | ||
1730 | its #interrupt-cells property the number of 32-bit cells | ||
1731 | required to encode an interrupt specifier. See the OF interrupt | ||
1732 | mapping documentation for a detailed description of domains. | ||
1733 | |||
1734 | For example, the binding for the OpenPIC interrupt controller | ||
1735 | specifies an #interrupt-cells value of 2 to encode the interrupt | ||
1736 | number and level/sense information. All interrupt children in an | ||
1737 | OpenPIC interrupt domain use 2 cells per interrupt in their interrupts | ||
1738 | property. | ||
1739 | |||
1740 | The PCI bus binding specifies a #interrupt-cell value of 1 to encode | ||
1741 | which interrupt pin (INTA,INTB,INTC,INTD) is used. | ||
1742 | |||
1743 | 2) interrupt-parent property | ||
1744 | ---------------------------- | ||
1745 | |||
1746 | The interrupt-parent property is specified to define an explicit | ||
1747 | link between a device node and its interrupt parent in | ||
1748 | the interrupt tree. The value of interrupt-parent is the | ||
1749 | phandle of the parent node. | ||
1750 | |||
1751 | If the interrupt-parent property is not defined for a node, it's | ||
1752 | interrupt parent is assumed to be an ancestor in the node's | ||
1753 | _device tree_ hierarchy. | ||
1754 | |||
1755 | 3) OpenPIC Interrupt Controllers | ||
1756 | -------------------------------- | ||
1757 | |||
1758 | OpenPIC interrupt controllers require 2 cells to encode | ||
1759 | interrupt information. The first cell defines the interrupt | ||
1760 | number. The second cell defines the sense and level | ||
1761 | information. | ||
1762 | |||
1763 | Sense and level information should be encoded as follows: | ||
1764 | |||
1765 | 0 = low to high edge sensitive type enabled | ||
1766 | 1 = active low level sensitive type enabled | ||
1767 | 2 = active high level sensitive type enabled | ||
1768 | 3 = high to low edge sensitive type enabled | ||
1769 | |||
1770 | 4) ISA Interrupt Controllers | ||
1771 | ---------------------------- | ||
1772 | |||
1773 | ISA PIC interrupt controllers require 2 cells to encode | ||
1774 | interrupt information. The first cell defines the interrupt | ||
1775 | number. The second cell defines the sense and level | ||
1776 | information. | ||
1777 | |||
1778 | ISA PIC interrupt controllers should adhere to the ISA PIC | ||
1779 | encodings listed below: | ||
1780 | |||
1781 | 0 = active low level sensitive type enabled | ||
1782 | 1 = active high level sensitive type enabled | ||
1783 | 2 = high to low edge sensitive type enabled | ||
1784 | 3 = low to high edge sensitive type enabled | ||
1785 | |||
1735 | 1786 | ||
1736 | Appendix A - Sample SOC node for MPC8540 | 1787 | Appendix A - Sample SOC node for MPC8540 |
1737 | ======================================== | 1788 | ======================================== |