* [RESEND PATCH v2 0/2] MAX77693: add initial MAX77693 MFD driver
@ 2012-03-13 5:28 Chanwoo Choi
2012-03-19 5:13 ` Chanwoo Choi
0 siblings, 1 reply; 6+ messages in thread
From: Chanwoo Choi @ 2012-03-13 5:28 UTC (permalink / raw)
To: sameo; +Cc: linux-kernel, myungjoo.ham, kyungmin.park
MAX77693 is sub PMIC(Power Management IC) working with other main PMIC.
It has several features:
-PMIC
-MUIC(Micro USB Interface Controller)
-Camera flash LED control
-Haptic motor control
This patch adds initial basis for several devices.
---
Changes for v2:
- with comments from Mark
- use devm_kzalloc rather than kzalloc
- print device ID read from device
Donggeun Kim (2):
MFD: MAX77693: add MAX77693 MFD driver
MFD: MAX77693: add IRQ handler
drivers/mfd/Kconfig | 12 ++
drivers/mfd/Makefile | 1 +
drivers/mfd/max77693-irq.c | 307
++++++++++++++++++++++++++++++++++
drivers/mfd/max77693.c | 256 ++++++++++++++++++++++++++++
include/linux/mfd/max77693-private.h | 221 ++++++++++++++++++++++++
include/linux/mfd/max77693.h | 38 ++++
6 files changed, 835 insertions(+), 0 deletions(-)
create mode 100644 drivers/mfd/max77693-irq.c
create mode 100644 drivers/mfd/max77693.c
create mode 100644 include/linux/mfd/max77693-private.h
create mode 100644 include/linux/mfd/max77693.h
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [RESEND PATCH v2 0/2] MAX77693: add initial MAX77693 MFD driver 2012-03-13 5:28 [RESEND PATCH v2 0/2] MAX77693: add initial MAX77693 MFD driver Chanwoo Choi @ 2012-03-19 5:13 ` Chanwoo Choi 2012-03-20 1:02 ` Chanwoo Choi 2012-03-20 15:43 ` Samuel Ortiz 0 siblings, 2 replies; 6+ messages in thread From: Chanwoo Choi @ 2012-03-19 5:13 UTC (permalink / raw) To: sameo; +Cc: linux-kernel, myungjoo.ham, kyungmin.park Dear Samuel, I posted following patchset last week. Do you have any comment about this patchset? Thank you, Chanwoo Choi On 03/13/2012 02:28 PM, Chanwoo Choi wrote: > MAX77693 is sub PMIC(Power Management IC) working with other main PMIC. > It has several features: > -PMIC > -MUIC(Micro USB Interface Controller) > -Camera flash LED control > -Haptic motor control > > This patch adds initial basis for several devices. > --- > Changes for v2: > - with comments from Mark > - use devm_kzalloc rather than kzalloc > - print device ID read from device > > Donggeun Kim (2): > MFD: MAX77693: add MAX77693 MFD driver > MFD: MAX77693: add IRQ handler > > drivers/mfd/Kconfig | 12 ++ > drivers/mfd/Makefile | 1 + > drivers/mfd/max77693-irq.c | 307 > ++++++++++++++++++++++++++++++++++ > drivers/mfd/max77693.c | 256 ++++++++++++++++++++++++++++ > include/linux/mfd/max77693-private.h | 221 ++++++++++++++++++++++++ > include/linux/mfd/max77693.h | 38 ++++ > 6 files changed, 835 insertions(+), 0 deletions(-) > create mode 100644 drivers/mfd/max77693-irq.c > create mode 100644 drivers/mfd/max77693.c > create mode 100644 include/linux/mfd/max77693-private.h > create mode 100644 include/linux/mfd/max77693.h ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RESEND PATCH v2 0/2] MAX77693: add initial MAX77693 MFD driver 2012-03-19 5:13 ` Chanwoo Choi @ 2012-03-20 1:02 ` Chanwoo Choi 2012-03-20 15:43 ` Samuel Ortiz 1 sibling, 0 replies; 6+ messages in thread From: Chanwoo Choi @ 2012-03-20 1:02 UTC (permalink / raw) To: sameo@linux.intel.com Cc: linux-kernel@vger.kernel.org, myungjoo.ham@samsung.com, Kyungmin Park Dear Samuel, I posted following patchset last week. Do you have any comment about this patchset? Best Regards, Chanwoo Choi On 03/13/2012 02:28 PM, Chanwoo Choi wrote: > MAX77693 is sub PMIC(Power Management IC) working with other main PMIC. > It has several features: > -PMIC > -MUIC(Micro USB Interface Controller) > -Camera flash LED control > -Haptic motor control > > This patch adds initial basis for several devices. > --- > Changes for v2: > - with comments from Mark > - use devm_kzalloc rather than kzalloc > - print device ID read from device > > Donggeun Kim (2): > MFD: MAX77693: add MAX77693 MFD driver > MFD: MAX77693: add IRQ handler > > drivers/mfd/Kconfig | 12 ++ > drivers/mfd/Makefile | 1 + > drivers/mfd/max77693-irq.c | 307 > ++++++++++++++++++++++++++++++++++ > drivers/mfd/max77693.c | 256 ++++++++++++++++++++++++++++ > include/linux/mfd/max77693-private.h | 221 ++++++++++++++++++++++++ > include/linux/mfd/max77693.h | 38 ++++ > 6 files changed, 835 insertions(+), 0 deletions(-) > create mode 100644 drivers/mfd/max77693-irq.c > create mode 100644 drivers/mfd/max77693.c > create mode 100644 include/linux/mfd/max77693-private.h > create mode 100644 include/linux/mfd/max77693.h ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RESEND PATCH v2 0/2] MAX77693: add initial MAX77693 MFD driver 2012-03-19 5:13 ` Chanwoo Choi 2012-03-20 1:02 ` Chanwoo Choi @ 2012-03-20 15:43 ` Samuel Ortiz 2012-03-23 0:05 ` Chanwoo Choi 2012-05-11 7:17 ` Chanwoo Choi 1 sibling, 2 replies; 6+ messages in thread From: Samuel Ortiz @ 2012-03-20 15:43 UTC (permalink / raw) To: Chanwoo Choi; +Cc: linux-kernel, myungjoo.ham, kyungmin.park Hi Choi, On Mon, Mar 19, 2012 at 02:13:32PM +0900, Chanwoo Choi wrote: > Dear Samuel, > > I posted following patchset last week. > Do you have any comment about this patchset? Not yet. This one will not make it to the next merge window, I'll queue it for the 3.5 one. Cheers, Samuel. -- Intel Open Source Technology Centre http://oss.intel.com/ ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RESEND PATCH v2 0/2] MAX77693: add initial MAX77693 MFD driver 2012-03-20 15:43 ` Samuel Ortiz @ 2012-03-23 0:05 ` Chanwoo Choi 2012-05-11 7:17 ` Chanwoo Choi 1 sibling, 0 replies; 6+ messages in thread From: Chanwoo Choi @ 2012-03-23 0:05 UTC (permalink / raw) To: Samuel Ortiz; +Cc: linux-kernel, myungjoo.ham, kyungmin.park On 03/21/2012 12:43 AM, Samuel Ortiz wrote: > Hi Choi, > > On Mon, Mar 19, 2012 at 02:13:32PM +0900, Chanwoo Choi wrote: >> Dear Samuel, >> >> I posted following patchset last week. >> Do you have any comment about this patchset? > Not yet. This one will not make it to the next merge window, I'll queue it for > the 3.5 one. OK, I understand and thanks for your reply. Best Regards, Chanwoo Choi ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RESEND PATCH v2 0/2] MAX77693: add initial MAX77693 MFD driver 2012-03-20 15:43 ` Samuel Ortiz 2012-03-23 0:05 ` Chanwoo Choi @ 2012-05-11 7:17 ` Chanwoo Choi 1 sibling, 0 replies; 6+ messages in thread From: Chanwoo Choi @ 2012-05-11 7:17 UTC (permalink / raw) To: Samuel Ortiz; +Cc: linux-kernel, myungjoo.ham, kyungmin.park Dear Samuel, On 03/21/2012 12:43 AM, Samuel Ortiz wrote: > Hi Choi, > > On Mon, Mar 19, 2012 at 02:13:32PM +0900, Chanwoo Choi wrote: >> Dear Samuel, >> >> I posted following patchset last week. >> Do you have any comment about this patchset? > Not yet. This one will not make it to the next merge window, I'll queue it for > the 3.5 one. > > Cheers, > Samuel. > I did post MAX77693 mfd driver and received your reply which you'll queue it for the 3.5 one. So, I check all branch of below git repository but, I can't find MAX77693 mfd driver patch. - http://git.kernel.org/?p=linux/kernel/git/sameo/mfd-2.6.git;a=summary I will post additional patch(hatpic, led, safeout, charger) related to MAX77693. Then, if possible, I'd like to know when max77693 mfd driver is applied. Thank you, Best Regards, Chanwoo Choi ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-05-11 7:18 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-03-13 5:28 [RESEND PATCH v2 0/2] MAX77693: add initial MAX77693 MFD driver Chanwoo Choi 2012-03-19 5:13 ` Chanwoo Choi 2012-03-20 1:02 ` Chanwoo Choi 2012-03-20 15:43 ` Samuel Ortiz 2012-03-23 0:05 ` Chanwoo Choi 2012-05-11 7:17 ` Chanwoo Choi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox