aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-pxa/e330.c
diff options
context:
space:
mode:
authorIan Molton <spyro@f2s.com>2008-08-19 07:14:21 -0400
committerIan Molton <spyro@f2s.com>2008-08-19 08:44:07 -0400
commit7dc964148c2850e5df84fc17807ba48edb628c88 (patch)
tree66707f0b998131b2c9006886b71ac4f4a39a8ed2 /arch/arm/mach-pxa/e330.c
parent1a1dc50442ef1a3e5ef938a8541466ac38d163a9 (diff)
[ARM] eseries: Split machine definitions
This patchset breaks out the e-series machine definitions into one-per-machine. Signed-off-by: Ian Molton <spyro@f2s.com>
Diffstat (limited to 'arch/arm/mach-pxa/e330.c')
-rw-r--r--arch/arm/mach-pxa/e330.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/e330.c b/arch/arm/mach-pxa/e330.c
new file mode 100644
index 000000000000..2f4555e2fb91
--- /dev/null
+++ b/arch/arm/mach-pxa/e330.c
@@ -0,0 +1,36 @@
1/*
2 * Hardware definitions for the Toshiba eseries PDAs
3 *
4 * Copyright (c) 2003 Ian Molton <spyro@f2s.com>
5 *
6 * This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 *
11 */
12
13#include <linux/kernel.h>
14#include <linux/init.h>
15
16#include <asm/setup.h>
17#include <asm/mach/arch.h>
18#include <asm/mach-types.h>
19
20#include <mach/mfp-pxa25x.h>
21#include <mach/hardware.h>
22
23#include "generic.h"
24#include "eseries.h"
25
26MACHINE_START(E330, "Toshiba e330")
27 /* Maintainer: Ian Molton (spyro@f2s.com) */
28 .phys_io = 0x40000000,
29 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
30 .boot_params = 0xa0000100,
31 .map_io = pxa_map_io,
32 .init_irq = pxa25x_init_irq,
33 .fixup = eseries_fixup,
34 .timer = &pxa_timer,
35MACHINE_END
36