Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp48259ybl; Tue, 10 Dec 2019 17:20:57 -0800 (PST) X-Google-Smtp-Source: APXvYqwAm95M+dzIBAd7RgfhdcSBmhyGUzlI6LFZJ9TePB2nKEYKNTi7kRQtPJ2wZych5NO8DDjy X-Received: by 2002:a9d:6e8a:: with SMTP id a10mr517768otr.181.1576027257245; Tue, 10 Dec 2019 17:20:57 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id t142si202714oih.242.2019.12.10.17.20.44; Tue, 10 Dec 2019 17:20:57 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; arc=fail (body hash mismatch); spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726646AbfLKBUQ convert rfc822-to-8bit (ORCPT + 99 others); Tue, 10 Dec 2019 20:20:16 -0500 Received: from sender4-op-o11.zoho.com ([136.143.188.11]:17164 "EHLO sender4-op-o11.zoho.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726364AbfLKBUP (ORCPT ); Tue, 10 Dec 2019 20:20:15 -0500 ARC-Seal: i=1; a=rsa-sha256; t=1576027194; cv=none; d=zohomail.com; s=zohoarc; b=nBC/a8KgwAEFS8owKJPJteNGwqKKpZ9l/pwkdpn0hYabhMF2sWdKEU7AtMAzjtXy863uwAZBHDt7RiA/UIT8Cad4imwinPXuhx1JY0kg63LRmGGBLI6pLZottID3rigiZ7x4n0Px9MttjiMt2VGL4BiFzVYNE1MZdUPiPzKuCTs= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1576027194; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:MIME-Version:Message-ID:Subject:To; bh=DuYLWfyJP9Xff1OS3yX3DZJn48FedLL4mZAzGQCoZrE=; b=Wwyh+DhfYltvYfBZy2eveO0P5AYDvNf2uwNfLH6TkoyLY/a2eb6vNxnlFByCfW6xj+Db5r6swJyx+gQ8WI5maDG+uNf4zvYLPA/NfCk9LSTyQ5kEIDOWn09r8QqNvOLM+Xh0mDugnjBXK+XgjTefW3XHZezS/we7Y1dviFfqu/I= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=dlrobertson.com; spf=pass smtp.mailfrom=dan@dlrobertson.com; dmarc=pass header.from= header.from= Received: from nessie.verizon.net (pool-173-73-58-202.washdc.fios.verizon.net [173.73.58.202]) by mx.zohomail.com with SMTPS id 157602719391847.389218584379364; Tue, 10 Dec 2019 17:19:53 -0800 (PST) From: Dan Robertson To: Jonathan Cameron , linux-iio@vger.kernel.org, Peter Meerwald-Stadler Cc: Andy Shevchenko , devicetree@vger.kernel.org, Hartmut Knaack , Rob Herring , Mark Rutland , linux-kernel@vger.kernel.org, Randy Dunlap , Joe Perches , Dan Robertson Message-ID: <20191211010308.1525-1-dan@dlrobertson.com> Subject: [PATCH v6 0/2] iio: add driver for Bosch BMA400 accelerometer Date: Wed, 11 Dec 2019 01:03:06 +0000 X-Mailer: git-send-email 2.24.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8BIT X-ZohoMailClient: External Content-Type: text/plain; charset=utf8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Only update from the last patchset are the changes to the Kconfig options. Cheers, - Dan Changes in v6: * Improve readability Kconfig options Changes in v5: * Move to using a function instead of lookup tables for scale and frequency conversions. * Rename DT bindings to bosch,bma400.yaml * Fixed other errors and improvements found by reviewers Changes in v4: * Fix error in DT bindings * Fix typo when setting the OSR * Simplified the cached sample frequency * Fix the MODULE_LICENSE Changes in v3: * Use yaml format for DT bindings * Remove strict dependency on OF * Tidy Kconfig dependencies * Stylistic changes * Do not soft-reset device on remove Changes in v2: * Implemented iio_info -> read_avail * Stylistic changes * Implemented devicetree bindings Dan Robertson (2): dt-bindings: iio: accel: bma400: add bindings iio: (bma400) add driver for the BMA400 .../bindings/iio/accel/bosch,bma400.yaml | 39 + drivers/iio/accel/Kconfig | 16 + drivers/iio/accel/Makefile | 2 + drivers/iio/accel/bma400.h | 95 ++ drivers/iio/accel/bma400_core.c | 823 ++++++++++++++++++ drivers/iio/accel/bma400_i2c.c | 62 ++ 6 files changed, 1037 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml create mode 100644 drivers/iio/accel/bma400.h create mode 100644 drivers/iio/accel/bma400_core.c create mode 100644 drivers/iio/accel/bma400_i2c.c