From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 696A0C2D0CD for ; Tue, 17 Dec 2019 14:10:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3A0D620663 for ; Tue, 17 Dec 2019 14:10:20 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ti.com header.i=@ti.com header.b="Kd+9qADN" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728841AbfLQOKT (ORCPT ); Tue, 17 Dec 2019 09:10:19 -0500 Received: from fllv0016.ext.ti.com ([198.47.19.142]:40438 "EHLO fllv0016.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728784AbfLQOKS (ORCPT ); Tue, 17 Dec 2019 09:10:18 -0500 Received: from fllv0035.itg.ti.com ([10.64.41.0]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id xBHE9wHn090167; Tue, 17 Dec 2019 08:09:58 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1576591798; bh=+zSK3PAMPYp0FPu/i7ULX8Y3uMs+6Ix91i0wfKcwKWM=; h=From:To:CC:Subject:Date; b=Kd+9qADNY0fkKTLgqzNW0WxC6W4tFZuv+asl/e/1LEwYLKUUvfrwXEK7MvA/axQEF q4/mOy8i/TGrerJgLXlRg/ELq+4R9jm2mfx34WcHefBcYxkG/5L9QTuHPPtXLimLJX 4qkXNKEvGSbeL+r1INLDmmi8MhhGAnsqH0k4c/QU= Received: from DLEE110.ent.ti.com (dlee110.ent.ti.com [157.170.170.21]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTP id xBHE9wi4123748; Tue, 17 Dec 2019 08:09:58 -0600 Received: from DLEE107.ent.ti.com (157.170.170.37) by DLEE110.ent.ti.com (157.170.170.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1847.3; Tue, 17 Dec 2019 08:09:58 -0600 Received: from fllv0040.itg.ti.com (10.64.41.20) by DLEE107.ent.ti.com (157.170.170.37) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1847.3 via Frontend Transport; Tue, 17 Dec 2019 08:09:58 -0600 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id xBHE9vbC005793; Tue, 17 Dec 2019 08:09:57 -0600 From: Dan Murphy To: , CC: , , , , Dan Murphy Subject: [PATCH 0/2] Texas Instruments DAC8771 Date: Tue, 17 Dec 2019 08:07:29 -0600 Message-ID: <20191217140731.30504-1-dmurphy@ti.com> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello Introduce the TI DAC8771. The DAC8771 is a single channel, precision, fully integrated 16-bit digital to analog converter (DAC) with adaptive power management, and is designed to meet the requirements of industrial control applications. Dan Dan Murphy (2): dt-binding: iio: dac8771: Add TI DAC8771 binding iio: dac: Introduce the TI DAC8771 DAC driver .../bindings/iio/dac/ti,dac8771.yaml | 89 ++++ drivers/iio/dac/Kconfig | 7 + drivers/iio/dac/Makefile | 1 + drivers/iio/dac/ti-dac8771.c | 499 ++++++++++++++++++ 4 files changed, 596 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/dac/ti,dac8771.yaml create mode 100644 drivers/iio/dac/ti-dac8771.c -- 2.23.0