personal.c 553 B

123456789101112131415161718192021222324
  1. /*
  2. * linux/arch/arm/mach-footbridge/personal.c
  3. *
  4. * Personal server (Skiff) machine fixup
  5. */
  6. #include <linux/init.h>
  7. #include <asm/hardware/dec21285.h>
  8. #include <asm/mach-types.h>
  9. #include <asm/mach/arch.h>
  10. #include "common.h"
  11. MACHINE_START(PERSONAL_SERVER, "Compaq-PersonalServer")
  12. /* Maintainer: Jamey Hicks / George France */
  13. .phys_io = DC21285_ARMCSR_BASE,
  14. .io_pg_offst = ((0xfe000000) >> 18) & 0xfffc,
  15. .boot_params = 0x00000100,
  16. .map_io = footbridge_map_io,
  17. .init_irq = footbridge_init_irq,
  18. .timer = &footbridge_timer,
  19. MACHINE_END