e800.c 842 B

123456789101112131415161718192021222324252627282930313233343536
  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. #include <linux/kernel.h>
  13. #include <linux/init.h>
  14. #include <asm/setup.h>
  15. #include <asm/mach/arch.h>
  16. #include <asm/mach-types.h>
  17. #include <mach/mfp-pxa25x.h>
  18. #include <mach/hardware.h>
  19. #include "generic.h"
  20. #include "eseries.h"
  21. MACHINE_START(E800, "Toshiba e800")
  22. /* Maintainer: Ian Molton (spyro@f2s.com) */
  23. .phys_io = 0x40000000,
  24. .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
  25. .boot_params = 0xa0000100,
  26. .map_io = pxa_map_io,
  27. .init_irq = pxa25x_init_irq,
  28. .fixup = eseries_fixup,
  29. .timer = &pxa_timer,
  30. MACHINE_END