All of lore.kernel.org
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Markus Schneider-Pargmann <msp@baylibre.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>, Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Lee Jones <lee@kernel.org>, Tony Lindgren <tony@atomide.com>,
	nm@ti.com, kristo@kernel.org
Cc: Jerome Neanne <jneanne@baylibre.com>,
	khilman@baylibre.com, narmstrong@baylibre.com, j-keerthy@ti.com,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-input@vger.kernel.org, linux-omap@vger.kernel.org
Subject: Re: [PATCH v4 4/6] mfd: drivers: Add TI TPS65219 PMIC support
Date: Tue, 30 Aug 2022 12:46:53 +0300	[thread overview]
Message-ID: <b6dae743-8910-1cc2-9b3f-382c6a926b4c@linaro.org> (raw)
In-Reply-To: <20220825150224.826258-5-msp@baylibre.com>

On 25/08/2022 18:02, Markus Schneider-Pargmann wrote:
> From: Jerome Neanne <jneanne@baylibre.com>
> 
> The TPS65219 is a power management IC PMIC designed to supply a wide
> range of SoCs in both portable and stationary applications. Any SoC can
> control TPS65219 over a standard I2C interface.
> 
> It contains the following components:
> - Regulators.
> - Over Temperature warning and Shut down.
> - GPIOs
> - Multi Function Pins (MFP)
> - power-button
> 
> This patch adds support for tps65219 PMIC. At this time only
> the functionalities listed below are made available:
> 
> - Regulators probe and functionalities
> - warm and cold reset support
> - SW shutdown support
> - Regulator warnings via IRQs
> - Power-button via IRQ
> 
> Signed-off-by: Jerome Neanne <jneanne@baylibre.com>
> Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
> ---
> 
> Notes:
>     Changes in v4:
>     - Removed unused fields from struct tps65219
>     - Added description for the fields in struct tps65219
>     - Fixed coding style
>     - Squash all patches into one mfd patch
>     - Call devm_mfd_add_devices multiple times to clean up the code
>     - Remove debug prints and fixup other messages
>     - Use new_probe instead of probe
> 
>  MAINTAINERS                  |   1 +
>  drivers/mfd/Kconfig          |  14 ++
>  drivers/mfd/Makefile         |   1 +
>  drivers/mfd/tps65219.c       | 357 +++++++++++++++++++++++++++++++++++
>  include/linux/mfd/tps65219.h | 345 +++++++++++++++++++++++++++++++++

Use subject prefixes matching the subsystem (git log --oneline -- ...).

Best regards,
Krzysztof

WARNING: multiple messages have this Message-ID (diff)
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Markus Schneider-Pargmann <msp@baylibre.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>, Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Lee Jones <lee@kernel.org>, Tony Lindgren <tony@atomide.com>,
	nm@ti.com, kristo@kernel.org
Cc: Jerome Neanne <jneanne@baylibre.com>,
	khilman@baylibre.com, narmstrong@baylibre.com, j-keerthy@ti.com,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-input@vger.kernel.org, linux-omap@vger.kernel.org
Subject: Re: [PATCH v4 4/6] mfd: drivers: Add TI TPS65219 PMIC support
Date: Tue, 30 Aug 2022 12:46:53 +0300	[thread overview]
Message-ID: <b6dae743-8910-1cc2-9b3f-382c6a926b4c@linaro.org> (raw)
In-Reply-To: <20220825150224.826258-5-msp@baylibre.com>

On 25/08/2022 18:02, Markus Schneider-Pargmann wrote:
> From: Jerome Neanne <jneanne@baylibre.com>
> 
> The TPS65219 is a power management IC PMIC designed to supply a wide
> range of SoCs in both portable and stationary applications. Any SoC can
> control TPS65219 over a standard I2C interface.
> 
> It contains the following components:
> - Regulators.
> - Over Temperature warning and Shut down.
> - GPIOs
> - Multi Function Pins (MFP)
> - power-button
> 
> This patch adds support for tps65219 PMIC. At this time only
> the functionalities listed below are made available:
> 
> - Regulators probe and functionalities
> - warm and cold reset support
> - SW shutdown support
> - Regulator warnings via IRQs
> - Power-button via IRQ
> 
> Signed-off-by: Jerome Neanne <jneanne@baylibre.com>
> Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
> ---
> 
> Notes:
>     Changes in v4:
>     - Removed unused fields from struct tps65219
>     - Added description for the fields in struct tps65219
>     - Fixed coding style
>     - Squash all patches into one mfd patch
>     - Call devm_mfd_add_devices multiple times to clean up the code
>     - Remove debug prints and fixup other messages
>     - Use new_probe instead of probe
> 
>  MAINTAINERS                  |   1 +
>  drivers/mfd/Kconfig          |  14 ++
>  drivers/mfd/Makefile         |   1 +
>  drivers/mfd/tps65219.c       | 357 +++++++++++++++++++++++++++++++++++
>  include/linux/mfd/tps65219.h | 345 +++++++++++++++++++++++++++++++++

Use subject prefixes matching the subsystem (git log --oneline -- ...).

Best regards,
Krzysztof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2022-08-30  9:47 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-25 15:02 [PATCH v4 0/6] Add support for TI TPS65219 PMIC Markus Schneider-Pargmann
2022-08-25 15:02 ` Markus Schneider-Pargmann
2022-08-25 15:02 ` [PATCH v4 1/6] DONOTMERGE: arm64: dts: ti: Add TI TPS65219 PMIC support for AM642 SK board Markus Schneider-Pargmann
2022-08-25 15:02   ` Markus Schneider-Pargmann
2022-08-25 15:02 ` [PATCH v4 2/6] DONOTMERGE: arm64: dts: ti: Add pinmux and irq mapping for TPS65219 external interrupts Markus Schneider-Pargmann
2022-08-25 15:02   ` Markus Schneider-Pargmann
2022-08-25 15:02 ` [PATCH v4 3/6] DONOTMERGE: arm64: dts: ti: k3-am642-sk: Enable tps65219 power-button Markus Schneider-Pargmann
2022-08-25 15:02   ` Markus Schneider-Pargmann
2022-08-25 15:02 ` [PATCH v4 4/6] mfd: drivers: Add TI TPS65219 PMIC support Markus Schneider-Pargmann
2022-08-25 15:02   ` Markus Schneider-Pargmann
2022-08-25 17:14   ` Andrew Davis
2022-08-25 17:14     ` Andrew Davis
2022-08-29  7:39     ` Markus Schneider-Pargmann
2022-08-29  7:39       ` Markus Schneider-Pargmann
2022-08-29 14:49       ` Andrew Davis
2022-08-29 14:49         ` Andrew Davis
2022-08-31 18:59         ` Markus Schneider-Pargmann
2022-08-31 18:59           ` Markus Schneider-Pargmann
2022-08-30  9:46   ` Krzysztof Kozlowski [this message]
2022-08-30  9:46     ` Krzysztof Kozlowski
2022-08-31 19:02     ` Markus Schneider-Pargmann
2022-08-31 19:02       ` Markus Schneider-Pargmann
2022-08-25 15:02 ` [PATCH v4 5/6] Input: Add tps65219 interrupt driven powerbutton Markus Schneider-Pargmann
2022-08-25 15:02   ` Markus Schneider-Pargmann
2022-08-25 15:02 ` [PATCH v4 6/6] arm64: defconfig: Add tps65219 as modules Markus Schneider-Pargmann
2022-08-25 15:02   ` Markus Schneider-Pargmann
2022-08-26  7:06 ` [PATCH v4 0/6] Add support for TI TPS65219 PMIC Krzysztof Kozlowski
2022-08-26  7:06   ` Krzysztof Kozlowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b6dae743-8910-1cc2-9b3f-382c6a926b4c@linaro.org \
    --to=krzysztof.kozlowski@linaro.org \
    --cc=broonie@kernel.org \
    --cc=catalin.marinas@arm.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=j-keerthy@ti.com \
    --cc=jneanne@baylibre.com \
    --cc=khilman@baylibre.com \
    --cc=kristo@kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=lee@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=msp@baylibre.com \
    --cc=narmstrong@baylibre.com \
    --cc=nm@ti.com \
    --cc=robh+dt@kernel.org \
    --cc=tony@atomide.com \
    --cc=will@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.