All of lore.kernel.org
 help / color / mirror / Atom feed
From: <kostap@marvell.com>
To: <linux-arm-kernel@lists.infradead.org>, <devicetree@vger.kernel.org>
Cc: <linux-kernel@vger.kernel.org>, <lkundrak@v3.sk>,
	<linux@armlinux.org.uk>, <sebastian.hesselbarth@gmail.com>,
	<gregory.clement@bootlin.com>, <andrew@lunn.ch>,
	<robh+dt@kernel.org>, <vkoul@kernel.org>, <kishon@ti.com>,
	<miquel.raynal@bootlin.com>, <mw@semihalf.com>,
	<jaz@semihalf.com>, <nadavh@marvell.com>, <stefanc@marvell.com>,
	<bpeled@marvell.com>,
	"Konstantin Porotchkin" <kostap@marvell.com>
Subject: [PATCH 0/4] Add support for CP110 UTMI PHY
Date: Wed, 27 Jan 2021 13:27:15 +0200	[thread overview]
Message-ID: <20210127112719.30632-1-kostap@marvell.com> (raw)

From: Konstantin Porotchkin <kostap@marvell.com>

This series of patches adds a new PHY driver for supporting CP110 UTMI
PHY in Linux. Currently the functionality of USB ports connected to
this PHY depends on boot loader setup.
The new driver eliminates kernel configuration dependency from the boot
loader. 

Konstantin Porotchkin (4):
  drivers: phy: add support for Armada CP110 UTMI PHY
  devicetree/bindings: add support for CP110 UTMI driver
  arch/arm64: dts: add support for Marvell CP110 UTMI driver
  arch/arm64: dts: enable CP110 UTMI driver

 .../bindings/phy/phy-mvebu-utmi.txt           |  69 +++-
 .../arm64/boot/dts/marvell/armada-7040-db.dts |  12 +-
 .../arm64/boot/dts/marvell/armada-8040-db.dts |  18 +-
 .../boot/dts/marvell/armada-8040-mcbin.dtsi   |  16 +-
 arch/arm64/boot/dts/marvell/armada-cp11x.dtsi |  19 +
 arch/arm64/boot/dts/marvell/cn9130-db.dts     |  10 +-
 arch/arm64/boot/dts/marvell/cn9131-db.dts     |   8 +-
 arch/arm64/boot/dts/marvell/cn9132-db.dts     |   9 +-
 drivers/phy/marvell/Kconfig                   |   8 +
 drivers/phy/marvell/Makefile                  |   1 +
 drivers/phy/marvell/phy-mvebu-cp110-utmi.c    | 372 ++++++++++++++++++
 11 files changed, 522 insertions(+), 20 deletions(-)
 create mode 100644 drivers/phy/marvell/phy-mvebu-cp110-utmi.c

-- 
2.17.1


WARNING: multiple messages have this Message-ID (diff)
From: <kostap@marvell.com>
To: <linux-arm-kernel@lists.infradead.org>, <devicetree@vger.kernel.org>
Cc: andrew@lunn.ch, mw@semihalf.com, jaz@semihalf.com,
	gregory.clement@bootlin.com, linux-kernel@vger.kernel.org,
	linux@armlinux.org.uk, nadavh@marvell.com, lkundrak@v3.sk,
	vkoul@kernel.org, robh+dt@kernel.org, miquel.raynal@bootlin.com,
	Konstantin Porotchkin <kostap@marvell.com>,
	stefanc@marvell.com, kishon@ti.com, bpeled@marvell.com,
	sebastian.hesselbarth@gmail.com
Subject: [PATCH 0/4] Add support for CP110 UTMI PHY
Date: Wed, 27 Jan 2021 13:27:15 +0200	[thread overview]
Message-ID: <20210127112719.30632-1-kostap@marvell.com> (raw)

From: Konstantin Porotchkin <kostap@marvell.com>

This series of patches adds a new PHY driver for supporting CP110 UTMI
PHY in Linux. Currently the functionality of USB ports connected to
this PHY depends on boot loader setup.
The new driver eliminates kernel configuration dependency from the boot
loader. 

Konstantin Porotchkin (4):
  drivers: phy: add support for Armada CP110 UTMI PHY
  devicetree/bindings: add support for CP110 UTMI driver
  arch/arm64: dts: add support for Marvell CP110 UTMI driver
  arch/arm64: dts: enable CP110 UTMI driver

 .../bindings/phy/phy-mvebu-utmi.txt           |  69 +++-
 .../arm64/boot/dts/marvell/armada-7040-db.dts |  12 +-
 .../arm64/boot/dts/marvell/armada-8040-db.dts |  18 +-
 .../boot/dts/marvell/armada-8040-mcbin.dtsi   |  16 +-
 arch/arm64/boot/dts/marvell/armada-cp11x.dtsi |  19 +
 arch/arm64/boot/dts/marvell/cn9130-db.dts     |  10 +-
 arch/arm64/boot/dts/marvell/cn9131-db.dts     |   8 +-
 arch/arm64/boot/dts/marvell/cn9132-db.dts     |   9 +-
 drivers/phy/marvell/Kconfig                   |   8 +
 drivers/phy/marvell/Makefile                  |   1 +
 drivers/phy/marvell/phy-mvebu-cp110-utmi.c    | 372 ++++++++++++++++++
 11 files changed, 522 insertions(+), 20 deletions(-)
 create mode 100644 drivers/phy/marvell/phy-mvebu-cp110-utmi.c

-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2021-01-27 11:31 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-27 11:27 kostap [this message]
2021-01-27 11:27 ` [PATCH 0/4] Add support for CP110 UTMI PHY kostap
2021-01-27 11:27 ` [PATCH 1/4] drivers: phy: add support for Armada " kostap
2021-01-27 11:27   ` kostap
2021-01-29  9:28   ` Lubomir Rintel
2021-01-29 10:07     ` Russell King - ARM Linux admin
2021-01-29 18:22       ` Lubomir Rintel
2021-01-29 18:22         ` Lubomir Rintel
2021-01-27 11:27 ` [PATCH 2/4] devicetree/bindings: add support for CP110 UTMI driver kostap
2021-01-27 11:27   ` kostap
2021-01-29  9:38   ` Lubomir Rintel
2021-01-31 15:05     ` Kostya Porotchkin
2021-01-31 15:05       ` Kostya Porotchkin
2021-01-27 11:27 ` [PATCH 3/4] arch/arm64: dts: add support for Marvell " kostap
2021-01-27 11:27   ` kostap
2021-01-27 11:27 ` [PATCH 4/4] arch/arm64: dts: enable " kostap
2021-01-27 11:27   ` kostap
2021-01-29  9:39   ` Lubomir Rintel

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=20210127112719.30632-1-kostap@marvell.com \
    --to=kostap@marvell.com \
    --cc=andrew@lunn.ch \
    --cc=bpeled@marvell.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregory.clement@bootlin.com \
    --cc=jaz@semihalf.com \
    --cc=kishon@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=lkundrak@v3.sk \
    --cc=miquel.raynal@bootlin.com \
    --cc=mw@semihalf.com \
    --cc=nadavh@marvell.com \
    --cc=robh+dt@kernel.org \
    --cc=sebastian.hesselbarth@gmail.com \
    --cc=stefanc@marvell.com \
    --cc=vkoul@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.