From patchwork Tue Jun 13 17:10:42 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: William Breathitt Gray X-Patchwork-Id: 13279049 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CB4A7EB64D0 for ; Tue, 13 Jun 2023 17:10:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230108AbjFMRKt (ORCPT ); Tue, 13 Jun 2023 13:10:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44562 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229838AbjFMRKs (ORCPT ); Tue, 13 Jun 2023 13:10:48 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D4EA8EA for ; Tue, 13 Jun 2023 10:10:46 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id CC322638AA for ; Tue, 13 Jun 2023 17:10:45 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8876EC433F0; Tue, 13 Jun 2023 17:10:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1686676245; bh=/HjoQiRF1P8rx27fGi3lcjz7tgaAWcCBUXMOXELooYA=; h=Date:From:To:Cc:Subject:From; b=jrLh3aws/JRqR5zNAw3KlksdOvfbpO/C/x6v4LnN3EZDryJhww/V7WmJmLa48LVPa BMjGqhCrkcMNh+b3VJ9Nz9z4+RQlkvFNZo/a5LJ3x0I05FoZKWGXGHqbAtx/x555/k DsPNKrQUxLnNNbZcZ4euts0BtYwacoy9nx/mRoJ9g79LTsj7u7VJQlcdMGGHEKGNSb ARSpuOnEwXN5AGTxTUq9hBB8GVYY4kleOGXDXfSaWgGsv04fxBjqnrQtI+umxOFI7d D0AOcRgnnuvDLGEOK0OLfQm/cz8AJFzWCRGgJGqWqYD/LVCDtx/RxHZC7jvFfI+1Ck pPQ+jWT2anYZA== Date: Tue, 13 Jun 2023 13:10:42 -0400 From: William Breathitt Gray To: gregkh@linuxfoundation.org Cc: linux-iio@vger.kernel.org, william.gray@linaro.org Subject: First set of Counter updates for the 6.5 cycle Message-ID: MIME-Version: 1.0 Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org The following changes since commit ac9a78681b921877518763ba0e89202254349d1b: Linux 6.4-rc1 (2023-05-07 13:34:35 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-updates-for-6.5a for you to fetch changes up to d428487471ba6640ee8bcdabaf830aec08b85400: counter: i8254: Introduce the Intel 8254 interface library module (2023-06-08 10:11:17 -0400) ---------------------------------------------------------------- First set of Counter updates for the 6.5 cycle Biggest changes in this set include the introduction of a new Intel 8254 interface library module and the refactoring of the existing 104-quad-8 modules to migrate it to the regmap API. Some other minor cleanups touching tools/counter and stm32-timer-cnt are also present. Changes * 104-quad-8 - Remove reference in Kconfig to 25-bit counter value - Utilize bitfield access macros - Refactor to buffer states for CMR, IOR, and IDR - Utilize helper functions to handle PR, FLAG and PSC - Migrate to the regmap API * i8254 - Introduce the Intel 8254 interface library module * stm32-timer-cnt - Reset TIM_TISEL to its default value in probe * tools/counter - Add .gitignore - Remove lingering 'include' directories on make clean ---------------------------------------------------------------- Rong Tao (2): tools/counter: Add .gitignore tools/counter: Makefile: Remove lingering 'include' directories on make clean Uwe Kleine-König (1): counter: stm32-timer-cnt: Reset TIM_TISEL to its default value in probe William Breathitt Gray (6): counter: 104-quad-8: Remove reference in Kconfig to 25-bit counter value counter: 104-quad-8: Utilize bitfield access macros counter: 104-quad-8: Refactor to buffer states for CMR, IOR, and IDR counter: 104-quad-8: Utilize helper functions to handle PR, FLAG and PSC counter: 104-quad-8: Migrate to the regmap API counter: i8254: Introduce the Intel 8254 interface library module