diff mbox

[linux,dev-4.10,v2,4/4] ARM: dts: aspeed: quanta-q71l: PDB FRU and mux on the PDB in front of the PSUs.

Message ID 20170613221019.100175-1-venture@google.com
State Accepted, archived
Headers show

Commit Message

Patrick Venture June 13, 2017, 10:10 p.m. UTC
Signed-off-by: Patrick Venture <venture@google.com>
---
 arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

Comments

Joel Stanley June 16, 2017, 4:51 a.m. UTC | #1
Hi Patrick,

On Wed, Jun 14, 2017 at 7:40 AM, Patrick Venture <venture@google.com> wrote:
> Signed-off-by: Patrick Venture <venture@google.com>
> ---
>  arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts | 20 +++++++++++++++++++-

I had some issues with conflicts between the 4 patch series and the
two patches you'd sent before then. So merged all of your device tree
changes for the Q71L as one patch.

Next time you're sending changes that may conflict, put them all in
the same series. It's okay to send a v2 of the series with additional
patches added.

Also, in the case of your patch #4 where you needed to make a fix,
it's convention to re-send the entire series. No worries this time
though, I got it sorted in the end.

I noticed we did not have the dts added to the Makefile, so it was not
building. I fixed that too. Please take a look a the tree and make
sure all of the device tree nodes are in there as you expect them to
be.

Cheers,

Joel

>  1 file changed, 19 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
> index 4b5047b5d592..2b01c5bcc88b 100644
> --- a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
> +++ b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
> @@ -145,7 +145,7 @@
>          *    SSD 1,
>          *    SSD 2
>          */
> -       i2cswitch@77 {
> +       i2c-switch@77 {
>                 compatible = "pca9548";
>                 #address-cells = <1>;
>                 #size-cells = <0>;
> @@ -177,6 +177,24 @@
>
>  &i2c7 {
>         status = "okay";
> +
> +       /* 0: PSU4
> +        *    PSU1
> +        *    PSU3
> +        *    PSU2
> +        */
> +       i2c-switch@70 {
> +               compatible = "pca9546";
> +               reg = <0x70>;
> +               #address-cells = <1>;
> +               #size-cells = <0>;
> +       };
> +
> +       /* PDB FRU */
> +       eeprom@52 {
> +               compatible = "atmel,24c64";
> +               reg = <0x52>;
> +       };
>  };
>
>  &i2c8 {
> --
> 2.13.1.518.g3df882009-goog
>
Patrick Venture June 16, 2017, 2:47 p.m. UTC | #2
Joel;

Thanks!  This was my first patch email series, so I appreciate your
help.  So I ran into something last night while reviewing something
that jumped out at me.  I'll need to send a new patch for the quanta
dts momentarily to address this.  In linux-4.7 the i2c-mux driver
pca9546 had a different compatibility string from 4.10.  Since we
don't own those devices on our BMC image in testing (we're mastering
them from the host via i2c over IPMI),  So, let me submit a patch to
fix that.

Patrick

On Thu, Jun 15, 2017 at 9:51 PM, Joel Stanley <joel@jms.id.au> wrote:
> Hi Patrick,
>
> On Wed, Jun 14, 2017 at 7:40 AM, Patrick Venture <venture@google.com> wrote:
>> Signed-off-by: Patrick Venture <venture@google.com>
>> ---
>>  arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts | 20 +++++++++++++++++++-
>
> I had some issues with conflicts between the 4 patch series and the
> two patches you'd sent before then. So merged all of your device tree
> changes for the Q71L as one patch.
>
> Next time you're sending changes that may conflict, put them all in
> the same series. It's okay to send a v2 of the series with additional
> patches added.
>
> Also, in the case of your patch #4 where you needed to make a fix,
> it's convention to re-send the entire series. No worries this time
> though, I got it sorted in the end.
>
> I noticed we did not have the dts added to the Makefile, so it was not
> building. I fixed that too. Please take a look a the tree and make
> sure all of the device tree nodes are in there as you expect them to
> be.
>
> Cheers,
>
> Joel
>
>>  1 file changed, 19 insertions(+), 1 deletion(-)
>>
>> diff --git a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>> index 4b5047b5d592..2b01c5bcc88b 100644
>> --- a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>> +++ b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>> @@ -145,7 +145,7 @@
>>          *    SSD 1,
>>          *    SSD 2
>>          */
>> -       i2cswitch@77 {
>> +       i2c-switch@77 {
>>                 compatible = "pca9548";
>>                 #address-cells = <1>;
>>                 #size-cells = <0>;
>> @@ -177,6 +177,24 @@
>>
>>  &i2c7 {
>>         status = "okay";
>> +
>> +       /* 0: PSU4
>> +        *    PSU1
>> +        *    PSU3
>> +        *    PSU2
>> +        */
>> +       i2c-switch@70 {
>> +               compatible = "pca9546";
>> +               reg = <0x70>;
>> +               #address-cells = <1>;
>> +               #size-cells = <0>;
>> +       };
>> +
>> +       /* PDB FRU */
>> +       eeprom@52 {
>> +               compatible = "atmel,24c64";
>> +               reg = <0x52>;
>> +       };
>>  };
>>
>>  &i2c8 {
>> --
>> 2.13.1.518.g3df882009-goog
>>
Joel Stanley June 20, 2017, 2:15 a.m. UTC | #3
On Sat, Jun 17, 2017 at 12:17 AM, Patrick Venture <venture@google.com> wrote:
> Joel;
>
> Thanks!  This was my first patch email series, so I appreciate your
> help.

No worries. You're doing a great job; keep the patches flowing.

> So I ran into something last night while reviewing something
> that jumped out at me.  I'll need to send a new patch for the quanta
> dts momentarily to address this.  In linux-4.7 the i2c-mux driver
> pca9546 had a different compatibility string from 4.10.  Since we
> don't own those devices on our BMC image in testing (we're mastering
> them from the host via i2c over IPMI),  So, let me submit a patch to
> fix that.

Cool. How are you going with the move to 4.10? Do you have a list of
drivers and tweaks that you need to get ticked off before you update?

One of my goals to help everyone stay on the latest kernel. Having
your changes in the tree sooner means the move to the next kernel tree
(probably 4.12?) will be easier.

Cheers,

Joel

>
> Patrick
>
> On Thu, Jun 15, 2017 at 9:51 PM, Joel Stanley <joel@jms.id.au> wrote:
>> Hi Patrick,
>>
>> On Wed, Jun 14, 2017 at 7:40 AM, Patrick Venture <venture@google.com> wrote:
>>> Signed-off-by: Patrick Venture <venture@google.com>
>>> ---
>>>  arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts | 20 +++++++++++++++++++-
>>
>> I had some issues with conflicts between the 4 patch series and the
>> two patches you'd sent before then. So merged all of your device tree
>> changes for the Q71L as one patch.
>>
>> Next time you're sending changes that may conflict, put them all in
>> the same series. It's okay to send a v2 of the series with additional
>> patches added.
>>
>> Also, in the case of your patch #4 where you needed to make a fix,
>> it's convention to re-send the entire series. No worries this time
>> though, I got it sorted in the end.
>>
>> I noticed we did not have the dts added to the Makefile, so it was not
>> building. I fixed that too. Please take a look a the tree and make
>> sure all of the device tree nodes are in there as you expect them to
>> be.
>>
>> Cheers,
>>
>> Joel
>>
>>>  1 file changed, 19 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>>> index 4b5047b5d592..2b01c5bcc88b 100644
>>> --- a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>>> +++ b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>>> @@ -145,7 +145,7 @@
>>>          *    SSD 1,
>>>          *    SSD 2
>>>          */
>>> -       i2cswitch@77 {
>>> +       i2c-switch@77 {
>>>                 compatible = "pca9548";
>>>                 #address-cells = <1>;
>>>                 #size-cells = <0>;
>>> @@ -177,6 +177,24 @@
>>>
>>>  &i2c7 {
>>>         status = "okay";
>>> +
>>> +       /* 0: PSU4
>>> +        *    PSU1
>>> +        *    PSU3
>>> +        *    PSU2
>>> +        */
>>> +       i2c-switch@70 {
>>> +               compatible = "pca9546";
>>> +               reg = <0x70>;
>>> +               #address-cells = <1>;
>>> +               #size-cells = <0>;
>>> +       };
>>> +
>>> +       /* PDB FRU */
>>> +       eeprom@52 {
>>> +               compatible = "atmel,24c64";
>>> +               reg = <0x52>;
>>> +       };
>>>  };
>>>
>>>  &i2c8 {
>>> --
>>> 2.13.1.518.g3df882009-goog
>>>
Patrick Venture June 20, 2017, 2:40 p.m. UTC | #4
Joel;

I haven't made the jump to 4.10 yet.  I'm in the process at the
moment.  I have a "locally" modified 4.7 that I've been using with a
specific ast2400 defconfig.  But I expect to be moved over or at least
ready to in the next couple weeks.

I do have some tweaks I need to verify and push.  The torvalds
upstream aspeed-pwm-tacho driver is a bit different from the one I've
been using as the one I've been using is machine tunable.  For
instance, my quanta test board and another system both use it, but may
be better served with different values.  For instance, in the need for
speed I reduced the fan_tach period very low and reduced the wait time
to literally a short spin loop (based on the reference driver).
However, now if the fan is going <30% of its speed, it won't return a
value at all.  But on my platform, I never expect it to be driven that
slowly unless it's failed.  It's this reason and those like it that
have kept me from pushing some of my final patches with regard to
linux.  I do have at least one more dts change to push for 4.10.  I
hope to have that out this week.

Thanks for your help.

Patrick

On Mon, Jun 19, 2017 at 7:15 PM, Joel Stanley <joel@jms.id.au> wrote:
> On Sat, Jun 17, 2017 at 12:17 AM, Patrick Venture <venture@google.com> wrote:
>> Joel;
>>
>> Thanks!  This was my first patch email series, so I appreciate your
>> help.
>
> No worries. You're doing a great job; keep the patches flowing.
>
>> So I ran into something last night while reviewing something
>> that jumped out at me.  I'll need to send a new patch for the quanta
>> dts momentarily to address this.  In linux-4.7 the i2c-mux driver
>> pca9546 had a different compatibility string from 4.10.  Since we
>> don't own those devices on our BMC image in testing (we're mastering
>> them from the host via i2c over IPMI),  So, let me submit a patch to
>> fix that.
>
> Cool. How are you going with the move to 4.10? Do you have a list of
> drivers and tweaks that you need to get ticked off before you update?
>
> One of my goals to help everyone stay on the latest kernel. Having
> your changes in the tree sooner means the move to the next kernel tree
> (probably 4.12?) will be easier.
>
> Cheers,
>
> Joel
>
>>
>> Patrick
>>
>> On Thu, Jun 15, 2017 at 9:51 PM, Joel Stanley <joel@jms.id.au> wrote:
>>> Hi Patrick,
>>>
>>> On Wed, Jun 14, 2017 at 7:40 AM, Patrick Venture <venture@google.com> wrote:
>>>> Signed-off-by: Patrick Venture <venture@google.com>
>>>> ---
>>>>  arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts | 20 +++++++++++++++++++-
>>>
>>> I had some issues with conflicts between the 4 patch series and the
>>> two patches you'd sent before then. So merged all of your device tree
>>> changes for the Q71L as one patch.
>>>
>>> Next time you're sending changes that may conflict, put them all in
>>> the same series. It's okay to send a v2 of the series with additional
>>> patches added.
>>>
>>> Also, in the case of your patch #4 where you needed to make a fix,
>>> it's convention to re-send the entire series. No worries this time
>>> though, I got it sorted in the end.
>>>
>>> I noticed we did not have the dts added to the Makefile, so it was not
>>> building. I fixed that too. Please take a look a the tree and make
>>> sure all of the device tree nodes are in there as you expect them to
>>> be.
>>>
>>> Cheers,
>>>
>>> Joel
>>>
>>>>  1 file changed, 19 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>>>> index 4b5047b5d592..2b01c5bcc88b 100644
>>>> --- a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>>>> +++ b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
>>>> @@ -145,7 +145,7 @@
>>>>          *    SSD 1,
>>>>          *    SSD 2
>>>>          */
>>>> -       i2cswitch@77 {
>>>> +       i2c-switch@77 {
>>>>                 compatible = "pca9548";
>>>>                 #address-cells = <1>;
>>>>                 #size-cells = <0>;
>>>> @@ -177,6 +177,24 @@
>>>>
>>>>  &i2c7 {
>>>>         status = "okay";
>>>> +
>>>> +       /* 0: PSU4
>>>> +        *    PSU1
>>>> +        *    PSU3
>>>> +        *    PSU2
>>>> +        */
>>>> +       i2c-switch@70 {
>>>> +               compatible = "pca9546";
>>>> +               reg = <0x70>;
>>>> +               #address-cells = <1>;
>>>> +               #size-cells = <0>;
>>>> +       };
>>>> +
>>>> +       /* PDB FRU */
>>>> +       eeprom@52 {
>>>> +               compatible = "atmel,24c64";
>>>> +               reg = <0x52>;
>>>> +       };
>>>>  };
>>>>
>>>>  &i2c8 {
>>>> --
>>>> 2.13.1.518.g3df882009-goog
>>>>
diff mbox

Patch

diff --git a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
index 4b5047b5d592..2b01c5bcc88b 100644
--- a/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
+++ b/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts
@@ -145,7 +145,7 @@ 
 	 *    SSD 1,
 	 *    SSD 2
 	 */
-	i2cswitch@77 {
+	i2c-switch@77 {
 		compatible = "pca9548";
 		#address-cells = <1>;
 		#size-cells = <0>;
@@ -177,6 +177,24 @@ 
 
 &i2c7 {
 	status = "okay";
+
+	/* 0: PSU4
+	 *    PSU1
+	 *    PSU3
+	 *    PSU2
+	 */
+	i2c-switch@70 {
+		compatible = "pca9546";
+		reg = <0x70>;
+		#address-cells = <1>;
+		#size-cells = <0>;
+	};
+
+	/* PDB FRU */
+	eeprom@52 {
+		compatible = "atmel,24c64";
+		reg = <0x52>;
+	};
 };
 
 &i2c8 {