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=-5.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_2 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 A7454C4742C for ; Sun, 8 Nov 2020 16:23:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6929E21D40 for ; Sun, 8 Nov 2020 16:23:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604852639; bh=avBVJRnkd7Xw7yPfPzdT/w2Ilk+ZbHTnHDLOiYSuk1M=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=qkX1IRbgPGlIilW1ipdupIiO+EsxYV6xK2+fijADgbeuiuxwIfdypsc78XZcPTKgB MHxOY4afX5LU65q+RXvHW60Gk3ODTsyo96xXnzNdnAnOOUQGCC4wwiWBBcZ5XGsAGs PS3+BdrHCsf72ZE60gAsxrSNR1Q6vwaoO/p39OyA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727910AbgKHQX4 (ORCPT ); Sun, 8 Nov 2020 11:23:56 -0500 Received: from mail.kernel.org ([198.145.29.99]:59708 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726388AbgKHQXz (ORCPT ); Sun, 8 Nov 2020 11:23:55 -0500 Received: from archlinux (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id ED226208B6; Sun, 8 Nov 2020 16:23:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604852635; bh=avBVJRnkd7Xw7yPfPzdT/w2Ilk+ZbHTnHDLOiYSuk1M=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=xZeW3GZjrpTZY/b5Slt348II/ReXiYPkl27WWHfiYzP093VzGFnkMwRCzwW2E3Xl7 2aP/y3w+02WcSNvd4to5ETYmZKZfHPrqVUPFboJRCgswI8ysk5rVbO+RdgmY/sgIM6 eO5MrjojHnkgKsrk7GHVOX+BOdrKMJvUsF6rIvzg= Date: Sun, 8 Nov 2020 16:23:49 +0000 From: Jonathan Cameron To: Gene Chen Cc: robh+dt@kernel.org, matthias.bgg@gmail.com, knaack.h@gmx.de, lars@metafoo.de, pmeerw@pmeerw.net, devicetree@vger.kernel.org, linux-iio@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org, gene_chen@richtek.com, Wilma.Wu@mediatek.com, shufan_lee@richtek.com, cy_huang@richtek.com, benjamin.chao@mediatek.com Subject: Re: [PATCH v7 0/3] iio: adc: mt6360: Add ADC driver for MT6360 Message-ID: <20201108162317.598ae8cc@archlinux> In-Reply-To: <20201101154019.39932a2e@archlinux> References: <1603181267-15610-1-git-send-email-gene.chen.richtek@gmail.com> <20201101154019.39932a2e@archlinux> X-Mailer: Claws Mail 3.17.7 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org On Sun, 1 Nov 2020 15:40:19 +0000 Jonathan Cameron wrote: > On Tue, 20 Oct 2020 16:07:44 +0800 > Gene Chen wrote: > > > In-Reply-To: > > > > This patch series add MT6360 ADC support contains driver, testing document > > and binding document > > > Hi Gene, > > Other than that small edit needed in the dt binding this is stalled on > the label code getting upstreamed into the core. > > I've asked Cristian to repost that so hopefully we can resolve that dependency > and get this merged fairly soon. > > For the dt thing I can just drop the description entirely, but would prefer > if you sent a v8 fixing the tags issue Rob pointed out and also fixing that > description. I've tweaked as described and applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to poke at it more than I do. Thanks, Jonathan > > Thanks, > > Jonathan > > > Gene Chen (2) > > dt-bindings: iio: adc: add bindings doc for MT6360 ADC > > Documentation: ABI: testing: mt6360: Add ADC sysfs guideline > > iio: adc: mt6360: Add ADC driver for MT6360 > > > > Documentation/ABI/testing/sysfs-bus-iio-adc-mt6360 | 78 ++ > > Documentation/devicetree/bindings/iio/adc/mediatek,mt6360-adc.yaml | 34 > > drivers/iio/adc/Kconfig | 11 > > drivers/iio/adc/Makefile | 1 > > drivers/iio/adc/mt6360-adc.c | 372 ++++++++++ > > 5 files changed, 496 insertions(+) > > > > changelogs between v1 & v2 > > - adc: use IIO_CHAN_INFO_PROCESSED only > > - adc: use devm_iio_triggered_buffer_setup > > - adc: use use s64 to record timestamp > > > > changelogs between v2 & v3 > > - Rearrange include file order by alphabet > > - Set line length constraint below 100 > > - Add Document for testing adc sysfs node guideline > > - Set compiler 64 bit aligned when handle iio timestamp > > > > changelogs between v3 & v4 > > - Fix sysfs guideline description > > - Replace iio channel processed by raw/scale/offset > > - Add comment of read adc flow for special HW design > > > > changelogs between v4 & v5 > > - Rename dt-bindings aligned to file name > > - Aligned sysfs node name with driver and add VBUSDIVX description > > - Add ADC channel sysfs node "*_labels" > > > > changelogs between v5 & v6 > > - Memset aligned adc data > > - Remove strong casting void pointer > > > > changelogs between v6 & v7 > > - Avoid adc polling infinite loop > > >