at91sam9rl.c 783 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * arch/arm/mach-at91/at91sam9rl.c
  3. *
  4. * Copyright (C) 2005 SAN People
  5. * Copyright (C) 2007 Atmel Corporation
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file COPYING in the main directory of this archive for
  9. * more details.
  10. */
  11. #include <asm/system_misc.h>
  12. #include <mach/cpu.h>
  13. #include <mach/at91_dbgu.h>
  14. #include <mach/hardware.h>
  15. #include "soc.h"
  16. #include "generic.h"
  17. /* --------------------------------------------------------------------
  18. * AT91SAM9RL processor initialization
  19. * -------------------------------------------------------------------- */
  20. static void __init at91sam9rl_initialize(void)
  21. {
  22. arm_pm_idle = at91sam9_idle;
  23. }
  24. AT91_SOC_START(at91sam9rl)
  25. .init = at91sam9rl_initialize,
  26. AT91_SOC_END