Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp8350pxj; Thu, 13 May 2021 19:12:16 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwzyJhSyqeQ5mxmgK4kTjb201bBetisVpXw9BTr/iCmGiJ3qsgoLZm2PTvswclDvsIKCjze X-Received: by 2002:a17:907:1106:: with SMTP id qu6mr17698593ejb.35.1620958335978; Thu, 13 May 2021 19:12:15 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1620958335; cv=none; d=google.com; s=arc-20160816; b=ACKG0AFKTXO0DxwjCOPDtqTFiUEqWLR7fA9vPQIaV4meX5yH3Bf802tHE+YScraZ1M F16RVbGuhE0qNOYNbHX0mn/9GKNLbYlU93Eiij27wdEihK3tSncgN9476u/xNk8E3aqJ LqQR0rqtJC9nfnGjAkiEA5gMfpY401hFPauAy4R6mv9wHcOQzF4n9S1quHC2av43W7E7 i3V89ZXb5GPNL6b45q4bXpjurK+oKkkAnfxXp9zfgvJvqwNLHw4Bo7ueAGqoY9q/WYfU zoRVIsk/67kN6IXMUlOzATPcllzLG/3+3/yWAHYsr28K12EuaYtd/RzXHtGUYHmSFm8V VmBQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=YhOhr9NrQlV6JgsBJa3apskuQW0ubY06jg2SNjE6tBA=; b=xL90KFHPnwGmD0UFJc5nYmWdwOpd5/J/RreHfU0VcQ/3vs3CbS6l/2F/ImRjP1yQM4 wVklxfSXSZAl4hlRZATEd7pmjVjyP6AjU8uPdS5uYMVycflQRkwyEHKjegp5yCm/ajkc ZlaCenyL2x4riDkVDdItu/MyghDKRh1WgcLzyXDxuodoRDrbRgaAt3/sOf5DCXJYDUvP 62esuOK7GrhfgxwnMBdr5WSgH3/wzhoFPAbk/bUZYa3mql501IcNWebxSGYbhkL13nHE BV0566FlH1ghgE01V6NPlwa3EoDigHEEnmyETm+g3DMER6QFVO0kdQPIYLdiYFdm6w6b sRUA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id ne40si4213958ejc.551.2021.05.13.19.11.52; Thu, 13 May 2021 19:12:15 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231546AbhEMXaG (ORCPT + 99 others); Thu, 13 May 2021 19:30:06 -0400 Received: from mail.manjaro.org ([176.9.38.148]:44514 "EHLO mail.manjaro.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230240AbhEMXaG (ORCPT ); Thu, 13 May 2021 19:30:06 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.manjaro.org (Postfix) with ESMTP id 58AB1222543; Fri, 14 May 2021 01:28:54 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at manjaro.org Received: from mail.manjaro.org ([127.0.0.1]) by localhost (manjaro.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lOs_WYWHEGdx; Fri, 14 May 2021 01:28:52 +0200 (CEST) From: Tobias Schramm To: =?UTF-8?q?Jernej=20=C5=A0krabec?= , devicetree@vger.kernel.org Cc: Rob Herring , Maxime Ripard , Chen-Yu Tsai , linux-arm-kernel@lists.infradead.org, linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org, Tobias Schramm Subject: [PATCH v2 0/7] Add missing peripherals to Allwinner V3s/V3 device trees Date: Fri, 14 May 2021 01:30:17 +0200 Message-Id: <20210513233024.2076725-1-t.schramm@manjaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Allwinner V3s/V3 SoCs feature quite a few peripherals that have good driver support but yet are nowhere to be found in the SoCs dts. This patchset adds the DMA controller, the relevant DMA properties for all peripherals supporting DMA, the integrated analog codec and - for the Allwinner V3 SoC - also the I2S interface. I've included all of those changes in one patchset since they do all depend on addition of the DMA controller. All changes have been tested in a recent project of mine using a Sochip S3 (a rebranded Allwinner V3) and are confirmed working. This is v2 of this patchset. Cheers, Tobias Changelog: v2: - add v3/v3s specific compatible strings - fix v3s audio codec analog frontend compatible - fix an I2S -> I2C typo Tobias Schramm (7): ARM: dts: sun8i: v3s: add DMA controller to v3s dts ARM: dts: sun8i: v3s: add DMA properties to peripherals supporting DMA ARM: dts: sun8i: v3s: add analog codec and frontend to v3s dts ASoC: dt-bindings: sun8i-a23-codec-analog: add compatible for Allwinner V3 ARM: dts: sun8i: V3: add codec analog frontend to V3 dts dt-bindings: sound: sun4i-i2s: add Allwinner V3 I2S compatible ARM: dts: sun8i: V3: add I2S interface to V3 dts .../sound/allwinner,sun4i-a10-i2s.yaml | 3 ++ .../allwinner,sun8i-a23-codec-analog.yaml | 9 +++-- arch/arm/boot/dts/sun8i-v3.dtsi | 31 +++++++++++++++ arch/arm/boot/dts/sun8i-v3s.dtsi | 39 +++++++++++++++++++ 4 files changed, 79 insertions(+), 3 deletions(-) -- 2.31.1