11a5b5376SThierry RedingThis document describes the generic device tree binding for IOMMUs and their 21a5b5376SThierry Redingmaster(s). 31a5b5376SThierry Reding 41a5b5376SThierry Reding 51a5b5376SThierry RedingIOMMU device node: 61a5b5376SThierry Reding================== 71a5b5376SThierry Reding 81a5b5376SThierry RedingAn IOMMU can provide the following services: 91a5b5376SThierry Reding 101a5b5376SThierry Reding* Remap address space to allow devices to access physical memory ranges that 111a5b5376SThierry Reding they otherwise wouldn't be capable of accessing. 121a5b5376SThierry Reding 131a5b5376SThierry Reding Example: 32-bit DMA to 64-bit physical addresses 141a5b5376SThierry Reding 151a5b5376SThierry Reding* Implement scatter-gather at page level granularity so that the device does 161a5b5376SThierry Reding not have to. 171a5b5376SThierry Reding 181a5b5376SThierry Reding* Provide system protection against "rogue" DMA by forcing all accesses to go 191a5b5376SThierry Reding through the IOMMU and faulting when encountering accesses to unmapped 201a5b5376SThierry Reding address regions. 211a5b5376SThierry Reding 221a5b5376SThierry Reding* Provide address space isolation between multiple contexts. 231a5b5376SThierry Reding 241a5b5376SThierry Reding Example: Virtualization 251a5b5376SThierry Reding 261a5b5376SThierry RedingDevice nodes compatible with this binding represent hardware with some of the 271a5b5376SThierry Redingabove capabilities. 281a5b5376SThierry Reding 291a5b5376SThierry RedingIOMMUs can be single-master or multiple-master. Single-master IOMMU devices 301a5b5376SThierry Redingtypically have a fixed association to the master device, whereas multiple- 311a5b5376SThierry Redingmaster IOMMU devices can translate accesses from more than one master. 321a5b5376SThierry Reding 331a5b5376SThierry RedingThe device tree node of the IOMMU device's parent bus must contain a valid 341a5b5376SThierry Reding"dma-ranges" property that describes how the physical address space of the 351a5b5376SThierry RedingIOMMU maps to memory. An empty "dma-ranges" property means that there is a 361a5b5376SThierry Reding1:1 mapping from IOMMU to memory. 371a5b5376SThierry Reding 381a5b5376SThierry RedingRequired properties: 391a5b5376SThierry Reding-------------------- 401a5b5376SThierry Reding- #iommu-cells: The number of cells in an IOMMU specifier needed to encode an 411a5b5376SThierry Reding address. 421a5b5376SThierry Reding 431a5b5376SThierry RedingThe meaning of the IOMMU specifier is defined by the device tree binding of 441a5b5376SThierry Redingthe specific IOMMU. Below are a few examples of typical use-cases: 451a5b5376SThierry Reding 461a5b5376SThierry Reding- #iommu-cells = <0>: Single master IOMMU devices are not configurable and 471a5b5376SThierry Reding therefore no additional information needs to be encoded in the specifier. 481a5b5376SThierry Reding This may also apply to multiple master IOMMU devices that do not allow the 491a5b5376SThierry Reding association of masters to be configured. Note that an IOMMU can by design 501a5b5376SThierry Reding be multi-master yet only expose a single master in a given configuration. 511a5b5376SThierry Reding In such cases the number of cells will usually be 1 as in the next case. 521a5b5376SThierry Reding- #iommu-cells = <1>: Multiple master IOMMU devices may need to be configured 531a5b5376SThierry Reding in order to enable translation for a given master. In such cases the single 541a5b5376SThierry Reding address cell corresponds to the master device's ID. In some cases more than 551a5b5376SThierry Reding one cell can be required to represent a single master ID. 561a5b5376SThierry Reding- #iommu-cells = <4>: Some IOMMU devices allow the DMA window for masters to 571a5b5376SThierry Reding be configured. The first cell of the address in this may contain the master 581a5b5376SThierry Reding device's ID for example, while the second cell could contain the start of 591a5b5376SThierry Reding the DMA window for the given device. The length of the DMA window is given 601a5b5376SThierry Reding by the third and fourth cells. 611a5b5376SThierry Reding 621a5b5376SThierry RedingNote that these are merely examples and real-world use-cases may use different 631a5b5376SThierry Redingdefinitions to represent their individual needs. Always refer to the specific 641a5b5376SThierry RedingIOMMU binding for the exact meaning of the cells that make up the specifier. 651a5b5376SThierry Reding 661a5b5376SThierry Reding 671a5b5376SThierry RedingIOMMU master node: 681a5b5376SThierry Reding================== 691a5b5376SThierry Reding 701a5b5376SThierry RedingDevices that access memory through an IOMMU are called masters. A device can 711a5b5376SThierry Redinghave multiple master interfaces (to one or more IOMMU devices). 721a5b5376SThierry Reding 731a5b5376SThierry RedingRequired properties: 741a5b5376SThierry Reding-------------------- 751a5b5376SThierry Reding- iommus: A list of phandle and IOMMU specifier pairs that describe the IOMMU 761a5b5376SThierry Reding master interfaces of the device. One entry in the list describes one master 771a5b5376SThierry Reding interface of the device. 781a5b5376SThierry Reding 791a5b5376SThierry RedingWhen an "iommus" property is specified in a device tree node, the IOMMU will 801a5b5376SThierry Redingbe used for address translation. If a "dma-ranges" property exists in the 811a5b5376SThierry Redingdevice's parent node it will be ignored. An exception to this rule is if the 821a5b5376SThierry Redingreferenced IOMMU is disabled, in which case the "dma-ranges" property of the 831a5b5376SThierry Redingparent shall take effect. Note that merely disabling a device tree node does 841a5b5376SThierry Redingnot guarantee that the IOMMU is really disabled since the hardware may not 851a5b5376SThierry Redinghave a means to turn off translation. But it is invalid in such cases to 861a5b5376SThierry Redingdisable the IOMMU's device tree node in the first place because it would 871a5b5376SThierry Redingprevent any driver from properly setting up the translations. 881a5b5376SThierry Reding 892e981b94SJean-Philippe BruckerOptional properties: 902e981b94SJean-Philippe Brucker-------------------- 912e981b94SJean-Philippe Brucker- pasid-num-bits: Some masters support multiple address spaces for DMA, by 922e981b94SJean-Philippe Brucker tagging DMA transactions with an address space identifier. By default, 932e981b94SJean-Philippe Brucker this is 0, which means that the device only has one address space. 942e981b94SJean-Philippe Brucker 95*ed1d08b9SJean-Philippe Brucker- dma-can-stall: When present, the master can wait for a transaction to 96*ed1d08b9SJean-Philippe Brucker complete for an indefinite amount of time. Upon translation fault some 97*ed1d08b9SJean-Philippe Brucker IOMMUs, instead of aborting the translation immediately, may first 98*ed1d08b9SJean-Philippe Brucker notify the driver and keep the transaction in flight. This allows the OS 99*ed1d08b9SJean-Philippe Brucker to inspect the fault and, for example, make physical pages resident 100*ed1d08b9SJean-Philippe Brucker before updating the mappings and completing the transaction. Such IOMMU 101*ed1d08b9SJean-Philippe Brucker accepts a limited number of simultaneous stalled transactions before 102*ed1d08b9SJean-Philippe Brucker having to either put back-pressure on the master, or abort new faulting 103*ed1d08b9SJean-Philippe Brucker transactions. 104*ed1d08b9SJean-Philippe Brucker 105*ed1d08b9SJean-Philippe Brucker Firmware has to opt-in stalling, because most buses and masters don't 106*ed1d08b9SJean-Philippe Brucker support it. In particular it isn't compatible with PCI, where 107*ed1d08b9SJean-Philippe Brucker transactions have to complete before a time limit. More generally it 108*ed1d08b9SJean-Philippe Brucker won't work in systems and masters that haven't been designed for 109*ed1d08b9SJean-Philippe Brucker stalling. For example the OS, in order to handle a stalled transaction, 110*ed1d08b9SJean-Philippe Brucker may attempt to retrieve pages from secondary storage in a stalled 111*ed1d08b9SJean-Philippe Brucker domain, leading to a deadlock. 112*ed1d08b9SJean-Philippe Brucker 1131a5b5376SThierry Reding 1141a5b5376SThierry RedingNotes: 1151a5b5376SThierry Reding====== 1161a5b5376SThierry Reding 1171a5b5376SThierry RedingOne possible extension to the above is to use an "iommus" property along with 1181a5b5376SThierry Redinga "dma-ranges" property in a bus device node (such as PCI host bridges). This 1191a5b5376SThierry Redingcan be useful to describe how children on the bus relate to the IOMMU if they 1201a5b5376SThierry Redingare not explicitly listed in the device tree (e.g. PCI devices). However, the 1211a5b5376SThierry Redingrequirements of that use-case haven't been fully determined yet. Implementing 1221a5b5376SThierry Redingthis is therefore not recommended without further discussion and extension of 1231a5b5376SThierry Redingthis binding. 1241a5b5376SThierry Reding 1251a5b5376SThierry Reding 1261a5b5376SThierry RedingExamples: 1271a5b5376SThierry Reding========= 1281a5b5376SThierry Reding 1291a5b5376SThierry RedingSingle-master IOMMU: 1301a5b5376SThierry Reding-------------------- 1311a5b5376SThierry Reding 1321a5b5376SThierry Reding iommu { 1331a5b5376SThierry Reding #iommu-cells = <0>; 1341a5b5376SThierry Reding }; 1351a5b5376SThierry Reding 1361a5b5376SThierry Reding master { 1371a5b5376SThierry Reding iommus = <&{/iommu}>; 1381a5b5376SThierry Reding }; 1391a5b5376SThierry Reding 1401a5b5376SThierry RedingMultiple-master IOMMU with fixed associations: 1411a5b5376SThierry Reding---------------------------------------------- 1421a5b5376SThierry Reding 1431a5b5376SThierry Reding /* multiple-master IOMMU */ 1441a5b5376SThierry Reding iommu { 1451a5b5376SThierry Reding /* 1461a5b5376SThierry Reding * Masters are statically associated with this IOMMU and share 1471a5b5376SThierry Reding * the same address translations because the IOMMU does not 1481a5b5376SThierry Reding * have sufficient information to distinguish between masters. 1491a5b5376SThierry Reding * 1501a5b5376SThierry Reding * Consequently address translation is always on or off for 1511a5b5376SThierry Reding * all masters at any given point in time. 1521a5b5376SThierry Reding */ 1531a5b5376SThierry Reding #iommu-cells = <0>; 1541a5b5376SThierry Reding }; 1551a5b5376SThierry Reding 1561a5b5376SThierry Reding /* static association with IOMMU */ 1571a5b5376SThierry Reding master@1 { 1581a5b5376SThierry Reding reg = <1>; 1591a5b5376SThierry Reding iommus = <&{/iommu}>; 1601a5b5376SThierry Reding }; 1611a5b5376SThierry Reding 1621a5b5376SThierry Reding /* static association with IOMMU */ 1631a5b5376SThierry Reding master@2 { 1641a5b5376SThierry Reding reg = <2>; 1651a5b5376SThierry Reding iommus = <&{/iommu}>; 1661a5b5376SThierry Reding }; 1671a5b5376SThierry Reding 1681a5b5376SThierry RedingMultiple-master IOMMU: 1691a5b5376SThierry Reding---------------------- 1701a5b5376SThierry Reding 1711a5b5376SThierry Reding iommu { 1721a5b5376SThierry Reding /* the specifier represents the ID of the master */ 1731a5b5376SThierry Reding #iommu-cells = <1>; 1741a5b5376SThierry Reding }; 1751a5b5376SThierry Reding 1761a5b5376SThierry Reding master@1 { 1771a5b5376SThierry Reding /* device has master ID 42 in the IOMMU */ 1781a5b5376SThierry Reding iommus = <&{/iommu} 42>; 1791a5b5376SThierry Reding }; 1801a5b5376SThierry Reding 1811a5b5376SThierry Reding master@2 { 1821a5b5376SThierry Reding /* device has master IDs 23 and 24 in the IOMMU */ 1831a5b5376SThierry Reding iommus = <&{/iommu} 23>, <&{/iommu} 24>; 1841a5b5376SThierry Reding }; 1851a5b5376SThierry Reding 1861a5b5376SThierry RedingMultiple-master IOMMU with configurable DMA window: 1871a5b5376SThierry Reding--------------------------------------------------- 1881a5b5376SThierry Reding 1891a5b5376SThierry Reding / { 1901a5b5376SThierry Reding iommu { 1911a5b5376SThierry Reding /* 1921a5b5376SThierry Reding * One cell for the master ID and one cell for the 1931a5b5376SThierry Reding * address of the DMA window. The length of the DMA 1941a5b5376SThierry Reding * window is encoded in two cells. 1951a5b5376SThierry Reding * 1961a5b5376SThierry Reding * The DMA window is the range addressable by the 1971a5b5376SThierry Reding * master (i.e. the I/O virtual address space). 1981a5b5376SThierry Reding */ 1991a5b5376SThierry Reding #iommu-cells = <4>; 2001a5b5376SThierry Reding }; 2011a5b5376SThierry Reding 2021a5b5376SThierry Reding master { 2031a5b5376SThierry Reding /* master ID 42, 4 GiB DMA window starting at 0 */ 2041a5b5376SThierry Reding iommus = <&{/iommu} 42 0 0x1 0x0>; 2051a5b5376SThierry Reding }; 2061a5b5376SThierry Reding }; 207