ebsa285.c 553 B

1234567891011121314151617181920212223242526
  1. /*
  2. * linux/arch/arm/mach-footbridge/ebsa285.c
  3. *
  4. * EBSA285 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(EBSA285, "EBSA285")
  12. /* Maintainer: Russell King */
  13. .phys_io = DC21285_ARMCSR_BASE,
  14. .io_pg_offst = ((0xfe000000) >> 18) & 0xfffc,
  15. .boot_params = 0x00000100,
  16. .video_start = 0x000a0000,
  17. .video_end = 0x000bffff,
  18. .map_io = footbridge_map_io,
  19. .init_irq = footbridge_init_irq,
  20. .timer = &footbridge_timer,
  21. MACHINE_END