mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Kishon Vijay Abraham I <kishon@ti.com>
To: Miquel Raynal <miquel.raynal@bootlin.com>,
	Gregory Clement <gregory.clement@bootlin.com>,
	Jason Cooper <jason@lakedaemon.net>, Andrew Lunn <andrew@lunn.ch>,
	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: <devicetree@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
	Antoine Tenart <antoine.tenart@bootlin.com>,
	Maxime Chevallier <maxime.chevallier@bootlin.com>,
	Nadav Haklai <nadavh@marvell.com>,
	Marcin Wojtas <mw@semihalf.com>,
	Grzegorz Jaszczyk <jaz@semihalf.com>
Subject: Re: [PATCH v5 0/7] Add Armada 3700 COMPHY support
Date: Wed, 6 Feb 2019 16:47:39 +0530	[thread overview]
Message-ID: <300b86e7-1d00-da92-2203-a7cfeb2d7aa8@ti.com> (raw)
In-Reply-To: <20190206095743.5eed3584@xps13>

Hi,

On 06/02/19 2:27 PM, Miquel Raynal wrote:
> Hi Kishon,
> 
> Miquel Raynal <miquel.raynal@bootlin.com> wrote on Tue,  8 Jan 2019
> 17:31:17 +0100:
> 
>> Hello,
>>
>> This series adds a new driver to support Armada 3700 COMPHY IP.
>> The series has been tested on an ESPRESSObin with SATA, PCIe
>> and USB3 host. For this purpose, patch 1 enumerates the SATA PHY
>> mode. The SGMII PHY mode that is supported by the IP has been written
>> (uses SMC calls anyway) but could not be tested on this platform.
>>
>> Three series will follow to add PHY support (or at least a PHY nodes
>> in the A3700/ESPRESSObin device trees) to the MVEBU AHCI driver, the
>> Aardvark PCI controller driver and the MVEBU xHCI driver. All this is
>> needed in order to achieve suspend to RAM on this platform.
>>
>> Thanks,
>> Miquèl
>>
> 
> Any inputs on this series? It is important for me because it impacts
> SATA, PCIe and USB changes I plan to get merge.

merged now, thanks.

-Kishon
> 
> Thanks,
> Miquèl
> 
>>
>> Changes since v4:
>> =================
>> * Fixed error in the driver probe where PHY_INTERFACE_MODE_NA was
>>   assigned to lane->mode instead of lane->submode.
>> * Compile-in the driver by default (depends on ARCH_MVEBU).
>> * Add dependency on HAVE_ARM_SMCC in Kconfig.
>>
>> Changes since v3:
>> =================
>> * Added Rob's Reviewed-by tag on bindings.
>> * Rebased on top of phy -next as of the 12th of December, 2018.
>> * Adapted the driver to support SGMII/1000BASEX and
>>   HS_SGMII/2500BASEX.
>>
>> Changes since v2:
>> =================
>> * Remove redundant check on lane->port/args->arg[0] at the end of the
>>   ->xlate() callback. Do it on both armada-cp110 and armada-a3700  
>>   COMPHY drivers.
>> * Put my SoB as author of the patch first when a patch is co-developed.
>>
>> Changes since v1:
>> =================
>> * Fix wrong check in ->xlate().
>> * Apply the same fix to the cp110 comphy driver from which the a3700
>>   driver is based.
>> * Added credit to Gregorz Jaszczyk for his work.
>> * Added Suggested-by tag to the patch adding the COMPHY DT node.
>>
>>
>> Grzegorz Jaszczyk (1):
>>   phy: enumerate SATA PHY mode
>>
>> Miquel Raynal (6):
>>   phy: mvebu-cp110-comphy: fix port check in ->xlate()
>>   phy: add A3700 COMPHY support
>>   dt-bindings: phy: mvebu-comphy: extend the file to describe a3700
>>     bindings
>>   MAINTAINERS: phy: add entry for Armada 3700 COMPHY driver
>>   ARM64: dts: marvell: armada-37xx: fix SATA node scope
>>   ARM64: dts: marvell: armada-37xx: declare the COMPHY node
>>
>>  .../bindings/phy/phy-mvebu-comphy.txt         |  65 +++-
>>  MAINTAINERS                                   |   6 +
>>  arch/arm64/boot/dts/marvell/armada-37xx.dtsi  |  31 +-
>>  drivers/phy/marvell/Kconfig                   |  12 +
>>  drivers/phy/marvell/Makefile                  |   1 +
>>  drivers/phy/marvell/phy-mvebu-a3700-comphy.c  | 318 ++++++++++++++++++
>>  drivers/phy/marvell/phy-mvebu-cp110-comphy.c  |   2 -
>>  include/linux/phy/phy.h                       |   1 +
>>  8 files changed, 421 insertions(+), 15 deletions(-)
>>  create mode 100644 drivers/phy/marvell/phy-mvebu-a3700-comphy.c
>>

      reply	other threads:[~2019-02-06 11:18 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-08 16:31 Miquel Raynal
2019-01-08 16:31 ` [PATCH v5 1/7] phy: mvebu-cp110-comphy: fix port check in ->xlate() Miquel Raynal
2019-01-08 16:31 ` [PATCH v5 2/7] phy: enumerate SATA PHY mode Miquel Raynal
2019-01-08 16:31 ` [PATCH v5 3/7] phy: add A3700 COMPHY support Miquel Raynal
2019-01-08 16:31 ` [PATCH v5 4/7] dt-bindings: phy: mvebu-comphy: extend the file to describe a3700 bindings Miquel Raynal
2019-01-08 16:31 ` [PATCH v5 5/7] MAINTAINERS: phy: add entry for Armada 3700 COMPHY driver Miquel Raynal
2019-01-08 16:31 ` [PATCH v5 6/7] ARM64: dts: marvell: armada-37xx: fix SATA node scope Miquel Raynal
2019-02-06  9:37   ` Gregory CLEMENT
2019-01-08 16:31 ` [PATCH v5 7/7] ARM64: dts: marvell: armada-37xx: declare the COMPHY node Miquel Raynal
2019-02-06 14:00   ` Gregory CLEMENT
2019-02-06  8:57 ` [PATCH v5 0/7] Add Armada 3700 COMPHY support Miquel Raynal
2019-02-06 11:17   ` Kishon Vijay Abraham I [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=300b86e7-1d00-da92-2203-a7cfeb2d7aa8@ti.com \
    --to=kishon@ti.com \
    --cc=andrew@lunn.ch \
    --cc=antoine.tenart@bootlin.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregory.clement@bootlin.com \
    --cc=jason@lakedaemon.net \
    --cc=jaz@semihalf.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=maxime.chevallier@bootlin.com \
    --cc=miquel.raynal@bootlin.com \
    --cc=mw@semihalf.com \
    --cc=nadavh@marvell.com \
    --cc=robh+dt@kernel.org \
    --cc=sebastian.hesselbarth@gmail.com \
    --cc=thomas.petazzoni@bootlin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®