head.S 509 B

12345678910111213141516171819202122
  1. /*
  2. * Non-board-specific low-level startup code
  3. *
  4. * Copyright (C) 2004-2006 Atmel Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/linkage.h>
  11. #include <asm/page.h>
  12. .section .init.text,"ax"
  13. .global kernel_entry
  14. kernel_entry:
  15. /* Start the show */
  16. lddpc pc, kernel_start_addr
  17. .align 2
  18. kernel_start_addr:
  19. .long start_kernel