1 /* Specification for the SMSC911x NIC
3 * Copyright (C) 2006 Matsushita Electric Industrial Co., Ltd.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/platform_device.h>
16 #include <linux/ioport.h>
17 #include <linux/smsc911x.h>
18 #include <unit/smsc911x.h>
20 static struct smsc911x_platform_config smsc911x_config
= {
21 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
22 .irq_type
= SMSC911X_IRQ_TYPE_OPEN_DRAIN
,
23 .flags
= SMSC911X_USE_32BIT
,
26 static struct resource smsc911x_resources
[] = {
28 .start
= SMSC911X_BASE
,
29 .end
= SMSC911X_BASE_END
,
30 .flags
= IORESOURCE_MEM
,
33 .start
= SMSC911X_IRQ
,
35 .flags
= IORESOURCE_IRQ
,
39 static struct platform_device smsc911x_device
= {
42 .num_resources
= ARRAY_SIZE(smsc911x_resources
),
43 .resource
= smsc911x_resources
,
45 .platform_data
= &smsc911x_config
,
50 * add platform devices
52 static int __init
unit_device_init(void)
54 platform_device_register(&smsc911x_device
);
58 device_initcall(unit_device_init
);