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/fsl,mqs.txt

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 fsl,mqs audio CODEC
    2 
    3 Required properties:
    4   - compatible : Must contain one of "fsl,imx6sx-mqs", "fsl,codec-mqs"
    5                 "fsl,imx8qm-mqs", "fsl,imx8qxp-mqs", "fsl,imx93-mqs".
    6   - clocks : A list of phandles + clock-specifiers, one for each entry in
    7              clock-names
    8   - clock-names : "mclk" - must required.
    9                   "core" - required if compatible is "fsl,imx8qm-mqs", it
   10                            is for register access.
   11   - gpr : A phandle of General Purpose Registers in IOMUX Controller.
   12           Required if compatible is "fsl,imx6sx-mqs".
   13 
   14 Required if compatible is "fsl,imx8qm-mqs":
   15   - power-domains: A phandle of PM domain provider node.
   16   - reg: Offset and length of the register set for the device.
   17 
   18 Example:
   19 
   20 mqs: mqs {
   21         compatible = "fsl,imx6sx-mqs";
   22         gpr = <&gpr>;
   23         clocks = <&clks IMX6SX_CLK_SAI1>;
   24         clock-names = "mclk";
   25         status = "disabled";
   26 };
   27 
   28 mqs: mqs@59850000 {
   29         compatible = "fsl,imx8qm-mqs";
   30         reg = <0x59850000 0x10000>;
   31         clocks = <&clk IMX8QM_AUD_MQS_IPG>,
   32                  <&clk IMX8QM_AUD_MQS_HMCLK>;
   33         clock-names = "core", "mclk";
   34         power-domains = <&pd_mqs0>;
   35         status = "disabled";
   36 };

Cache object: 1cb54a079f3752a754847a5a9ec1a22a


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