[ARM] MX2: Add FEC platform device
authorSascha Hauer <s.hauer@pengutronix.de>
Mon, 26 Jan 2009 16:26:02 +0000 (17:26 +0100)
committerSascha Hauer <s.hauer@pengutronix.de>
Fri, 13 Mar 2009 09:34:06 +0000 (10:34 +0100)
The in kernel FEC driver has recently been ported to a platform driver.
Add a platform_device for it and register it for pcm038 and mx27ads.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
arch/arm/mach-mx2/devices.c
arch/arm/mach-mx2/devices.h
arch/arm/mach-mx2/mx27ads.c
arch/arm/mach-mx2/pcm038.c

index 07061e644545fa62d7879910acd7cc8996dc2e77..684d5d92c2e435f4f5d8010694186c3d967a2aa1 100644 (file)
@@ -258,7 +258,27 @@ struct platform_device mxc_fb_device = {
                .coherent_dma_mask = 0xFFFFFFFF,
        },
 };
+#endif
 
+#ifdef CONFIG_MACH_MX27
+static struct resource mxc_fec_resources[] = {
+       {
+               .start  = FEC_BASE_ADDR,
+               .end    = FEC_BASE_ADDR + 0xfff,
+               .flags  = IORESOURCE_MEM
+       }, {
+               .start  = MXC_INT_FEC,
+               .end    = MXC_INT_FEC,
+               .flags  = IORESOURCE_IRQ
+       },
+};
+
+struct platform_device mxc_fec_device = {
+       .name = "fec",
+       .id = 0,
+       .num_resources = ARRAY_SIZE(mxc_fec_resources),
+       .resource = mxc_fec_resources,
+};
 #endif
 
 /* GPIO port description */
index f4cb0ce29f130205388bd10f60abb59f375505f5..d85d5b26c986bacfbe638e99ebbcbb4efa09e2ab 100644 (file)
@@ -14,3 +14,4 @@ extern struct platform_device mxc_uart_device5;
 extern struct platform_device mxc_w1_master_device;
 extern struct platform_device mxc_nand_device;
 extern struct platform_device mxc_fb_device;
+extern struct platform_device mxc_fec_device;
index 3c967f460b306a12dc6ffe78f4269524ebe20fee..4a3b097adc12afa6e8c88e3c081a3ac334789064 100644 (file)
@@ -180,6 +180,7 @@ static int uart_mxc_port5_exit(struct platform_device *pdev)
 
 static struct platform_device *platform_devices[] __initdata = {
        &mx27ads_nor_mtd_device,
+       &mxc_fec_device,
 };
 
 static int mxc_fec_pins[] = {
index 58552a01c0d3035ffc686ad8a463eb488cc3b932..d246eb1bb3ce82995cbf7d2ebd710159e9212474 100644 (file)
@@ -191,6 +191,7 @@ static struct mxc_nand_platform_data pcm038_nand_board_info = {
 static struct platform_device *platform_devices[] __initdata = {
        &pcm038_nor_mtd_device,
        &mxc_w1_master_device,
+       &mxc_fec_device,
        &pcm038_sram_mtd_device,
 };