2 * arch/arm/mach-netx/nxdkn.c
4 * Copyright (c) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/dma-mapping.h>
21 #include <linux/init.h>
22 #include <linux/interrupt.h>
23 #include <linux/mtd/plat-ram.h>
24 #include <linux/platform_device.h>
25 #include <linux/amba/bus.h>
26 #include <linux/amba/clcd.h>
28 #include <asm/hardware.h>
29 #include <asm/mach-types.h>
30 #include <asm/mach/arch.h>
31 #include <asm/arch/netx-regs.h>
32 #include <asm/arch/eth.h>
36 static struct netxeth_platform_data eth0_platform_data
= {
40 static struct platform_device nxdkn_eth0_device
= {
46 .platform_data
= ð0_platform_data
,
50 static struct netxeth_platform_data eth1_platform_data
= {
54 static struct platform_device nxdkn_eth1_device
= {
60 .platform_data
= ð1_platform_data
,
64 static struct resource netx_uart0_resources
[] = {
68 .flags
= IORESOURCE_MEM
,
71 .start
= (NETX_IRQ_UART0
),
72 .end
= (NETX_IRQ_UART0
),
73 .flags
= IORESOURCE_IRQ
,
77 static struct platform_device netx_uart0_device
= {
80 .num_resources
= ARRAY_SIZE(netx_uart0_resources
),
81 .resource
= netx_uart0_resources
,
84 static struct platform_device
*devices
[] __initdata
= {
90 static void __init
nxdkn_init(void)
92 platform_add_devices(devices
, ARRAY_SIZE(devices
));
95 MACHINE_START(NXDKN
, "Hilscher nxdkn")
96 .phys_io
= 0x00100000,
97 .io_pg_offst
= (io_p2v(0x00100000) >> 18) & 0xfffc,
98 .boot_params
= 0x80000100,
99 .map_io
= netx_map_io
,
100 .init_irq
= netx_init_irq
,
101 .timer
= &netx_timer
,
102 .init_machine
= nxdkn_init
,