All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mugunthan V N <mugunthanvnm@ti.com>
To: b-cousson@ti.com, davem@davemloft.net, Paul Walmsley <paul@pwsan.com>
Cc: netdev@vger.kernel.org,
	"devicetree-discuss@lists.ozlabs.org"
	<devicetree-discuss@lists.ozlabs.org>,
	linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org
Subject: Re: [PATCH V4 0/7] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver
Date: Wed, 7 Nov 2012 20:54:41 +0530	[thread overview]
Message-ID: <509A7D39.8050506@ti.com> (raw)
In-Reply-To: <1352223159-27504-1-git-send-email-mugunthanvnm@ti.com>

On 11/6/2012 11:02 PM, Mugunthan V N wrote:
> This patch-series adds support for,
>
> [1/7]: Typo mistake in CPSW driver while invoking runtime_pm api's
>
> [2/7]: 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/7]: Add hwmod entry for MDIO module, required for MDIO driver.
>
> [4/7]: cpsw: simplify the setup of the register pointers
>
> [5/7]: Add DT device nodes for both CPSW and MDIO modules in am33xx.dtsi,
>         am335x-evm.dts and am335x-bone.dts file
>
> [6/7]: Enable CPSW support to omap2plus_defconfig
>
> [7/7]: cpsw: Kernel warn fix during suspend
>
> This patch series has been created on top of net-next/master and tested
> on BeagleBone platform for NFS boot and basic ping test cases.
>
> Changes from V3:
> * Removed unnecessary flags in Davinci MDIO Hwmod entry.
>
> Mugunthan V N (4):
>    ARM: OMAP3+: hwmod: Add AM33XX HWMOD data for davinci_mdio module
>    arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX
>    ARM: OMAP2+: omap2plus_defconfig: Enable CPSW support
>    net: cpsw: halt network stack before halting the device during
>      suspend
>
> Richard Cochran (1):
>    cpsw: simplify the setup of the register pointers
>
> 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
>
>   Documentation/devicetree/bindings/net/cpsw.txt |   34 ----
>   arch/arm/boot/dts/am335x-bone.dts              |    8 +
>   arch/arm/boot/dts/am335x-evm.dts               |    8 +
>   arch/arm/boot/dts/am33xx.dtsi                  |   42 +++++
>   arch/arm/configs/omap2plus_defconfig           |    3 +
>   arch/arm/mach-omap2/omap_hwmod_33xx_data.c     |   31 ++++
>   drivers/net/ethernet/ti/cpsw.c                 |  231 ++++++++++--------------
>   drivers/net/ethernet/ti/davinci_mdio.c         |    2 +-
>   include/linux/platform_data/cpsw.h             |   19 --
>   9 files changed, 192 insertions(+), 186 deletions(-)
>
Paul/Benoit

Do you any comments

Regards
Mugunthan V N

WARNING: multiple messages have this Message-ID (diff)
From: mugunthanvnm@ti.com (Mugunthan V N)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V4 0/7] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver
Date: Wed, 7 Nov 2012 20:54:41 +0530	[thread overview]
Message-ID: <509A7D39.8050506@ti.com> (raw)
In-Reply-To: <1352223159-27504-1-git-send-email-mugunthanvnm@ti.com>

On 11/6/2012 11:02 PM, Mugunthan V N wrote:
> This patch-series adds support for,
>
> [1/7]: Typo mistake in CPSW driver while invoking runtime_pm api's
>
> [2/7]: 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/7]: Add hwmod entry for MDIO module, required for MDIO driver.
>
> [4/7]: cpsw: simplify the setup of the register pointers
>
> [5/7]: Add DT device nodes for both CPSW and MDIO modules in am33xx.dtsi,
>         am335x-evm.dts and am335x-bone.dts file
>
> [6/7]: Enable CPSW support to omap2plus_defconfig
>
> [7/7]: cpsw: Kernel warn fix during suspend
>
> This patch series has been created on top of net-next/master and tested
> on BeagleBone platform for NFS boot and basic ping test cases.
>
> Changes from V3:
> * Removed unnecessary flags in Davinci MDIO Hwmod entry.
>
> Mugunthan V N (4):
>    ARM: OMAP3+: hwmod: Add AM33XX HWMOD data for davinci_mdio module
>    arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX
>    ARM: OMAP2+: omap2plus_defconfig: Enable CPSW support
>    net: cpsw: halt network stack before halting the device during
>      suspend
>
> Richard Cochran (1):
>    cpsw: simplify the setup of the register pointers
>
> 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
>
>   Documentation/devicetree/bindings/net/cpsw.txt |   34 ----
>   arch/arm/boot/dts/am335x-bone.dts              |    8 +
>   arch/arm/boot/dts/am335x-evm.dts               |    8 +
>   arch/arm/boot/dts/am33xx.dtsi                  |   42 +++++
>   arch/arm/configs/omap2plus_defconfig           |    3 +
>   arch/arm/mach-omap2/omap_hwmod_33xx_data.c     |   31 ++++
>   drivers/net/ethernet/ti/cpsw.c                 |  231 ++++++++++--------------
>   drivers/net/ethernet/ti/davinci_mdio.c         |    2 +-
>   include/linux/platform_data/cpsw.h             |   19 --
>   9 files changed, 192 insertions(+), 186 deletions(-)
>
Paul/Benoit

Do you any comments

Regards
Mugunthan V N

WARNING: multiple messages have this Message-ID (diff)
From: Mugunthan V N <mugunthanvnm@ti.com>
To: <b-cousson@ti.com>, <davem@davemloft.net>,
	Paul Walmsley <paul@pwsan.com>
Cc: <netdev@vger.kernel.org>,
	"devicetree-discuss@lists.ozlabs.org"
	<devicetree-discuss@lists.ozlabs.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-omap@vger.kernel.org>
Subject: Re: [PATCH V4 0/7] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver
Date: Wed, 7 Nov 2012 20:54:41 +0530	[thread overview]
Message-ID: <509A7D39.8050506@ti.com> (raw)
In-Reply-To: <1352223159-27504-1-git-send-email-mugunthanvnm@ti.com>

On 11/6/2012 11:02 PM, Mugunthan V N wrote:
> This patch-series adds support for,
>
> [1/7]: Typo mistake in CPSW driver while invoking runtime_pm api's
>
> [2/7]: 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/7]: Add hwmod entry for MDIO module, required for MDIO driver.
>
> [4/7]: cpsw: simplify the setup of the register pointers
>
> [5/7]: Add DT device nodes for both CPSW and MDIO modules in am33xx.dtsi,
>         am335x-evm.dts and am335x-bone.dts file
>
> [6/7]: Enable CPSW support to omap2plus_defconfig
>
> [7/7]: cpsw: Kernel warn fix during suspend
>
> This patch series has been created on top of net-next/master and tested
> on BeagleBone platform for NFS boot and basic ping test cases.
>
> Changes from V3:
> * Removed unnecessary flags in Davinci MDIO Hwmod entry.
>
> Mugunthan V N (4):
>    ARM: OMAP3+: hwmod: Add AM33XX HWMOD data for davinci_mdio module
>    arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX
>    ARM: OMAP2+: omap2plus_defconfig: Enable CPSW support
>    net: cpsw: halt network stack before halting the device during
>      suspend
>
> Richard Cochran (1):
>    cpsw: simplify the setup of the register pointers
>
> 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
>
>   Documentation/devicetree/bindings/net/cpsw.txt |   34 ----
>   arch/arm/boot/dts/am335x-bone.dts              |    8 +
>   arch/arm/boot/dts/am335x-evm.dts               |    8 +
>   arch/arm/boot/dts/am33xx.dtsi                  |   42 +++++
>   arch/arm/configs/omap2plus_defconfig           |    3 +
>   arch/arm/mach-omap2/omap_hwmod_33xx_data.c     |   31 ++++
>   drivers/net/ethernet/ti/cpsw.c                 |  231 ++++++++++--------------
>   drivers/net/ethernet/ti/davinci_mdio.c         |    2 +-
>   include/linux/platform_data/cpsw.h             |   19 --
>   9 files changed, 192 insertions(+), 186 deletions(-)
>
Paul/Benoit

Do you any comments

Regards
Mugunthan V N

  parent reply	other threads:[~2012-11-07 15:24 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-06 17:32 [PATCH V4 0/7] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver Mugunthan V N
2012-11-06 17:32 ` Mugunthan V N
2012-11-06 17:32 ` Mugunthan V N
2012-11-06 17:32 ` [PATCH V4 1/7] net: davinci_mdio: Fix typo mistake in calling runtime-pm api Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32 ` [PATCH V4 2/7] net: cpsw: Add parent<->child relation support between cpsw and mdio Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32 ` [PATCH V4 3/7] ARM: OMAP3+: hwmod: Add AM33XX HWMOD data for davinci_mdio module Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32 ` [PATCH V4 4/7] cpsw: simplify the setup of the register pointers Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32 ` [PATCH V4 5/7] arm/dts: am33xx: Add CPSW and MDIO module nodes for AM33XX Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32 ` [PATCH V4 6/7] ARM: OMAP2+: omap2plus_defconfig: Enable CPSW support Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32 ` [PATCH V4 7/7] net: cpsw: halt network stack before halting the device during suspend Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-06 17:32   ` Mugunthan V N
2012-11-07 15:24 ` Mugunthan V N [this message]
2012-11-07 15:24   ` [PATCH V4 0/7] ARM: AM33XX: net: Add DT support to CPGMAC and MDIO driver Mugunthan V N
2012-11-07 15:24   ` Mugunthan V N
2012-11-07 15:45   ` Benoit Cousson
2012-11-07 15:45     ` Benoit Cousson
2012-11-07 15:45     ` Benoit Cousson

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=509A7D39.8050506@ti.com \
    --to=mugunthanvnm@ti.com \
    --cc=b-cousson@ti.com \
    --cc=davem@davemloft.net \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --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.