4 * Copyright (C) 2012 Renesas Electronics Europe
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 #include <linux/init.h>
11 #include <linux/types.h>
12 #include <linux/platform_device.h>
13 #include <linux/interrupt.h>
14 #include <linux/input.h>
15 #include <linux/smsc911x.h>
16 #include <asm/machvec.h>
19 static struct smsc911x_platform_config smsc911x_config
= {
20 .phy_interface
= PHY_INTERFACE_MODE_MII
,
21 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
22 .irq_type
= SMSC911X_IRQ_TYPE_OPEN_DRAIN
,
23 .flags
= SMSC911X_USE_16BIT
| SMSC911X_SWAP_FIFO
,
26 static struct resource smsc911x_resources
[] = {
30 .flags
= IORESOURCE_MEM
,
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
,
49 static struct platform_device
*rsk7264_devices
[] __initdata
= {
53 static int __init
rsk7264_devices_setup(void)
55 return platform_add_devices(rsk7264_devices
,
56 ARRAY_SIZE(rsk7264_devices
));
58 device_initcall(rsk7264_devices_setup
);