From patchwork Tue Dec 5 15:54:10 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Davis X-Patchwork-Id: 844841 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ti.com header.i=@ti.com header.b="aI1jkDhH"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3yrmX25ZcPz9t9n for ; Wed, 6 Dec 2017 02:54:26 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752806AbdLEPyY (ORCPT ); Tue, 5 Dec 2017 10:54:24 -0500 Received: from fllnx210.ext.ti.com ([198.47.19.17]:25757 "EHLO fllnx210.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752701AbdLEPyW (ORCPT ); Tue, 5 Dec 2017 10:54:22 -0500 Received: from dflxv15.itg.ti.com ([128.247.5.124]) by fllnx210.ext.ti.com (8.15.1/8.15.1) with ESMTP id vB5FsDeg004865; Tue, 5 Dec 2017 09:54:13 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1512489253; bh=DfANSbjIbPmFZzwlfBcfeLSm7pX82g/59urF/uxjHuM=; h=From:To:CC:Subject:Date; b=aI1jkDhHL2UIqrj/IYeq3SIntwHRWeiy5lk/eFuKKH0oSnREfrFTd1MUvx42M05mC e+S0i6mLHhlmzsCuiH9eD9tpQW35vZBtnvQtdbCY7kXm0qLcJhyp3Yb3qIx3Vx7giQ iNf2P97pja5omTVEfHoKdR++/6vjGkGOv4kD7pec= Received: from DLEE110.ent.ti.com (dlee110.ent.ti.com [157.170.170.21]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id vB5FsDxY007509; Tue, 5 Dec 2017 09:54:13 -0600 Received: from DLEE113.ent.ti.com (157.170.170.24) by DLEE110.ent.ti.com (157.170.170.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P256) id 15.1.845.34; Tue, 5 Dec 2017 09:54:13 -0600 Received: from dflp33.itg.ti.com (10.64.6.16) by DLEE113.ent.ti.com (157.170.170.24) with Microsoft SMTP Server (version=TLS1_0, cipher=TLS_RSA_WITH_AES_256_CBC_SHA) id 15.1.845.34 via Frontend Transport; Tue, 5 Dec 2017 09:54:13 -0600 Received: from legion.dal.design.ti.com (legion.dal.design.ti.com [128.247.22.53]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id vB5FsDfs023464; Tue, 5 Dec 2017 09:54:13 -0600 Received: from localhost (uda0226330.dhcp.ti.com [128.247.58.154]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id vB5FsC328842; Tue, 5 Dec 2017 09:54:12 -0600 (CST) From: "Andrew F. Davis" To: Liam Girdwood , Mark Brown , Rob Herring , Mark Rutland CC: , , , "Andrew F . Davis" Subject: [PATCH v4 0/2] Add support for TI TAS6424 digital amplifier Date: Tue, 5 Dec 2017 09:54:10 -0600 Message-ID: <20171205155412.20137-1-afd@ti.com> X-Mailer: git-send-email 2.15.0 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Hello all, This series adds support for the TAS6424 digital amplifier. A lot has changed from the last time this upstreaming was attempted, I've taken over this effort for Michael and I don't really have an exact change log but hopefully I've addressed all comments from v3. Thanks, Andrew Andreas Dannenberg (1): ASoC: Add support for TAS6424 digital amplifier Michael Stecklein (1): dt-bindings: sound: add bindings for TAS6424 .../devicetree/bindings/sound/ti,tas6424.txt | 20 + sound/soc/codecs/Kconfig | 8 + sound/soc/codecs/Makefile | 2 + sound/soc/codecs/tas6424.c | 707 +++++++++++++++++++++ sound/soc/codecs/tas6424.h | 144 +++++ 5 files changed, 881 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/ti,tas6424.txt create mode 100644 sound/soc/codecs/tas6424.c create mode 100644 sound/soc/codecs/tas6424.h