diff options
author | Aleksandar Markovic <aleksandar.markovic@mips.com> | 2017-11-09 12:09:30 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | 2017-11-09 12:09:30 -0500 |
commit | bad12f43d0b164aad2a32b48bdc09d0d9680a213 (patch) | |
tree | f3d7d4effee03dddf3de75c29cd41a5cf8a41df9 /Documentation | |
parent | c98769475575c8a585f5b3952f4b5f90266f699b (diff) |
Documentation: Add device tree binding for Goldfish FB driver
Add documentation for DT binding of Goldfish FB driver. The compatible
string used by OS for binding the driver is "google,goldfish-fb".
Signed-off-by: Miodrag Dinic <miodrag.dinic@mips.com>
Signed-off-by: Goran Ferenc <goran.ferenc@mips.com>
Signed-off-by: Aleksandar Markovic <aleksandar.markovic@mips.com>
Acked-by: Rob Herring <robh@kernel.org>
Cc: David Airlie <airlied@linux.ie>
Cc: Douglas Leung <douglas.leung@mips.com>
Cc: James Hogan <james.hogan@mips.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Paul Burton <paul.burton@mips.com>
Cc: Petar Jovanovic <petar.jovanovic@mips.com>
Cc: Raghu Gandham <raghu.gandham@mips.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/display/google,goldfish-fb.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/display/google,goldfish-fb.txt b/Documentation/devicetree/bindings/display/google,goldfish-fb.txt new file mode 100644 index 000000000000..751fa9f51e5d --- /dev/null +++ b/Documentation/devicetree/bindings/display/google,goldfish-fb.txt | |||
@@ -0,0 +1,17 @@ | |||
1 | Android Goldfish framebuffer | ||
2 | |||
3 | Android Goldfish framebuffer device used by Android emulator. | ||
4 | |||
5 | Required properties: | ||
6 | |||
7 | - compatible : should contain "google,goldfish-fb" | ||
8 | - reg : <registers mapping> | ||
9 | - interrupts : <interrupt mapping> | ||
10 | |||
11 | Example: | ||
12 | |||
13 | display-controller@1f008000 { | ||
14 | compatible = "google,goldfish-fb"; | ||
15 | interrupts = <0x10>; | ||
16 | reg = <0x1f008000 0x100>; | ||
17 | }; | ||