All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vaibhav Hiremath <hvaibhav@ti.com>
To: <netdev@vger.kernel.org>
Cc: <paul@pwsan.com>, <linux-arm-kernel@lists.infradead.org>,
	<linux-omap@vger.kernel.org>, Vaibhav Hiremath <hvaibhav@ti.com>
Subject: [PATCH-V2 0/4] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver
Date: Mon, 29 Oct 2012 13:51:17 +0530	[thread overview]
Message-ID: <1351498881-32482-2-git-send-email-hvaibhav@ti.com> (raw)
In-Reply-To: <1351498881-32482-1-git-send-email-hvaibhav@ti.com>

This patch-series adds support for,

[1/4]: Typo mistake in CPSW driver while invoking runtime_pm api's

[2/4]: Adds parent<->child relation between CPSW & MDIO module inside cpsw
       driver, as in case of AM33XX, the resources are shared and common
       register bit-field is provided to control module/clock enable/disable,
       makes it difficult to handle common resource.

       So the solution here is, to create parent<->child relation between them.

[3/4]: Add hwmod entry for MDIO module, required for MDIO driver.

[4/4]: Add DT device nodes for both CPSW and MDIO modules in am33xx.dtsi,
	am335x-evm.dts and am335x-bone.dts file

This patch series has been created on top of linux-omap/master and tested
on both AM335x-EVM and BeagleBone platforms for NFS boot and basic ping
test cases.


All the patches are also available at,

git@github.com:hvaibhav/am335x-linux.git  am335x-upstream-staging-cpsw


Mugunthan V N (2):
  ARM: OMAP3+: hwmod: Add AM33XX HWMOD data for davinci_mdio module
  arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX

Vaibhav Hiremath (2):
  net: davinci_mdio: Fix typo mistake in calling runtime-pm api
  net: cpsw: Add parent<->child relation support between cpsw and mdio

 arch/arm/boot/dts/am335x-bone.dts          |    8 ++++
 arch/arm/boot/dts/am335x-evm.dts           |    8 ++++
 arch/arm/boot/dts/am33xx.dtsi              |   50 ++++++++++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_33xx_data.c |   32 ++++++++++++++++++
 drivers/net/ethernet/ti/cpsw.c             |   16 ++++++++-
 drivers/net/ethernet/ti/davinci_mdio.c     |    2 +-
 6 files changed, 113 insertions(+), 3 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Vaibhav Hiremath <hvaibhav@ti.com>
To: netdev@vger.kernel.org
Cc: paul@pwsan.com, linux-arm-kernel@lists.infradead.org,
	linux-omap@vger.kernel.org, Vaibhav Hiremath <hvaibhav@ti.com>
Subject: [PATCH-V2 0/4] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver
Date: Mon, 29 Oct 2012 13:51:17 +0530	[thread overview]
Message-ID: <1351498881-32482-2-git-send-email-hvaibhav@ti.com> (raw)
In-Reply-To: <1351498881-32482-1-git-send-email-hvaibhav@ti.com>

This patch-series adds support for,

[1/4]: Typo mistake in CPSW driver while invoking runtime_pm api's

[2/4]: Adds parent<->child relation between CPSW & MDIO module inside cpsw
       driver, as in case of AM33XX, the resources are shared and common
       register bit-field is provided to control module/clock enable/disable,
       makes it difficult to handle common resource.

       So the solution here is, to create parent<->child relation between them.

[3/4]: Add hwmod entry for MDIO module, required for MDIO driver.

[4/4]: Add DT device nodes for both CPSW and MDIO modules in am33xx.dtsi,
	am335x-evm.dts and am335x-bone.dts file

This patch series has been created on top of linux-omap/master and tested
on both AM335x-EVM and BeagleBone platforms for NFS boot and basic ping
test cases.


All the patches are also available at,

git@github.com:hvaibhav/am335x-linux.git  am335x-upstream-staging-cpsw


Mugunthan V N (2):
  ARM: OMAP3+: hwmod: Add AM33XX HWMOD data for davinci_mdio module
  arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX

Vaibhav Hiremath (2):
  net: davinci_mdio: Fix typo mistake in calling runtime-pm api
  net: cpsw: Add parent<->child relation support between cpsw and mdio

 arch/arm/boot/dts/am335x-bone.dts          |    8 ++++
 arch/arm/boot/dts/am335x-evm.dts           |    8 ++++
 arch/arm/boot/dts/am33xx.dtsi              |   50 ++++++++++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_33xx_data.c |   32 ++++++++++++++++++
 drivers/net/ethernet/ti/cpsw.c             |   16 ++++++++-
 drivers/net/ethernet/ti/davinci_mdio.c     |    2 +-
 6 files changed, 113 insertions(+), 3 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: hvaibhav@ti.com (Vaibhav Hiremath)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH-V2 0/4] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver
Date: Mon, 29 Oct 2012 13:51:17 +0530	[thread overview]
Message-ID: <1351498881-32482-2-git-send-email-hvaibhav@ti.com> (raw)
In-Reply-To: <1351498881-32482-1-git-send-email-hvaibhav@ti.com>

This patch-series adds support for,

[1/4]: Typo mistake in CPSW driver while invoking runtime_pm api's

[2/4]: Adds parent<->child relation between CPSW & MDIO module inside cpsw
       driver, as in case of AM33XX, the resources are shared and common
       register bit-field is provided to control module/clock enable/disable,
       makes it difficult to handle common resource.

       So the solution here is, to create parent<->child relation between them.

[3/4]: Add hwmod entry for MDIO module, required for MDIO driver.

[4/4]: Add DT device nodes for both CPSW and MDIO modules in am33xx.dtsi,
	am335x-evm.dts and am335x-bone.dts file

This patch series has been created on top of linux-omap/master and tested
on both AM335x-EVM and BeagleBone platforms for NFS boot and basic ping
test cases.


All the patches are also available at,

git at github.com:hvaibhav/am335x-linux.git  am335x-upstream-staging-cpsw


Mugunthan V N (2):
  ARM: OMAP3+: hwmod: Add AM33XX HWMOD data for davinci_mdio module
  arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX

Vaibhav Hiremath (2):
  net: davinci_mdio: Fix typo mistake in calling runtime-pm api
  net: cpsw: Add parent<->child relation support between cpsw and mdio

 arch/arm/boot/dts/am335x-bone.dts          |    8 ++++
 arch/arm/boot/dts/am335x-evm.dts           |    8 ++++
 arch/arm/boot/dts/am33xx.dtsi              |   50 ++++++++++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_33xx_data.c |   32 ++++++++++++++++++
 drivers/net/ethernet/ti/cpsw.c             |   16 ++++++++-
 drivers/net/ethernet/ti/davinci_mdio.c     |    2 +-
 6 files changed, 113 insertions(+), 3 deletions(-)

  reply	other threads:[~2012-10-29  8:21 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-29  8:21 # (c) 2007, Joe Perches <joe@perches.com> Vaibhav Hiremath
2012-10-29  8:21 ` Vaibhav Hiremath
2012-10-29  8:21 ` Vaibhav Hiremath
2012-10-29  8:21 ` Vaibhav Hiremath [this message]
2012-10-29  8:21   ` [PATCH-V2 0/4] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-29  8:33   ` Richard Cochran
2012-10-29  8:33     ` Richard Cochran
2012-10-29  8:21 ` [PATCH 1/4] net: davinci_mdio: Fix typo mistake in calling runtime-pm api Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-30 21:33   ` Peter Korsgaard
2012-10-30 21:33     ` Peter Korsgaard
2012-10-30 21:33     ` Peter Korsgaard
2012-10-29  8:21 ` [PATCH 2/4] net: cpsw: Add parent<->child relation support between cpsw and mdio Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-30 21:34   ` Peter Korsgaard
2012-10-30 21:34     ` Peter Korsgaard
2012-10-30 21:34     ` Peter Korsgaard
2012-10-29  8:21 ` [PATCH 3/4] ARM: OMAP3+: hwmod: Add AM33XX HWMOD data for davinci_mdio module Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-30 21:35   ` Peter Korsgaard
2012-10-30 21:35     ` Peter Korsgaard
2012-10-30 21:35     ` Peter Korsgaard
2012-10-29  8:21 ` [PATCH 4/4] arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-29  8:21   ` Vaibhav Hiremath
2012-10-30 21:35   ` Peter Korsgaard
2012-10-30 21:35     ` Peter Korsgaard
2012-10-30 21:35     ` Peter Korsgaard
2012-10-31 15:17   ` Benoit Cousson
2012-10-31 15:17     ` Benoit Cousson
2012-10-31 15:17     ` Benoit Cousson
2012-10-31 19:52     ` Hiremath, Vaibhav
2012-10-31 19:52       ` Hiremath, Vaibhav
2012-11-01  7:45     ` Richard Cochran
2012-11-01  7:45       ` Richard Cochran
2012-11-01  9:28       ` Cousson, Benoit
2012-11-01  9:28         ` Cousson, Benoit
2012-11-01  9:28         ` Cousson, Benoit
2012-11-03 17:45         ` [PATCH RFC net-next 0/1] Simplify the CPSW DT Richard Cochran
2012-11-03 17:45           ` Richard Cochran
2012-11-03 17:45           ` Richard Cochran
2012-11-03 17:45           ` [PATCH RFC net-next 1/1] cpsw: simplify the setup of the register pointers Richard Cochran
2012-11-03 17:45             ` Richard Cochran
2012-11-03 17:45             ` Richard Cochran
2012-11-02  8:46     ` [PATCH 4/4] arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX N, Mugunthan V
2012-11-02  8:46       ` N, Mugunthan V
2012-11-02  8:56       ` Richard Cochran
2012-11-02  8:56         ` Richard Cochran
2012-11-02 10:42         ` N, Mugunthan V
2012-11-02 10:42           ` N, Mugunthan V
2012-11-02 15:19           ` Richard Cochran
2012-11-02 15:19             ` Richard Cochran
2012-11-08 12:59     ` Mugunthan V N
2012-11-08 12:59       ` Mugunthan V N
2012-11-08 12:59       ` Mugunthan V N
2012-10-29  9:25 ` # (c) 2007, Joe Perches <joe@perches.com> Vaibhav Hiremath
2012-10-29  9:25   ` Vaibhav Hiremath
2012-10-29  9:25   ` Vaibhav Hiremath

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=1351498881-32482-2-git-send-email-hvaibhav@ti.com \
    --to=hvaibhav@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=paul@pwsan.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.