1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/sound/google,goldfish-audio.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Android Goldfish Audio 8 9maintainers: 10 - Kuan-Wei Chiu <visitorckw@gmail.com> 11 12description: 13 Android goldfish audio device generated by Android emulator. 14 15properties: 16 compatible: 17 const: google,goldfish-audio 18 19 reg: 20 maxItems: 1 21 22 interrupts: 23 maxItems: 1 24 25required: 26 - compatible 27 - reg 28 - interrupts 29 30additionalProperties: false 31 32examples: 33 - | 34 sound@9030000 { 35 compatible = "google,goldfish-audio"; 36 reg = <0x9030000 0x100>; 37 interrupts = <4>; 38 }; 39