From: Chanwoo Choi <cw00.choi@samsung.com>
To: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: MyungJoo Ham <myungjoo.ham@samsung.com>,
Samuel Ortiz <sameo@linux.intel.com>,
Lee Jones <lee.jones@linaro.org>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
linux-kernel@vger.kernel.org,
Kyungmin Park <kyungmin.park@samsung.com>,
Marek Szyprowski <m.szyprowski@samsung.com>,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Subject: Re: [PATCH v5 0/9] mfd: max14577: Add support for MAX77836
Date: Tue, 15 Apr 2014 15:50:47 +0900 [thread overview]
Message-ID: <534CD6C7.7070606@samsung.com> (raw)
In-Reply-To: <1397467040-30502-1-git-send-email-k.kozlowski@samsung.com>
Dear all,
I tested this patchset about mfd/extcon/regulator on 3.15-rc1.
How about applying this patchset on some git repository?
I need the opinion of mfd/regulator maintainers
because this patchset include mfd/extcon/regulator patches.
But, following new patches hasn't acked. The two patches must need ack message.
[PATCH v5 2/9] mfd: max14577: Add muic prefix to regmap config
[PATCH v5 6/9] mfd: max14577: Add MAX14577 prefix to IRQ defines
Best Regards,
Chanwoo Choi
On 04/14/2014 06:17 PM, Krzysztof Kozlowski wrote:
> Hi,
>
>
> This is first part of fifth version of patchset adding support for
> MAX77836 device to the max14577 driver.
>
> I decided to split the patchset into smaller parts. I hope this would
> help in getting necessary review/acks from maintainers.
>
> The first part introduces changes in max14577 driver and adds support
> for MAX77836 in MFD, extcon and regulator drivers. Most of these
> patches already have required acks from maintainers.
> Full v4 patchset can be found here:
> http://thread.gmane.org/gmane.linux.kernel/1654267
>
>
> Changes since v4
> ================
> 1. Updated Kconfig entries mentioning MAX77836.
> 2. Removed rename-like patches:
> [PATCH v4 02/16] mfd: max14577: Rename and add MAX14577 symbols
> [PATCH v4 03/16] mfd: max14577: Rename state container to maxim_core
> 3. Added new patches (not yet reviewed):
> [PATCH v5 2/9] mfd: max14577: Add muic prefix to regmap config
> [PATCH v5 6/9] mfd: max14577: Add MAX14577 prefix to IRQ defines
> 4. Rebased on 3.15-rc1.
>
> Changes since v3
> ================
> 1. Applied minor fixes (pointed by Lee Jones).
> 2. Added one ACK (Lee Jones) and Review-by (Tomasz Figa).
> 3. Patch 14/charger: Minor change in parsing EOC value from DTS.
> 4. Rebased on next-20140224.
>
> Changes since v2
> ================
> 1. Added ACK-s.
> 2. Applied minor checkpatch fixes (pointed by Lee Jones).
> 3. Rebased on next-20140217.
>
> Changes since v1
> ================
> 1. Added ACK-s, reviews and tested-by tags.
> 2. Removed applied patches (they were merged to the linux-next tree).
> 3. Applied comments from review (Lee Jones) to 5/15 (detection of device type)
> and 8/15 (add max77836 support to max14577).
> 4. Rebased on next tree.
> 5. Added patch 13 and 14 (pointed by Jenny Tc):
> - regulator/mfd: max14577: Export symbols for calculating charger current
> - charger: max14577: Configure battery-dependent settings from DTS
> 6. Updated bindings documentation with new charger bindings.
> Previous thread:
> - [PATCH 00/18] mfd: max14577: Add support for MAX77836
> http://thread.gmane.org/gmane.linux.kernel/1636654/focus=1636674
>
>
> Description
> ===========
> The MAX77836 is almost the same as MAX14577. Basically it is an extended
> version of MAX14577. The chipsets have same MUIC component so the extcon,
> charger and regulators require only little adjustments. More changes were
> needed in the charger (because it uses lower charging current) and regulator
> drivers (because mentioned different charing current and additional
> regulators). The MAX77836 has also PMIC and Fuel Gauge (which is the same
> as MAX17040/17048 Fuel Gauge).
>
> The MAX77836 uses three I2C slave addresses and has additional interrupts
> (related to PMIC and Fuel Gauge). It has also Interrupt Source register,
> just like MAX77686 and MAX77693.
>
>
> Best regards,
> Krzysztof Kozlowski
>
>
> Chanwoo Choi (1):
> extcon: max14577: Change extcon name instead of static name according
> to device type
>
> Krzysztof Kozlowski (8):
> mfd: max14577: Add muic prefix to regmap config
> mfd: max14577: Add detection of device type
> extcon: max14577: Add max14577 prefix to muic_irqs
> extcon: max14577: Choose muic_irqs according to device type
> mfd: max14577: Add MAX14577 prefix to IRQ defines
> mfd: max77836: Add MAX77836 support to max14577 driver
> extcon: max14577: Add support for MAX77836
> regulator: max14577: Add support for MAX77836 regulators
>
> drivers/extcon/Kconfig | 4 +-
> drivers/extcon/extcon-max14577.c | 174 +++++++++++++------
> drivers/mfd/Kconfig | 6 +-
> drivers/mfd/max14577.c | 315 ++++++++++++++++++++++++++++++-----
> drivers/regulator/Kconfig | 7 +-
> drivers/regulator/max14577.c | 277 ++++++++++++++++++++++++++----
> include/linux/mfd/max14577-private.h | 222 ++++++++++++++++++------
> include/linux/mfd/max14577.h | 19 ++-
> 8 files changed, 836 insertions(+), 188 deletions(-)
>
next prev parent reply other threads:[~2014-04-15 6:50 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-14 9:17 [PATCH v5 0/9] mfd: max14577: Add support for MAX77836 Krzysztof Kozlowski
2014-04-14 9:17 ` [PATCH v5 1/9] extcon: max14577: Change extcon name instead of static name according to device type Krzysztof Kozlowski
2014-04-14 9:17 ` [PATCH v5 2/9] mfd: max14577: Add muic prefix to regmap config Krzysztof Kozlowski
2014-04-15 6:36 ` Chanwoo Choi
2014-04-16 10:22 ` Lee Jones
2014-04-14 9:17 ` [PATCH v5 3/9] mfd: max14577: Add detection of device type Krzysztof Kozlowski
2014-04-14 9:17 ` [PATCH v5 4/9] extcon: max14577: Add max14577 prefix to muic_irqs Krzysztof Kozlowski
2014-04-14 9:17 ` [PATCH v5 5/9] extcon: max14577: Choose muic_irqs according to device type Krzysztof Kozlowski
2014-04-14 9:17 ` [PATCH v5 6/9] mfd: max14577: Add MAX14577 prefix to IRQ defines Krzysztof Kozlowski
2014-04-15 6:37 ` Chanwoo Choi
2014-04-16 10:27 ` Lee Jones
2014-04-14 9:17 ` [PATCH v5 7/9] mfd: max77836: Add MAX77836 support to max14577 driver Krzysztof Kozlowski
2014-04-14 9:17 ` [PATCH v5 8/9] extcon: max14577: Add support for MAX77836 Krzysztof Kozlowski
2014-04-14 9:17 ` [PATCH v5 9/9] regulator: max14577: Add support for MAX77836 regulators Krzysztof Kozlowski
2014-04-15 6:50 ` Chanwoo Choi [this message]
2014-04-16 10:28 ` [PATCH v5 0/9] mfd: max14577: Add support for MAX77836 Lee Jones
2014-04-16 10:44 ` Krzysztof Kozlowski
2014-04-16 10:51 ` Chanwoo Choi
2014-04-16 11:02 ` Krzysztof Kozlowski
2014-04-16 11:36 ` Chanwoo Choi
2014-04-16 12:17 ` Lee Jones
2014-04-16 14:21 ` Chanwoo Choi
2014-04-16 11:08 ` Lee Jones
2014-04-16 11:13 ` Krzysztof Kozlowski
2014-04-16 12:18 ` Lee Jones
2014-04-23 11:52 ` Krzysztof Kozlowski
2014-04-23 13:04 ` Lee Jones
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=534CD6C7.7070606@samsung.com \
--to=cw00.choi@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=broonie@kernel.org \
--cc=k.kozlowski@samsung.com \
--cc=kyungmin.park@samsung.com \
--cc=lee.jones@linaro.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=myungjoo.ham@samsung.com \
--cc=sameo@linux.intel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox