mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
684c1b1457
This commit documents new compatible for s5pv210 soc, which will be also supported by this driver. Signed-off-by: Paweł Chmiel <pawel.mikolaj.chmiel@gmail.com> Reviewed-by: Rob Herring <robh@kernel.org> Acked-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Inki Dae <inki.dae@samsung.com>
29 lines
965 B
Plaintext
29 lines
965 B
Plaintext
* Samsung Image Rotator
|
|
|
|
Required properties:
|
|
- compatible : value should be one of the following:
|
|
* "samsung,s5pv210-rotator" for Rotator IP in S5PV210
|
|
* "samsung,exynos4210-rotator" for Rotator IP in Exynos4210
|
|
* "samsung,exynos4212-rotator" for Rotator IP in Exynos4212/4412
|
|
* "samsung,exynos5250-rotator" for Rotator IP in Exynos5250
|
|
|
|
- reg : Physical base address of the IP registers and length of memory
|
|
mapped region.
|
|
|
|
- interrupts : Interrupt specifier for rotator interrupt, according to format
|
|
specific to interrupt parent.
|
|
|
|
- clocks : Clock specifier for rotator clock, according to generic clock
|
|
bindings. (See Documentation/devicetree/bindings/clock/exynos*.txt)
|
|
|
|
- clock-names : Names of clocks. For exynos rotator, it should be "rotator".
|
|
|
|
Example:
|
|
rotator@12810000 {
|
|
compatible = "samsung,exynos4210-rotator";
|
|
reg = <0x12810000 0x1000>;
|
|
interrupts = <0 83 0>;
|
|
clocks = <&clock 278>;
|
|
clock-names = "rotator";
|
|
};
|