devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/5]  ARM: OMAP: DTS/HWMOD/defconfig changes for USB3
@ 2013-08-21 14:31 Kishon Vijay Abraham I
  2013-08-21 14:31 ` [PATCH v3 1/5] arm: omap5: dts: fix reg property size Kishon Vijay Abraham I
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-21 14:31 UTC (permalink / raw)
  To: bcousson, tony, balbi
  Cc: rob.herring, pawel.moll, mark.rutland, swarren, ian.campbell,
	linux, javier.martinez, devicetree, kishon, linux-usb,
	linux-kernel, linux-omap

From: Felipe Balbi <balbi@ti.com>

With these patches (plus a few others on the driver side which
will be going upstream soon) I could get functional USB3 with my
omap5-uevm platform.

Changes since v2:
	- added dt properties for enabling vbus/id interrupts and fixed
vbus-supply value after SMPS10 is modeled as 2 regulators

Changes since v1:
	- split ocp2scp dts and hwmod data into separate patches
	- reorganize the series in order to group DTS, hwmod and defconfig
	  changes

Benoit Cousson (1):
  arm: omap5: hwmod: add missing ocp2scp hwmod data

Felipe Balbi (4):
  arm: omap5: dts: fix reg property size
  arm: omap5: dts: fix ocp2scp DTS data
  arm: omap5: dts: add palmas-usb node
  arm: omap2plus_defconfig: enable dwc3 and dependencies

 arch/arm/boot/dts/omap5-uevm.dts           |   12 ++++++++
 arch/arm/boot/dts/omap5.dtsi               |    9 +++---
 arch/arm/configs/omap2plus_defconfig       |    9 ++++++
 arch/arm/mach-omap2/omap_hwmod_54xx_data.c |   45 ++++++++++++++++++++++++++++
 4 files changed, 71 insertions(+), 4 deletions(-)

-- 
1.7.10.4


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH v3 1/5] arm: omap5: dts: fix reg property size
  2013-08-21 14:31 [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Kishon Vijay Abraham I
@ 2013-08-21 14:31 ` Kishon Vijay Abraham I
  2013-08-21 14:31 ` [PATCH v3 2/5] arm: omap5: dts: fix ocp2scp DTS data Kishon Vijay Abraham I
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-21 14:31 UTC (permalink / raw)
  To: bcousson, tony, balbi
  Cc: rob.herring, pawel.moll, mark.rutland, swarren, ian.campbell,
	linux, javier.martinez, devicetree, kishon, linux-usb,
	linux-kernel, linux-omap

From: Felipe Balbi <balbi@ti.com>

USB3 block has a 64KiB space, another 64KiB is
used for the wrapper.

Without this change, resource_size() will get
confused and driver won't probe because size
will be negative.

Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/boot/dts/omap5.dtsi |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
index e643620..5c99f19 100644
--- a/arch/arm/boot/dts/omap5.dtsi
+++ b/arch/arm/boot/dts/omap5.dtsi
@@ -637,7 +637,7 @@
 		omap_dwc3@4a020000 {
 			compatible = "ti,dwc3";
 			ti,hwmods = "usb_otg_ss";
-			reg = <0x4a020000 0x1000>;
+			reg = <0x4a020000 0x10000>;
 			interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
 			#address-cells = <1>;
 			#size-cells = <1>;
@@ -645,7 +645,7 @@
 			ranges;
 			dwc3@4a030000 {
 				compatible = "synopsys,dwc3";
-				reg = <0x4a030000 0x1000>;
+				reg = <0x4a030000 0x10000>;
 				interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
 				usb-phy = <&usb2_phy>, <&usb3_phy>;
 				tx-fifo-resize;
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v3 2/5] arm: omap5: dts: fix ocp2scp DTS data
  2013-08-21 14:31 [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Kishon Vijay Abraham I
  2013-08-21 14:31 ` [PATCH v3 1/5] arm: omap5: dts: fix reg property size Kishon Vijay Abraham I
@ 2013-08-21 14:31 ` Kishon Vijay Abraham I
  2013-08-21 14:31 ` [PATCH v3 3/5] arm: omap5: dts: add palmas-usb node Kishon Vijay Abraham I
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-21 14:31 UTC (permalink / raw)
  To: bcousson, tony, balbi
  Cc: rob.herring, pawel.moll, mark.rutland, swarren, ian.campbell,
	linux, javier.martinez, devicetree, kishon, linux-usb,
	linux-kernel, linux-omap

From: Felipe Balbi <balbi@ti.com>

this patch fixes the DTS data for ocp2scp
node by adding the missing reg property.

Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/boot/dts/omap5.dtsi |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
index 5c99f19..4e41409 100644
--- a/arch/arm/boot/dts/omap5.dtsi
+++ b/arch/arm/boot/dts/omap5.dtsi
@@ -652,10 +652,11 @@
 			};
 		};
 
-		ocp2scp {
+		ocp2scp@4a080000 {
 			compatible = "ti,omap-ocp2scp";
 			#address-cells = <1>;
 			#size-cells = <1>;
+			reg = <0x4a080000 0x20>;
 			ranges;
 			ti,hwmods = "ocp2scp1";
 			usb2_phy: usb2phy@4a084000 {
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v3 3/5] arm: omap5: dts: add palmas-usb node
  2013-08-21 14:31 [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Kishon Vijay Abraham I
  2013-08-21 14:31 ` [PATCH v3 1/5] arm: omap5: dts: fix reg property size Kishon Vijay Abraham I
  2013-08-21 14:31 ` [PATCH v3 2/5] arm: omap5: dts: fix ocp2scp DTS data Kishon Vijay Abraham I
@ 2013-08-21 14:31 ` Kishon Vijay Abraham I
  2013-08-21 14:31 ` [PATCH v3 4/5] arm: omap5: hwmod: add missing ocp2scp hwmod data Kishon Vijay Abraham I
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-21 14:31 UTC (permalink / raw)
  To: bcousson, tony, balbi
  Cc: rob.herring, pawel.moll, mark.rutland, swarren, ian.campbell,
	linux, javier.martinez, devicetree, kishon, linux-usb,
	linux-kernel, linux-omap

From: Felipe Balbi <balbi@ti.com>

Without this node, there will be no palmas
driver to notify dwc3 that a cable has
been connected and, without that, dwc3
will never initialize.

[ kishon@ti.com: added dt properties for enabling vbus/id interrupts and fixed
vbus-supply value after SMPS10 is modeled as 2 regulators ]

Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/boot/dts/omap5-uevm.dts |   12 ++++++++++++
 arch/arm/boot/dts/omap5.dtsi     |    2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/omap5-uevm.dts b/arch/arm/boot/dts/omap5-uevm.dts
index 65d7b60..2a3f363 100644
--- a/arch/arm/boot/dts/omap5-uevm.dts
+++ b/arch/arm/boot/dts/omap5-uevm.dts
@@ -272,6 +272,13 @@
 		interrupt-controller;
 		#interrupt-cells = <2>;
 
+		extcon_usb3: palmas_usb {
+			compatible = "ti,palmas-usb-vid";
+			ti,enable-vbus-detection;
+			ti,enable-id-detection;
+			ti,wakeup;
+		};
+
 		palmas_pmic {
 			compatible = "ti,palmas-pmic";
 			interrupt-parent = <&palmas>;
@@ -470,6 +477,11 @@
 	phys = <0 &hsusb2_phy &hsusb3_phy>;
 };
 
+&usb3 {
+	extcon = <&extcon_usb3>;
+	vbus-supply = <&smps10_out1_reg>;
+};
+
 &mcspi1 {
 
 };
diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
index 4e41409..1659246 100644
--- a/arch/arm/boot/dts/omap5.dtsi
+++ b/arch/arm/boot/dts/omap5.dtsi
@@ -634,7 +634,7 @@
 			ti,type = <2>;
 		};
 
-		omap_dwc3@4a020000 {
+		usb3: omap_dwc3@4a020000 {
 			compatible = "ti,dwc3";
 			ti,hwmods = "usb_otg_ss";
 			reg = <0x4a020000 0x10000>;
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v3 4/5] arm: omap5: hwmod: add missing ocp2scp hwmod data
  2013-08-21 14:31 [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Kishon Vijay Abraham I
                   ` (2 preceding siblings ...)
  2013-08-21 14:31 ` [PATCH v3 3/5] arm: omap5: dts: add palmas-usb node Kishon Vijay Abraham I
@ 2013-08-21 14:31 ` Kishon Vijay Abraham I
  2013-08-21 14:31 ` [PATCH v3 5/5] arm: omap2plus_defconfig: enable dwc3 and dependencies Kishon Vijay Abraham I
  2013-08-21 14:54 ` [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Benoit Cousson
  5 siblings, 0 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-21 14:31 UTC (permalink / raw)
  To: bcousson, tony, balbi
  Cc: rob.herring, pawel.moll, mark.rutland, swarren, ian.campbell,
	linux, javier.martinez, devicetree, kishon, linux-usb,
	linux-kernel, linux-omap

From: Benoit Cousson <bcousson@baylibre.com>

without that hwmod data, USB3 will not in OMAP5 boards.

Signed-off-by: Benoit Cousson <bcousson@baylibre.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/mach-omap2/omap_hwmod_54xx_data.c |   45 ++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/arch/arm/mach-omap2/omap_hwmod_54xx_data.c b/arch/arm/mach-omap2/omap_hwmod_54xx_data.c
index 3c70f5c..33ae523 100644
--- a/arch/arm/mach-omap2/omap_hwmod_54xx_data.c
+++ b/arch/arm/mach-omap2/omap_hwmod_54xx_data.c
@@ -1114,6 +1114,42 @@ static struct omap_hwmod omap54xx_mpu_hwmod = {
 };
 
 /*
+ * 'ocp2scp' class
+ * bridge to transform ocp interface protocol to scp (serial control port)
+ * protocol
+ */
+
+static struct omap_hwmod_class_sysconfig omap54xx_ocp2scp_sysc = {
+	.rev_offs	= 0x0000,
+	.sysc_offs	= 0x0010,
+	.syss_offs	= 0x0014,
+	.sysc_flags	= (SYSC_HAS_AUTOIDLE | SYSC_HAS_SIDLEMODE |
+			SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS),
+	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
+	.sysc_fields	= &omap_hwmod_sysc_type1,
+};
+
+static struct omap_hwmod_class omap54xx_ocp2scp_hwmod_class = {
+	.name	= "ocp2scp",
+	.sysc	= &omap54xx_ocp2scp_sysc,
+};
+
+/* ocp2scp1 */
+static struct omap_hwmod omap54xx_ocp2scp1_hwmod = {
+	.name		= "ocp2scp1",
+	.class		= &omap54xx_ocp2scp_hwmod_class,
+	.clkdm_name	= "l3init_clkdm",
+	.main_clk	= "l4_root_clk_div",
+	.prcm = {
+		.omap4 = {
+			.clkctrl_offs = OMAP54XX_CM_L3INIT_OCP2SCP1_CLKCTRL_OFFSET,
+			.context_offs = OMAP54XX_RM_L3INIT_OCP2SCP1_CONTEXT_OFFSET,
+			.modulemode   = MODULEMODE_HWCTRL,
+		},
+	},
+};
+
+/*
  * 'timer' class
  * general purpose timer module with accurate 1ms tick
  * This class contains several variants: ['timer_1ms', 'timer']
@@ -1920,6 +1956,14 @@ static struct omap_hwmod_ocp_if omap54xx_l4_cfg__mpu = {
 	.user		= OCP_USER_MPU | OCP_USER_SDMA,
 };
 
+/* l4_cfg -> ocp2scp1 */
+static struct omap_hwmod_ocp_if omap54xx_l4_cfg__ocp2scp1 = {
+	.master		= &omap54xx_l4_cfg_hwmod,
+	.slave		= &omap54xx_ocp2scp1_hwmod,
+	.clk		= "l4_root_clk_div",
+	.user		= OCP_USER_MPU | OCP_USER_SDMA,
+};
+
 /* l4_wkup -> timer1 */
 static struct omap_hwmod_ocp_if omap54xx_l4_wkup__timer1 = {
 	.master		= &omap54xx_l4_wkup_hwmod,
@@ -2122,6 +2166,7 @@ static struct omap_hwmod_ocp_if *omap54xx_hwmod_ocp_ifs[] __initdata = {
 	&omap54xx_l4_per__mmc4,
 	&omap54xx_l4_per__mmc5,
 	&omap54xx_l4_cfg__mpu,
+	&omap54xx_l4_cfg__ocp2scp1,
 	&omap54xx_l4_wkup__timer1,
 	&omap54xx_l4_per__timer2,
 	&omap54xx_l4_per__timer3,
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v3 5/5] arm: omap2plus_defconfig: enable dwc3 and dependencies
  2013-08-21 14:31 [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Kishon Vijay Abraham I
                   ` (3 preceding siblings ...)
  2013-08-21 14:31 ` [PATCH v3 4/5] arm: omap5: hwmod: add missing ocp2scp hwmod data Kishon Vijay Abraham I
@ 2013-08-21 14:31 ` Kishon Vijay Abraham I
  2013-08-21 14:54 ` [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Benoit Cousson
  5 siblings, 0 replies; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-21 14:31 UTC (permalink / raw)
  To: bcousson, tony, balbi
  Cc: rob.herring, pawel.moll, mark.rutland, swarren, ian.campbell,
	linux, javier.martinez, devicetree, kishon, linux-usb,
	linux-kernel, linux-omap

From: Felipe Balbi <balbi@ti.com>

DWC3 enables USB3 functionality for OMAP5 boards,
it's safe to enable those drivers in omap2plus_defconfig.

Signed-off-by: Felipe Balbi <balbi@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 5339e6a..aed3cce 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -81,6 +81,7 @@ CONFIG_CMA=y
 CONFIG_CONNECTOR=y
 CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_OMAP_OCP2SCP=y
 CONFIG_MTD=y
 CONFIG_MTD_CMDLINE_PARTS=y
 CONFIG_MTD_CHAR=y
@@ -167,9 +168,11 @@ CONFIG_THERMAL_GOV_USER_SPACE=y
 CONFIG_CPU_THERMAL=y
 CONFIG_OMAP_WATCHDOG=y
 CONFIG_TWL4030_WATCHDOG=y
+CONFIG_MFD_PALMAS=y
 CONFIG_MFD_TPS65217=y
 CONFIG_MFD_TPS65910=y
 CONFIG_TWL6040_CORE=y
+CONFIG_REGULATOR_PALMAS=y
 CONFIG_REGULATOR_TWL4030=y
 CONFIG_REGULATOR_TPS65023=y
 CONFIG_REGULATOR_TPS6507X=y
@@ -222,10 +225,14 @@ CONFIG_USB_MON=y
 CONFIG_USB_WDM=y
 CONFIG_USB_STORAGE=y
 CONFIG_USB_LIBUSUAL=y
+CONFIG_USB_DWC3=m
+CONFIG_USB_DWC3_OMAP=m
 CONFIG_USB_TEST=y
 CONFIG_USB_PHY=y
 CONFIG_NOP_USB_XCEIV=y
 CONFIG_USB_GADGET=y
+CONFIG_OMAP_USB2=y
+CONFIG_OMAP_USB3=y
 CONFIG_USB_GADGET_DEBUG=y
 CONFIG_USB_GADGET_DEBUG_FILES=y
 CONFIG_USB_GADGET_DEBUG_FS=y
@@ -258,6 +265,8 @@ CONFIG_TI_THERMAL=y
 CONFIG_OMAP4_THERMAL=y
 CONFIG_OMAP5_THERMAL=y
 CONFIG_DRA752_THERMAL=y
+CONFIG_EXTCON=y
+CONFIG_EXTCON_PALMAS=y
 CONFIG_EXT2_FS=y
 CONFIG_EXT3_FS=y
 # CONFIG_EXT3_FS_XATTR is not set
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v3 0/5]  ARM: OMAP: DTS/HWMOD/defconfig changes for USB3
  2013-08-21 14:31 [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Kishon Vijay Abraham I
                   ` (4 preceding siblings ...)
  2013-08-21 14:31 ` [PATCH v3 5/5] arm: omap2plus_defconfig: enable dwc3 and dependencies Kishon Vijay Abraham I
@ 2013-08-21 14:54 ` Benoit Cousson
  5 siblings, 0 replies; 7+ messages in thread
From: Benoit Cousson @ 2013-08-21 14:54 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, tony
  Cc: balbi, rob.herring, pawel.moll, mark.rutland, swarren,
	ian.campbell, linux, javier.martinez, devicetree, linux-usb,
	linux-kernel, linux-omap

Hi Kishon,

On 21/08/2013 16:31, Kishon Vijay Abraham I wrote:
> From: Felipe Balbi <balbi@ti.com>
>
> With these patches (plus a few others on the driver side which
> will be going upstream soon) I could get functional USB3 with my
> omap5-uevm platform.
>
> Changes since v2:
> 	- added dt properties for enabling vbus/id interrupts and fixed
> vbus-supply value after SMPS10 is modeled as 2 regulators

Excellent, thanks for that super quick update. I've just applied it and 
will try to push it ASAP.
I've just slightly changed the subjects to have both ARM and OMAP in 
capital letters for consistency.

Tony,

I will update my pull-request now before Kevin and Olof pulled it.

Regards,
Benoit


> Changes since v1:
> 	- split ocp2scp dts and hwmod data into separate patches
> 	- reorganize the series in order to group DTS, hwmod and defconfig
> 	  changes
>
> Benoit Cousson (1):
>    arm: omap5: hwmod: add missing ocp2scp hwmod data
>
> Felipe Balbi (4):
>    arm: omap5: dts: fix reg property size
>    arm: omap5: dts: fix ocp2scp DTS data
>    arm: omap5: dts: add palmas-usb node
>    arm: omap2plus_defconfig: enable dwc3 and dependencies
>
>   arch/arm/boot/dts/omap5-uevm.dts           |   12 ++++++++
>   arch/arm/boot/dts/omap5.dtsi               |    9 +++---
>   arch/arm/configs/omap2plus_defconfig       |    9 ++++++
>   arch/arm/mach-omap2/omap_hwmod_54xx_data.c |   45 ++++++++++++++++++++++++++++
>   4 files changed, 71 insertions(+), 4 deletions(-)
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-08-21 14:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-21 14:31 [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Kishon Vijay Abraham I
2013-08-21 14:31 ` [PATCH v3 1/5] arm: omap5: dts: fix reg property size Kishon Vijay Abraham I
2013-08-21 14:31 ` [PATCH v3 2/5] arm: omap5: dts: fix ocp2scp DTS data Kishon Vijay Abraham I
2013-08-21 14:31 ` [PATCH v3 3/5] arm: omap5: dts: add palmas-usb node Kishon Vijay Abraham I
2013-08-21 14:31 ` [PATCH v3 4/5] arm: omap5: hwmod: add missing ocp2scp hwmod data Kishon Vijay Abraham I
2013-08-21 14:31 ` [PATCH v3 5/5] arm: omap2plus_defconfig: enable dwc3 and dependencies Kishon Vijay Abraham I
2013-08-21 14:54 ` [PATCH v3 0/5] ARM: OMAP: DTS/HWMOD/defconfig changes for USB3 Benoit Cousson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).