Documentation / devicetree / bindings / sound / spacemit,k1-i2s.yaml


Based on kernel version 6.19. Page generated on 2026-02-12 08:38 EST.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/sound/spacemit,k1-i2s.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: K1 I2S controller

description:
  The I2S bus (Inter-IC sound bus) is a serial link for digital
  audio data transfer between devices in the system.

maintainers:
  - Troy Mitchell <troy.mitchell@linux.spacemit.com>

allOf:
  - $ref: dai-common.yaml#

properties:
  compatible:
    const: spacemit,k1-i2s

  reg:
    maxItems: 1

  clocks:
    items:
      - description: clock for I2S sysclk
      - description: clock for I2S bclk
      - description: clock for I2S bus
      - description: clock for I2S controller

  clock-names:
    items:
      - const: sysclk
      - const: bclk
      - const: bus
      - const: func

  dmas:
    minItems: 1
    maxItems: 2

  dma-names:
    minItems: 1
    items:
      - const: tx
      - const: rx

  resets:
    maxItems: 1

  port:
    $ref: audio-graph-port.yaml#
    unevaluatedProperties: false
 
  "#sound-dai-cells":
    const: 0

required:
  - compatible
  - reg
  - clocks
  - clock-names
  - dmas
  - dma-names
  - resets
  - "#sound-dai-cells"

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/clock/spacemit,k1-syscon.h>
    i2s@d4026000 {
      compatible = "spacemit,k1-i2s";
      reg = <0xd4026000 0x30>;
      clocks = <&syscon_mpmu CLK_I2S_SYSCLK>,
               <&syscon_mpmu CLK_I2S_BCLK>,
               <&syscon_apbc CLK_SSPA0_BUS>,
               <&syscon_apbc CLK_SSPA0>;
      clock-names = "sysclk", "bclk", "bus", "func";
      dmas = <&pdma0 21>, <&pdma0 22>;
      dma-names = "tx", "rx";
      resets = <&syscon_apbc RESET_SSPA0>;
      #sound-dai-cells = <0>;
    };