The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/gpu/brcm,bcm-v3d.yaml

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/gpu/brcm,bcm-v3d.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Broadcom V3D GPU Bindings
    8 
    9 maintainers:
   10   - Eric Anholt <eric@anholt.net>
   11   - Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
   12 
   13 properties:
   14   $nodename:
   15     pattern: '^gpu@[a-f0-9]+$'
   16 
   17   compatible:
   18     enum:
   19       - brcm,2711-v3d
   20       - brcm,7268-v3d
   21       - brcm,7278-v3d
   22 
   23   reg:
   24     items:
   25       - description: hub register (required)
   26       - description: core0 register (required)
   27       - description: GCA cache controller register (if GCA controller present)
   28       - description: bridge register (if no external reset controller)
   29     minItems: 2
   30 
   31   reg-names:
   32     items:
   33       - const: hub
   34       - const: core0
   35       - enum: [ bridge, gca ]
   36       - enum: [ bridge, gca ]
   37     minItems: 2
   38 
   39   interrupts:
   40     items:
   41       - description: hub interrupt (required)
   42       - description: core interrupts (if it doesn't share the hub's interrupt)
   43     minItems: 1
   44 
   45   clocks:
   46     maxItems: 1
   47 
   48   resets:
   49     maxItems: 1
   50 
   51   power-domains:
   52     maxItems: 1
   53 
   54 required:
   55   - compatible
   56   - reg
   57   - reg-names
   58   - interrupts
   59 
   60 additionalProperties: false
   61 
   62 examples:
   63   - |
   64     gpu@f1200000 {
   65       compatible = "brcm,7268-v3d";
   66       reg = <0xf1200000 0x4000>,
   67             <0xf1208000 0x4000>,
   68             <0xf1204000 0x100>,
   69             <0xf1204100 0x100>;
   70       reg-names = "hub", "core0", "bridge", "gca";
   71       interrupts = <0 78 4>,
   72                    <0 77 4>;
   73     };
   74 
   75 ...

Cache object: 89d16059664d060df1b02a007eb1f7ed


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.