aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddie James <eajames@linux.ibm.com>2019-04-24 11:16:59 -0400
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-04-30 13:53:12 -0400
commit0d672fffb447aa1699d76fdacd90dc31eeb66d97 (patch)
treeb671079dc81af402be818ec293e377021be0cb16
parent54b021099e2d20db324f2581cc0f18f9b22aadfa (diff)
media: dt-bindings: aspeed-video: Add missing memory-region property
Missed documenting this property in the initial commit. Signed-off-by: Eddie James <eajames@linux.ibm.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
-rw-r--r--Documentation/devicetree/bindings/media/aspeed-video.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/media/aspeed-video.txt b/Documentation/devicetree/bindings/media/aspeed-video.txt
index 78b464ae2672..ce2894506e1f 100644
--- a/Documentation/devicetree/bindings/media/aspeed-video.txt
+++ b/Documentation/devicetree/bindings/media/aspeed-video.txt
@@ -14,6 +14,11 @@ Required properties:
14 the VE 14 the VE
15 - interrupts: the interrupt associated with the VE on this platform 15 - interrupts: the interrupt associated with the VE on this platform
16 16
17Optional properties:
18 - memory-region:
19 phandle to a memory region to allocate from, as defined in
20 Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
21
17Example: 22Example:
18 23
19video-engine@1e700000 { 24video-engine@1e700000 {
@@ -23,4 +28,5 @@ video-engine@1e700000 {
23 clock-names = "vclk", "eclk"; 28 clock-names = "vclk", "eclk";
24 resets = <&syscon ASPEED_RESET_VIDEO>; 29 resets = <&syscon ASPEED_RESET_VIDEO>;
25 interrupts = <7>; 30 interrupts = <7>;
31 memory-region = <&video_engine_memory>;
26}; 32};