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/zl38060.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 OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/sound/zl38060.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: ZL38060 Connected Home Audio Processor from Microsemi.
    8 
    9 description: |
   10   The ZL38060 is a "Connected Home Audio Processor" from Microsemi,
   11   which consists of a Digital Signal Processor (DSP), several Digital
   12   Audio Interfaces (DAIs), analog outputs, and a block of 14 GPIOs.
   13 
   14 maintainers:
   15   - Jaroslav Kysela <perex@perex.cz>
   16   - Takashi Iwai <tiwai@suse.com>
   17 
   18 properties:
   19   compatible:
   20     const: mscc,zl38060
   21 
   22   reg:
   23     description:
   24       SPI device address.
   25     maxItems: 1
   26 
   27   spi-max-frequency:
   28     maximum: 24000000
   29 
   30   reset-gpios:
   31     description:
   32       A GPIO line handling reset of the chip. As the line is active low,
   33       it should be marked GPIO_ACTIVE_LOW (see ../gpio/gpio.txt)
   34     maxItems: 1
   35 
   36   '#gpio-cells':
   37     const: 2
   38 
   39   gpio-controller: true
   40 
   41   '#sound-dai-cells':
   42     const: 0
   43 
   44 required:
   45   - compatible
   46   - reg
   47   - '#gpio-cells'
   48   - gpio-controller
   49   - '#sound-dai-cells'
   50 
   51 additionalProperties: false
   52 
   53 examples:
   54   - |
   55     #include <dt-bindings/gpio/gpio.h>
   56     spi0 {
   57         #address-cells = <1>;
   58         #size-cells = <0>;
   59 
   60         codec: zl38060@0 {
   61             gpio-controller;
   62             #gpio-cells = <2>;
   63             #sound-dai-cells = <0>;
   64             compatible = "mscc,zl38060";
   65             reg = <0>;
   66             spi-max-frequency = <12000000>;
   67             reset-gpios = <&gpio1 0 GPIO_ACTIVE_LOW>;
   68         };
   69     };

Cache object: 1f88b5e5fa2e1af44266d0a2fb901235


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