From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754978AbdCIRnP (ORCPT ); Thu, 9 Mar 2017 12:43:15 -0500 Received: from mail.free-electrons.com ([62.4.15.54]:44577 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932093AbdCIRnN (ORCPT ); Thu, 9 Mar 2017 12:43:13 -0500 From: Gregory CLEMENT To: Greg Kroah-Hartman , Alan Stern , linux-usb@vger.kernel.org Cc: Jason Cooper , Andrew Lunn , Sebastian Hesselbarth , Gregory CLEMENT , Rob Herring , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Thomas Petazzoni , linux-arm-kernel@lists.infradead.org, Nadav Haklai , Victor Gu , Marcin Wojtas , Wilson Ding , Hua Jing , Neta Zur Hershkovits Subject: [PATCH v3 0/3] Add EHCI support for Armada 37xx Date: Thu, 9 Mar 2017 18:28:24 +0100 Message-Id: <20170309172827.17874-1-gregory.clement@free-electrons.com> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, The EHCI controller in the Armada 37xx SoCs is the one used on many other mvebu SoCs such as the orion5x, the kirkwood, or the armada. However, for Armada 37xx an extra initialization step is needed: this is the purpose of the first patch. The second patch allows to build the driver for the ARM64 Armada SoCs. The last one enables the EHCI in the device tree. This third version takes into account the review from Alan Stern. Thanks, Gregory Changelog: v2-> v3: - Remove the _SHIFT define and use their value directly, suggested by Alan Stern - Remove unnecessary error message in ehci_orion_drv_reset() , suggested by Alan Stern - Exit ehci_orion_drv_reset() if ehci_setup() failed, suggested by Alan Stern - Add Reviewed-by flag from Andrew Lunn v1 -> v2: - Fix typo in commit log of the patch 1, suggested by Andrew Lunn - Fix wording in the device tree binding documenation, suggested by Andrew Lunn - Make new define symbol name more clear by adding _SHIFT to the end, suggested by Andrew Lunn - Use a full first name + last name for the Signed-off-by and the Authorship i oatch 1, suggested by Thomas Petazzoni. - Improve the commit log of the patch 2, suggested by Andrew Lunn - Fix Kconfig logic, suggested by Andrew Lunn Gregory CLEMENT (2): usb: host: Allow to build ehci orion with mvebu SoCs ARM64: dts: marvell: armada-37xx: Add USB2 node Hua Jing (1): usb: orion-echi: Add support for the Armada 3700 .../devicetree/bindings/usb/ehci-orion.txt | 4 ++- arch/arm64/boot/dts/marvell/armada-3720-db.dts | 6 ++++ arch/arm64/boot/dts/marvell/armada-37xx.dtsi | 7 ++++ drivers/usb/host/Kconfig | 2 +- drivers/usb/host/ehci-orion.c | 39 ++++++++++++++++++++++ 5 files changed, 56 insertions(+), 2 deletions(-) -- 2.11.0 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gregory CLEMENT Subject: [PATCH v3 0/3] Add EHCI support for Armada 37xx Date: Thu, 9 Mar 2017 18:28:24 +0100 Message-ID: <20170309172827.17874-1-gregory.clement@free-electrons.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Greg Kroah-Hartman , Alan Stern , linux-usb@vger.kernel.org Cc: Thomas Petazzoni , Andrew Lunn , Hua Jing , Jason Cooper , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Nadav Haklai , Rob Herring , Neta Zur Hershkovits , Gregory CLEMENT , Victor Gu , Marcin Wojtas , Wilson Ding , linux-arm-kernel@lists.infradead.org, Sebastian Hesselbarth List-Id: devicetree@vger.kernel.org Hi, The EHCI controller in the Armada 37xx SoCs is the one used on many other mvebu SoCs such as the orion5x, the kirkwood, or the armada. However, for Armada 37xx an extra initialization step is needed: this is the purpose of the first patch. The second patch allows to build the driver for the ARM64 Armada SoCs. The last one enables the EHCI in the device tree. This third version takes into account the review from Alan Stern. Thanks, Gregory Changelog: v2-> v3: - Remove the _SHIFT define and use their value directly, suggested by Alan Stern - Remove unnecessary error message in ehci_orion_drv_reset() , suggested by Alan Stern - Exit ehci_orion_drv_reset() if ehci_setup() failed, suggested by Alan Stern - Add Reviewed-by flag from Andrew Lunn v1 -> v2: - Fix typo in commit log of the patch 1, suggested by Andrew Lunn - Fix wording in the device tree binding documenation, suggested by Andrew Lunn - Make new define symbol name more clear by adding _SHIFT to the end, suggested by Andrew Lunn - Use a full first name + last name for the Signed-off-by and the Authorship i oatch 1, suggested by Thomas Petazzoni. - Improve the commit log of the patch 2, suggested by Andrew Lunn - Fix Kconfig logic, suggested by Andrew Lunn Gregory CLEMENT (2): usb: host: Allow to build ehci orion with mvebu SoCs ARM64: dts: marvell: armada-37xx: Add USB2 node Hua Jing (1): usb: orion-echi: Add support for the Armada 3700 .../devicetree/bindings/usb/ehci-orion.txt | 4 ++- arch/arm64/boot/dts/marvell/armada-3720-db.dts | 6 ++++ arch/arm64/boot/dts/marvell/armada-37xx.dtsi | 7 ++++ drivers/usb/host/Kconfig | 2 +- drivers/usb/host/ehci-orion.c | 39 ++++++++++++++++++++++ 5 files changed, 56 insertions(+), 2 deletions(-) -- 2.11.0 From mboxrd@z Thu Jan 1 00:00:00 1970 From: gregory.clement@free-electrons.com (Gregory CLEMENT) Date: Thu, 9 Mar 2017 18:28:24 +0100 Subject: [PATCH v3 0/3] Add EHCI support for Armada 37xx Message-ID: <20170309172827.17874-1-gregory.clement@free-electrons.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi, The EHCI controller in the Armada 37xx SoCs is the one used on many other mvebu SoCs such as the orion5x, the kirkwood, or the armada. However, for Armada 37xx an extra initialization step is needed: this is the purpose of the first patch. The second patch allows to build the driver for the ARM64 Armada SoCs. The last one enables the EHCI in the device tree. This third version takes into account the review from Alan Stern. Thanks, Gregory Changelog: v2-> v3: - Remove the _SHIFT define and use their value directly, suggested by Alan Stern - Remove unnecessary error message in ehci_orion_drv_reset() , suggested by Alan Stern - Exit ehci_orion_drv_reset() if ehci_setup() failed, suggested by Alan Stern - Add Reviewed-by flag from Andrew Lunn v1 -> v2: - Fix typo in commit log of the patch 1, suggested by Andrew Lunn - Fix wording in the device tree binding documenation, suggested by Andrew Lunn - Make new define symbol name more clear by adding _SHIFT to the end, suggested by Andrew Lunn - Use a full first name + last name for the Signed-off-by and the Authorship i oatch 1, suggested by Thomas Petazzoni. - Improve the commit log of the patch 2, suggested by Andrew Lunn - Fix Kconfig logic, suggested by Andrew Lunn Gregory CLEMENT (2): usb: host: Allow to build ehci orion with mvebu SoCs ARM64: dts: marvell: armada-37xx: Add USB2 node Hua Jing (1): usb: orion-echi: Add support for the Armada 3700 .../devicetree/bindings/usb/ehci-orion.txt | 4 ++- arch/arm64/boot/dts/marvell/armada-3720-db.dts | 6 ++++ arch/arm64/boot/dts/marvell/armada-37xx.dtsi | 7 ++++ drivers/usb/host/Kconfig | 2 +- drivers/usb/host/ehci-orion.c | 39 ++++++++++++++++++++++ 5 files changed, 56 insertions(+), 2 deletions(-) -- 2.11.0