Commit c7a30002 authored by Thomas Hebb's avatar Thomas Hebb Committed by Kamal Mostafa

phy: berlin-usb: fix divider for BG2CD

commit 96696a9d upstream.

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: default avatarThomas Hebb <tommyhebb@gmail.com>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
parent 083943cd
...@@ -109,8 +109,8 @@ ...@@ -109,8 +109,8 @@
static const u32 phy_berlin_pll_dividers[] = { static const u32 phy_berlin_pll_dividers[] = {
/* Berlin 2 */ /* Berlin 2 */
CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54), CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54),
/* Berlin 2CD */ /* Berlin 2CD/Q */
CLK_REF_DIV(0x6) | FEEDBACK_CLK_DIV(0x55), CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54),
}; };
struct phy_berlin_usb_priv { struct phy_berlin_usb_priv {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment