From: Kishon Vijay Abraham I <kishon@ti.com>
To: Rob Herring <robh+dt@kernel.org>, Roger Quadros <rogerq@ti.com>,
Kishon Vijay Abraham I <kishon@ti.com>
Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: [PATCH v3 0/5] PHY: Add support for SERDES in TI's AM654 platform
Date: Mon, 25 Mar 2019 13:38:10 +0530 [thread overview]
Message-ID: <20190325080815.6056-1-kishon@ti.com> (raw)
This patch series
*) adds support for SERDES module in am654
*) modifies phy_reset API to invoke pm_runtime_get/pm_runtime_put since
the reset callback can access registers.
*) Add *release* phy_ops to be invoked when the consumer relinquishes
PHY
Changes from v2:
*) Fix typos pointed out by rOGER
*) Add dt-binding Documentation in a new file ti,phy-am654-serdes.txt
*) Add Roger's patch to support all CLKSEL values.
Changes from v1:
*) Add *release* phy ops
*) Populate release phy_ops in phy-am654-serdes to cleanup
initializations done in of_xlate
Kishon Vijay Abraham I (4):
phy: core: Add *release* phy_ops invoked when the consumer
relinquishes PHY
phy: core: Invoke pm_runtime_get_*/pm_runtime_put_* before invoking
reset callback
dt-bindings: phy: ti: Add dt binding documentation for SERDES in
AM654x SoC
phy: ti: Add a new SERDES driver for TI's AM654x SoC
Roger Quadros (1):
phy: ti: am654-serdes: Support all clksel values
.../bindings/phy/ti,phy-am654-serdes.txt | 81 +++
drivers/phy/phy-core.c | 11 +
drivers/phy/ti/Kconfig | 12 +
drivers/phy/ti/Makefile | 1 +
drivers/phy/ti/phy-am654-serdes.c | 573 ++++++++++++++++++
include/dt-bindings/phy/phy-am654-serdes.h | 13 +
include/linux/phy/phy.h | 2 +
7 files changed, 693 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/ti,phy-am654-serdes.txt
create mode 100644 drivers/phy/ti/phy-am654-serdes.c
create mode 100644 include/dt-bindings/phy/phy-am654-serdes.h
--
2.17.1
WARNING: multiple messages have this Message-ID (diff)
From: Kishon Vijay Abraham I <kishon@ti.com>
To: Rob Herring <robh+dt@kernel.org>, Roger Quadros <rogerq@ti.com>,
Kishon Vijay Abraham I <kishon@ti.com>
Cc: <linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>
Subject: [PATCH v3 0/5] PHY: Add support for SERDES in TI's AM654 platform
Date: Mon, 25 Mar 2019 13:38:10 +0530 [thread overview]
Message-ID: <20190325080815.6056-1-kishon@ti.com> (raw)
This patch series
*) adds support for SERDES module in am654
*) modifies phy_reset API to invoke pm_runtime_get/pm_runtime_put since
the reset callback can access registers.
*) Add *release* phy_ops to be invoked when the consumer relinquishes
PHY
Changes from v2:
*) Fix typos pointed out by rOGER
*) Add dt-binding Documentation in a new file ti,phy-am654-serdes.txt
*) Add Roger's patch to support all CLKSEL values.
Changes from v1:
*) Add *release* phy ops
*) Populate release phy_ops in phy-am654-serdes to cleanup
initializations done in of_xlate
Kishon Vijay Abraham I (4):
phy: core: Add *release* phy_ops invoked when the consumer
relinquishes PHY
phy: core: Invoke pm_runtime_get_*/pm_runtime_put_* before invoking
reset callback
dt-bindings: phy: ti: Add dt binding documentation for SERDES in
AM654x SoC
phy: ti: Add a new SERDES driver for TI's AM654x SoC
Roger Quadros (1):
phy: ti: am654-serdes: Support all clksel values
.../bindings/phy/ti,phy-am654-serdes.txt | 81 +++
drivers/phy/phy-core.c | 11 +
drivers/phy/ti/Kconfig | 12 +
drivers/phy/ti/Makefile | 1 +
drivers/phy/ti/phy-am654-serdes.c | 573 ++++++++++++++++++
include/dt-bindings/phy/phy-am654-serdes.h | 13 +
include/linux/phy/phy.h | 2 +
7 files changed, 693 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/ti,phy-am654-serdes.txt
create mode 100644 drivers/phy/ti/phy-am654-serdes.c
create mode 100644 include/dt-bindings/phy/phy-am654-serdes.h
--
2.17.1
next reply other threads:[~2019-03-25 8:08 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-25 8:08 Kishon Vijay Abraham I [this message]
2019-03-25 8:08 ` [PATCH v3 0/5] PHY: Add support for SERDES in TI's AM654 platform Kishon Vijay Abraham I
2019-03-25 8:08 ` [PATCH v3 1/5] phy: core: Add *release* phy_ops invoked when the consumer relinquishes PHY Kishon Vijay Abraham I
2019-03-25 8:08 ` Kishon Vijay Abraham I
2019-03-25 8:08 ` [PATCH v3 2/5] phy: core: Invoke pm_runtime_get_*/pm_runtime_put_* before invoking reset callback Kishon Vijay Abraham I
2019-03-25 8:08 ` Kishon Vijay Abraham I
2019-03-25 8:08 ` [PATCH v3 3/5] dt-bindings: phy: ti: Add dt binding documentation for SERDES in AM654x SoC Kishon Vijay Abraham I
2019-03-25 8:08 ` Kishon Vijay Abraham I
2019-03-28 18:07 ` Rob Herring
2019-03-29 6:13 ` Kishon Vijay Abraham I
2019-03-29 6:13 ` Kishon Vijay Abraham I
2019-03-25 8:08 ` [PATCH v3 4/5] phy: ti: Add a new SERDES driver for TI's " Kishon Vijay Abraham I
2019-03-25 8:08 ` Kishon Vijay Abraham I
2019-03-25 14:05 ` Andrew F. Davis
2019-03-25 14:05 ` Andrew F. Davis
2019-04-05 9:46 ` Kishon Vijay Abraham I
2019-04-05 9:46 ` Kishon Vijay Abraham I
2019-03-25 8:08 ` [PATCH v3 5/5] phy: ti: am654-serdes: Support all clksel values Kishon Vijay Abraham I
2019-03-25 8:08 ` Kishon Vijay Abraham I
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=20190325080815.6056-1-kishon@ti.com \
--to=kishon@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=rogerq@ti.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 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.