Ian Molton | 7dc9641 | 2008-08-19 12:14:21 +0100 | [diff] [blame] | 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> |
Ian Molton | ebcce7b | 2008-08-19 13:34:56 +0100 | [diff] [blame] | 22 | #include <mach/udc.h> |
Ian Molton | 7dc9641 | 2008-08-19 12:14:21 +0100 | [diff] [blame] | 23 | |
| 24 | #include "generic.h" |
| 25 | #include "eseries.h" |
| 26 | |
Ian Molton | ebcce7b | 2008-08-19 13:34:56 +0100 | [diff] [blame] | 27 | static void __init e330_init(void) |
| 28 | { |
| 29 | pxa_set_udc_info(&e7xx_udc_mach_info); |
| 30 | } |
| 31 | |
Ian Molton | 7dc9641 | 2008-08-19 12:14:21 +0100 | [diff] [blame] | 32 | MACHINE_START(E330, "Toshiba e330") |
| 33 | /* Maintainer: Ian Molton (spyro@f2s.com) */ |
| 34 | .phys_io = 0x40000000, |
| 35 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
| 36 | .boot_params = 0xa0000100, |
| 37 | .map_io = pxa_map_io, |
| 38 | .init_irq = pxa25x_init_irq, |
| 39 | .fixup = eseries_fixup, |
Ian Molton | ebcce7b | 2008-08-19 13:34:56 +0100 | [diff] [blame] | 40 | .init_machine = e330_init, |
Ian Molton | 7dc9641 | 2008-08-19 12:14:21 +0100 | [diff] [blame] | 41 | .timer = &pxa_timer, |
| 42 | MACHINE_END |
| 43 | |