mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
4c9847b737
Improve the binding example by removing all the leading 0x to fix the
following dtc warnings:
Warning (unit_address_format): Node /XXX unit name should not have leading "0x"
Converted using the following command:
find Documentation/devicetree/bindings -name "*.txt" -exec sed -i -e 's/([^ ])\@0x([0-9a-f])/$1\@$2/g' {} +
This is a follow up to commit 48c926cd34
Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Rob Herring <robh@kernel.org>
39 lines
976 B
Plaintext
39 lines
976 B
Plaintext
* Samsung Exynos5 G-Scaler device
|
|
|
|
G-Scaler is used for scaling and color space conversion on EXYNOS5 SoCs.
|
|
|
|
Required properties:
|
|
- compatible: should be one of
|
|
"samsung,exynos5250-gsc"
|
|
"samsung,exynos5420-gsc"
|
|
"samsung,exynos5433-gsc"
|
|
"samsung,exynos5-gsc" (deprecated)
|
|
- reg: should contain G-Scaler physical address location and length.
|
|
- interrupts: should contain G-Scaler interrupt number
|
|
|
|
Optional properties:
|
|
- samsung,sysreg: handle to syscon used to control the system registers to
|
|
set writeback input and destination
|
|
|
|
Example:
|
|
|
|
gsc_0: gsc@13e00000 {
|
|
compatible = "samsung,exynos5250-gsc";
|
|
reg = <0x13e00000 0x1000>;
|
|
interrupts = <0 85 0>;
|
|
};
|
|
|
|
Aliases:
|
|
Each G-Scaler node should have a numbered alias in the aliases node,
|
|
in the form of gscN, N = 0...3. G-Scaler driver uses these aliases
|
|
to retrieve the device IDs using "of_alias_get_id()" call.
|
|
|
|
Example:
|
|
|
|
aliases {
|
|
gsc0 =&gsc_0;
|
|
gsc1 =&gsc_1;
|
|
gsc2 =&gsc_2;
|
|
gsc3 =&gsc_3;
|
|
};
|