2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
8 #include <linux/module.h>
10 #include <linux/platform_device.h>
11 #include <linux/smsc911x.h>
13 static struct smsc911x_platform_config sead3_smsc911x_data
= {
14 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
15 .irq_type
= SMSC911X_IRQ_TYPE_PUSH_PULL
,
16 .flags
= SMSC911X_USE_32BIT
| SMSC911X_SAVE_MAC_ADDRESS
,
17 .phy_interface
= PHY_INTERFACE_MODE_MII
,
20 struct resource sead3_net_resourcess
[] = {
24 .flags
= IORESOURCE_MEM
27 .start
= MIPS_CPU_IRQ_BASE
+ 6,
28 .flags
= IORESOURCE_IRQ
32 static struct platform_device sead3_net_device
= {
36 .platform_data
= &sead3_smsc911x_data
,
38 .num_resources
= ARRAY_SIZE(sead3_net_resourcess
),
39 .resource
= sead3_net_resourcess
42 static int __init
sead3_net_init(void)
44 return platform_device_register(&sead3_net_device
);
47 module_init(sead3_net_init
);
49 MODULE_AUTHOR("Chris Dearman <chris@mips.com>");
50 MODULE_LICENSE("GPL");
51 MODULE_DESCRIPTION("Network probe driver for SEAD-3");