Linux 3.11-rc3
[cris-mirror.git] / arch / mips / mti-sead3 / sead3-net.c
blobdd11e7eb771c139c8483a97e97eee4e4052bbeaa
1 /*
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
4 * for more details.
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
7 */
8 #include <linux/module.h>
9 #include <linux/irq.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[] = {
22 .start = 0x1f010000,
23 .end = 0x1f01ffff,
24 .flags = IORESOURCE_MEM
27 .start = MIPS_CPU_IRQ_BASE + 6,
28 .flags = IORESOURCE_IRQ
32 static struct platform_device sead3_net_device = {
33 .name = "smsc911x",
34 .id = 0,
35 .dev = {
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");