Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1176434 > unrolled thread
| Started by | Antoine Tenart <antoine.tenart@free-electrons.com> |
|---|---|
| First post | 2015-07-03 11:30 +0200 |
| Last post | 2015-07-03 16:40 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 1/4] phy: berlin-usb: fix divider for BG2CD Antoine Tenart <antoine.tenart@free-electrons.com> - 2015-07-03 11:30 +0200
Re: [PATCH 1/4] phy: berlin-usb: fix divider for BG2CD Thomas Hebb <tommyhebb@gmail.com> - 2015-07-03 16:40 +0200
| From | Antoine Tenart <antoine.tenart@free-electrons.com> |
|---|---|
| Date | 2015-07-03 11:30 +0200 |
| Subject | Re: [PATCH 1/4] phy: berlin-usb: fix divider for BG2CD |
| Message-ID | <pI5se-6JS-25@gated-at.bofh.it> |
Thomas,
On Thu, Jul 02, 2015 at 01:04:18AM -0400, Thomas Hebb wrote:
> The marvell,berlin2cd-usb-phy compatible incorrectly sets the PLL
> divider to BG2's value instead of BG2CD/BG2Q's. Change it to the right
> value.
>
> Signed-off-by: Thomas Hebb <tommyhebb@gmail.com>
> Cc: stable@vger.kernel.org
Only this one is sent to stable? The BG2 won't be fixed in stable?
Antoine
> ---
> drivers/phy/phy-berlin-usb.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/phy/phy-berlin-usb.c b/drivers/phy/phy-berlin-usb.c
> index c6fc95b..ab54f28 100644
> --- a/drivers/phy/phy-berlin-usb.c
> +++ b/drivers/phy/phy-berlin-usb.c
> @@ -106,8 +106,8 @@
> static const u32 phy_berlin_pll_dividers[] = {
> /* Berlin 2 */
> CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54),
> - /* Berlin 2CD */
> - CLK_REF_DIV(0x6) | FEEDBACK_CLK_DIV(0x55),
> + /* Berlin 2CD/Q */
> + CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54),
> };
>
> struct phy_berlin_usb_priv {
> --
> 2.4.4
>
--
Antoine Ténart, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
--
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]
| From | Thomas Hebb <tommyhebb@gmail.com> |
|---|---|
| Date | 2015-07-03 16:40 +0200 |
| Message-ID | <pIaid-1dJ-21@gated-at.bofh.it> |
| In reply to | #1176434 |
On 07/03/2015 05:20 AM, Antoine Tenart wrote:
> Thomas,
>
> On Thu, Jul 02, 2015 at 01:04:18AM -0400, Thomas Hebb wrote:
>> The marvell,berlin2cd-usb-phy compatible incorrectly sets the PLL
>> divider to BG2's value instead of BG2CD/BG2Q's. Change it to the right
>> value.
>>
>> Signed-off-by: Thomas Hebb <tommyhebb@gmail.com>
>> Cc: stable@vger.kernel.org
>
> Only this one is sent to stable? The BG2 won't be fixed in stable?
>
> Antoine
Since BG2 doesn't currently have its USB PHY enabled in device tree, I
didn't see any reason to mark that fix for stable; we'd have to wait
until next cycle for it to be of use anyway. This is the same division
that Sebastian suggested.
I admit it looks a bit odd to have both dividers be the same. If you
want me to mark the other patches for stable for clarity reasons, I'm
happy to do that.
-Tom
>> ---
>> drivers/phy/phy-berlin-usb.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/phy/phy-berlin-usb.c b/drivers/phy/phy-berlin-usb.c
>> index c6fc95b..ab54f28 100644
>> --- a/drivers/phy/phy-berlin-usb.c
>> +++ b/drivers/phy/phy-berlin-usb.c
>> @@ -106,8 +106,8 @@
>> static const u32 phy_berlin_pll_dividers[] = {
>> /* Berlin 2 */
>> CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54),
>> - /* Berlin 2CD */
>> - CLK_REF_DIV(0x6) | FEEDBACK_CLK_DIV(0x55),
>> + /* Berlin 2CD/Q */
>> + CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54),
>> };
>>
>> struct phy_berlin_usb_priv {
>> --
>> 2.4.4
>>
>
--
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] | [standalone]
Back to top | Article view | linux.kernel
csiph-web