linux/arch/avr32/kernel/head.S
<<
>>
Prefs
   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
  12#include <asm/page.h>
  13
  14        .section .init.text,"ax"
  15        .global kernel_entry
  16kernel_entry:
  17        /* Start the show */
  18        lddpc   pc, kernel_start_addr
  19
  20        .align  2
  21kernel_start_addr:
  22        .long   start_kernel
  23