netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Richard Zhao <linuxzsc@gmail.com>
Cc: kernel@pengutronix.de, linux-arm-kernel@lists.arm.linux.org.uk,
	steve.glendinning@smsc.com, netdev@vger.kernel.org
Subject: Re: [PATCH 2/3] ARM: mxc: add mx31pdk Lan9217 support
Date: Tue, 24 Mar 2009 08:58:09 +0100	[thread overview]
Message-ID: <20090324075809.GF25436@pengutronix.de> (raw)
In-Reply-To: <4e090d470903232344x162ca791q3007954d064ccd00@mail.gmail.com>

On Tue, Mar 24, 2009 at 02:44:41PM +0800, Richard Zhao wrote:
> Signed-off-by: Richard Zhao <linuxzsc@gmail.com>
> 
> diff --git a/arch/arm/mach-mx3/mx31pdk.c b/arch/arm/mach-mx3/mx31pdk.c
> index aa7e3c5..45cef70 100644
> --- a/arch/arm/mach-mx3/mx31pdk.c
> +++ b/arch/arm/mach-mx3/mx31pdk.c
> @@ -32,6 +32,8 @@
>  #include <mach/board-mx31pdk.h>
>  #include <mach/imx-uart.h>
>  #include <mach/iomux-mx3.h>
> +#include <linux/platform_device.h>
> +#include <linux/smsc911x.h>
>  #include "devices.h"
>  #include "3stack-debug.h"
> 
> @@ -57,6 +59,43 @@ static inline void mxc_init_imx_uart(void)
>  	mxc_register_device(&mxc_uart_device0, &uart_pdata);
>  }
> 
> +/*lan9217 device*/
> +#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)

IMO it is not worth to clutter the code with ifdefs just to save some
bytes of binary space, but ok, that's just my two cents.

> +static struct resource smsc911x_resources[] = {
> +	{
> +	 .start = LAN9217_BASE_ADDR,
> +	 .end = LAN9217_BASE_ADDR + 0x100,
> +	 .flags = IORESOURCE_MEM,
> +	 },
> +	{
> +	 .start = LAN9217_IRQ,
> +	 .end = LAN9217_IRQ,
> +	 .flags = IORESOURCE_IRQ,
> +	 },
> +};

static struct resource smsc911x_resources[] = {
	{
		.start = LAN9217_BASE_ADDR,
		.end = LAN9217_BASE_ADDR + 0x100,
		.flags = IORESOURCE_MEM,
	},{
		.start = LAN9217_IRQ,
		.end = LAN9217_IRQ,
		.flags = IORESOURCE_IRQ,
	},
};

> +
> +static struct smsc911x_platform_config smsc911x_platconfig = {
> +	.irq_polarity	= SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
> +	.irq_type	= SMSC911X_IRQ_TYPE_OPEN_DRAIN,
> +	.flags		= SMSC911X_USE_16BIT | SMSC911X_USE_INTERPHY,
> +};
> +
> +static struct platform_device smsc_lan9217_device = {
> +	.name = "smsc911x",
> +	.id = 0,
> +	.num_resources = ARRAY_SIZE(smsc911x_resources),
> +	.resource = smsc911x_resources,
> +};
> +static void mxc_init_enet(void)
> +{
> +	mxc_register_device(&smsc_lan9217_device, &smsc911x_platconfig);
> +}
> +#else
> +static inline void mxc_init_enet(void)
> +{
> +}
> +#endif
> +
>  static u32 brd_io;
> 
>  static void mxc_expio_irq_handler(u32 irq, struct irq_desc *desc)
> @@ -217,6 +256,7 @@ static void __init mxc_board_init(void)
>  {
>  	mxc_init_imx_uart();
>  	mxc_expio_init();
> +	mxc_init_enet();
>  }
> 
>  static void __init mx31pdk_timer_init(void)
> -- 
> 1.5.6.3
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

  reply	other threads:[~2009-03-24  7:58 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-24  6:44 [PATCH 2/3] ARM: mxc: add mx31pdk Lan9217 support Richard Zhao
2009-03-24  7:58 ` Sascha Hauer [this message]
2009-03-24  8:59   ` Richard Zhao

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=20090324075809.GF25436@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.arm.linux.org.uk \
    --cc=linuxzsc@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=steve.glendinning@smsc.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;
as well as URLs for NNTP newsgroup(s).