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/sound/qcom,lpass-rx-macro.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/sound/qcom,lpass-rx-macro.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: LPASS(Low Power Audio Subsystem) RX Macro audio codec DT bindings
    8 
    9 maintainers:
   10   - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
   11 
   12 properties:
   13   compatible:
   14     enum:
   15       - qcom,sc7280-lpass-rx-macro
   16       - qcom,sm8250-lpass-rx-macro
   17 
   18   reg:
   19     maxItems: 1
   20 
   21   "#sound-dai-cells":
   22     const: 1
   23 
   24   '#clock-cells':
   25     const: 0
   26 
   27   clocks:
   28     maxItems: 5
   29 
   30   clock-names:
   31     oneOf:
   32       - items:   #for ADSP based platforms
   33           - const: mclk
   34           - const: npl
   35           - const: macro
   36           - const: dcodec
   37           - const: fsgen
   38       - items:   #for ADSP bypass based platforms
   39           - const: mclk
   40           - const: npl
   41           - const: fsgen
   42 
   43   clock-output-names:
   44     items:
   45       - const: mclk
   46 
   47   power-domains:
   48     maxItems: 2
   49 
   50   power-domain-names:
   51     items:
   52       - const: macro
   53       - const: dcodec
   54 
   55 required:
   56   - compatible
   57   - reg
   58   - "#sound-dai-cells"
   59 
   60 additionalProperties: false
   61 
   62 examples:
   63   - |
   64     #include <dt-bindings/sound/qcom,q6afe.h>
   65     codec@3200000 {
   66       compatible = "qcom,sm8250-lpass-rx-macro";
   67       reg = <0x3200000 0x1000>;
   68       #sound-dai-cells = <1>;
   69       #clock-cells = <0>;
   70       clocks = <&audiocc 0>,
   71                <&audiocc 1>,
   72                <&q6afecc LPASS_HW_MACRO_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>,
   73                <&q6afecc LPASS_HW_DCODEC_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>,
   74                <&vamacro>;
   75       clock-names = "mclk", "npl", "macro", "dcodec", "fsgen";
   76       clock-output-names = "mclk";
   77     };

Cache object: 58e60c4e649f3594ae6b647a05aa5470


[ 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.