Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1242526 > unrolled thread

[PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver

Started bySteve Twiss <stwiss.opensource@diasemi.com>
First post2015-10-08 17:30 +0200
Last post2015-10-12 18:50 +0200
Articles 6 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH V1 0/2]  Add DA9021 support to the existing DA9052/53 driver Steve Twiss <stwiss.opensource@diasemi.com> - 2015-10-08 17:30 +0200
    [PATCH V1 2/2] regulator: da9053: Add regulator support for DA9053 BB  silicon Steve Twiss <stwiss.opensource@diasemi.com> - 2015-10-08 17:30 +0200
    Re: [PATCH V1 0/2]  Add DA9021 support to the existing DA9052/53  driver Mark Brown <broonie@kernel.org> - 2015-10-09 13:40 +0200
      RE: [PATCH V1 0/2]  Add DA9021 support to the existing DA9052/53  driver "Opensource [Steve Twiss]" <stwiss.opensource@diasemi.com> - 2015-10-09 15:00 +0200
        RE: [PATCH V1 0/2]  Add DA9021 support to the existing DA9052/53  driver "Opensource [Steve Twiss]" <stwiss.opensource@diasemi.com> - 2015-10-12 10:00 +0200
        Re: [PATCH V1 0/2]  Add DA9021 support to the existing DA9052/53  driver Mark Brown <broonie@kernel.org> - 2015-10-12 18:50 +0200

#1242526 — [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver

FromSteve Twiss <stwiss.opensource@diasemi.com>
Date2015-10-08 17:30 +0200
Subject[PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver
Message-ID<qhliO-7tw-15@gated-at.bofh.it>
From: Steve Twiss <stwiss.opensource@diasemi.com>

Two patches to add missing registers and add support for DA9053-BB
silicon in the regulators component. These patches modify existing
files for the Dialog Power Management IC driver for the DA9052/53
devices.

In this patch set the following is provided:
 - [PATCH V1 1/3]: Addition of extra registers for GPIOs 8-13
 - [PATCH V1 2/3]: Add regulator support for DA9053 BB silicon

This patch applies against linux-next and v4.3-rc4 

Thank you,
Steve Twiss, Dialog Semiconductor Ltd.

Steve Twiss (2):
  mfd: da9053: Addition of extra registers for GPIOs 8-13
  regulator: da9053: Add regulator support for DA9053 BB silicon

 drivers/mfd/da9052-core.c            | 6 ++++++
 drivers/regulator/da9052-regulator.c | 1 +
 include/linux/mfd/da9052/reg.h       | 3 +++
 3 files changed, 10 insertions(+)

-- 
end-of-patch for PATCH V1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1242528 — [PATCH V1 2/2] regulator: da9053: Add regulator support for DA9053 BB silicon

FromSteve Twiss <stwiss.opensource@diasemi.com>
Date2015-10-08 17:30 +0200
Subject[PATCH V1 2/2] regulator: da9053: Add regulator support for DA9053 BB silicon
Message-ID<qhliO-7tw-25@gated-at.bofh.it>
In reply to#1242526
From: Steve Twiss <stwiss.opensource@diasemi.com>

Provide an additional case entry for DA9053_BC in the find_regulator_info()
function in order to support BB type silicon for the DA9053 device.

Signed-off-by: Steve Twiss <stwiss.opensource@diasemi.com>

---
This patch applies against linux-next and v4.3-rc4 


 drivers/regulator/da9052-regulator.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/regulator/da9052-regulator.c b/drivers/regulator/da9052-regulator.c
index e628d4c..12a25b4 100644
--- a/drivers/regulator/da9052-regulator.c
+++ b/drivers/regulator/da9052-regulator.c
@@ -381,6 +381,7 @@ static inline struct da9052_regulator_info *find_regulator_info(u8 chip_id,
 	case DA9053_AA:
 	case DA9053_BA:
 	case DA9053_BB:
+	case DA9053_BC:
 		for (i = 0; i < ARRAY_SIZE(da9053_regulator_info); i++) {
 			info = &da9053_regulator_info[i];
 			if (info->reg_desc.id == id)
-- 
end-of-patch for PATCH V1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1243282 — Re: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver

FromMark Brown <broonie@kernel.org>
Date2015-10-09 13:40 +0200
SubjectRe: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver
Message-ID<qhEbN-R9-33@gated-at.bofh.it>
In reply to#1242526

[Multipart message — attachments visible in raw view] — view raw

On Thu, Oct 08, 2015 at 04:17:52PM +0100, Steve Twiss wrote:
> From: Steve Twiss <stwiss.opensource@diasemi.com>
> 
> Two patches to add missing registers and add support for DA9053-BB
> silicon in the regulators component. These patches modify existing
> files for the Dialog Power Management IC driver for the DA9052/53
> devices.
> 
> In this patch set the following is provided:
>  - [PATCH V1 1/3]: Addition of extra registers for GPIOs 8-13
>  - [PATCH V1 2/3]: Add regulator support for DA9053 BB silicon
> 
> This patch applies against linux-next and v4.3-rc4 

Are there any dependencies between the two patches?

[toc] | [prev] | [next] | [standalone]


#1243324 — RE: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver

From"Opensource [Steve Twiss]" <stwiss.opensource@diasemi.com>
Date2015-10-09 15:00 +0200
SubjectRE: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver
Message-ID<qhFrc-2zB-9@gated-at.bofh.it>
In reply to#1243282
On 09 October 2015 12:36 Mark Brown wrote:

> To: Opensource [Steve Twiss]
> Cc: LINUXKERNEL; Lee Jones; Liam Girdwood; Samuel Ortiz; David Dajun
> Chen; Support Opensource
> Subject: Re: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver
> 
> On Thu, Oct 08, 2015 at 04:17:52PM +0100, Steve Twiss wrote:
> > From: Steve Twiss <stwiss.opensource@diasemi.com>
> >
> > Two patches to add missing registers and add support for DA9053-BB
> > silicon in the regulators component. These patches modify existing
> > files for the Dialog Power Management IC driver for the DA9052/53
> > devices.
> >
> > In this patch set the following is provided:
> >  - [PATCH V1 1/3]: Addition of extra registers for GPIOs 8-13
> >  - [PATCH V1 2/3]: Add regulator support for DA9053 BB silicon
> >
> > This patch applies against linux-next and v4.3-rc4
> 
> Are there any dependencies between the two patches?

Nope. 
I just thought because they were for MFD and regulators I would separate them.
Do you want me to merge them into a single patch and re-send?

Regards,
Steve
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1244458 — RE: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver

From"Opensource [Steve Twiss]" <stwiss.opensource@diasemi.com>
Date2015-10-12 10:00 +0200
SubjectRE: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver
Message-ID<qiGbx-Yi-11@gated-at.bofh.it>
In reply to#1243324
On 09 October 2015 13:52 Steve Twiss wrote:

> To: Mark Brown; Lee Jones
> Cc: LINUXKERNEL; Liam Girdwood; Samuel Ortiz; David Dajun Chen; Support Opensource
> Subject: RE: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver
> 
> On 09 October 2015 12:36 Mark Brown wrote:
> 
> > To: Opensource [Steve Twiss]
> > Cc: LINUXKERNEL; Lee Jones; Liam Girdwood; Samuel Ortiz; David Dajun
> > Chen; Support Opensource
> > Subject: Re: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver
> >

The title of my previous cover note is just wrong and just doesn't make sense!
They were supposed to be fixes for the DA9053 driver.

> > On Thu, Oct 08, 2015 at 04:17:52PM +0100, Steve Twiss wrote:
> > > From: Steve Twiss <stwiss.opensource@diasemi.com>
> > >
> > > Two patches to add missing registers and add support for DA9053-BB
> > > silicon in the regulators component. These patches modify existing
> > > files for the Dialog Power Management IC driver for the DA9052/53
> > > devices.
> > >
> > > In this patch set the following is provided:
> > >  - [PATCH V1 1/3]: Addition of extra registers for GPIOs 8-13
> > >  - [PATCH V1 2/3]: Add regulator support for DA9053 BB silicon
> > >
> > > This patch applies against linux-next and v4.3-rc4

Mark & Lee, these two patches for DA9052/3 are correct, but at your discretion,
you are welcome to ignore them and I will resend with a cover note that makes
sense later.

I shouldn't submit when I have the flu.

Steve
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1244909 — Re: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver

FromMark Brown <broonie@kernel.org>
Date2015-10-12 18:50 +0200
SubjectRe: [PATCH V1 0/2] Add DA9021 support to the existing DA9052/53 driver
Message-ID<qiOsp-4II-7@gated-at.bofh.it>
In reply to#1243324

[Multipart message — attachments visible in raw view] — view raw

On Fri, Oct 09, 2015 at 12:52:00PM +0000, Opensource [Steve Twiss] wrote:
> On 09 October 2015 12:36 Mark Brown wrote:

> > Are there any dependencies between the two patches?

> Nope. 
> I just thought because they were for MFD and regulators I would separate them.
> Do you want me to merge them into a single patch and re-send?

No, the point is that if you send a series the assumption will normally
be that later patches depend on earlier patches so a cross tree merge or
carrying things in a non-default tree is required to get everything
integrated.

If there are no dependencies it's clearer to just send each patch
individually.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web