IB/srp: Let srp_abort() return FAST_IO_FAIL if TL offline
[linux/fpc-iii.git] / Documentation / devicetree / bindings / arm / exynos / power_domain.txt
blob5216b419016aa7065e618285047b44ab0b033e1e
1 * Samsung Exynos Power Domains
3 Exynos processors include support for multiple power domains which are used
4 to gate power to one or more peripherals on the processor.
6 Required Properties:
7 - compatible: should be one of the following.
8     * samsung,exynos4210-pd - for exynos4210 type power domain.
9 - reg: physical base address of the controller and length of memory mapped
10     region.
12 Node of a device using power domains must have a samsung,power-domain property
13 defined with a phandle to respective power domain.
15 Example:
17         lcd0: power-domain-lcd0 {
18                 compatible = "samsung,exynos4210-pd";
19                 reg = <0x10023C00 0x10>;
20         };
22 Example of the node using power domain:
24         node {
25                 /* ... */
26                 samsung,power-domain = <&lcd0>;
27                 /* ... */
28         };