Re: [PATCH v3 4/6] phy: add support for USB cluster on the Armada 375 SoC

2014-11-13 Thread Gregory CLEMENT
Hi, [...] + +static struct armada375_cluster_phy usb_cluster_phy; don't use global variables. + +static int armada375_usb_phy_init(struct phy *phy) +{ +struct armada375_cluster_phy *cluster_phy = phy_get_drvdata(phy); +u32 reg; + +reg = readl(cluster_phy-reg); +if

[PATCH v3 4/6] phy: add support for USB cluster on the Armada 375 SoC

2014-11-12 Thread Gregory CLEMENT
The Armada 375 SoC comes with an USB2 host and device controller and an USB3 controller. The USB cluster control register allows to manage common features of both USB controllers. This commit adds a driver integrated in the generic PHY framework to control this USB cluster feature.

Re: [PATCH v3 4/6] phy: add support for USB cluster on the Armada 375 SoC

2014-11-12 Thread Kishon Vijay Abraham I
Hi, On Wednesday 12 November 2014 03:27 PM, Gregory CLEMENT wrote: The Armada 375 SoC comes with an USB2 host and device controller and an USB3 controller. The USB cluster control register allows to manage common features of both USB controllers. This commit adds a driver integrated in the