repo_id
stringlengths
5
115
size
int64
590
5.01M
file_path
stringlengths
4
212
content
stringlengths
590
5.01M
alibaba/LVS
4,860
kernel/arch/avr32/mach-at32ap/pm-at32ap700x.S
/* * Low-level Power Management code. * * Copyright (C) 2008 Atmel Corporation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <asm/asm.h> #include <asm/asm-offse...
alibaba/LVS
1,377
kernel/arch/avr32/boot/u-boot/head.S
/* * Startup code for use with the u-boot bootloader. * * Copyright (C) 2004-2006 Atmel Corporation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <asm/setup.h> ...
alibaba/LVS
5,923
kernel/arch/m32r/kernel/head.S
/* * linux/arch/m32r/kernel/head.S * * M32R startup code. * * Copyright (c) 2001, 2002 Hiroyuki Kondo, Hirokazu Takata, * Hitoshi Yamamoto */ #include <linux/init.h> __INIT __INITDATA .text #include <linux/linkage.h> #include <asm/segment.h> #include <asm/page.h> #include <asm/p...
alibaba/LVS
9,623
kernel/arch/m32r/kernel/syscall_table.S
ENTRY(sys_call_table) .long sys_restart_syscall /* 0 - old "setup()" system call*/ .long sys_exit .long sys_fork .long sys_read .long sys_write .long sys_open /* 5 */ .long sys_close .long sys_waitpid .long sys_creat .long sys_link .long sys_unlink /* 10 */ .long sys_execve .long sys_chdir .long sys_...
alibaba/LVS
12,955
kernel/arch/m32r/kernel/entry.S
/* * linux/arch/m32r/kernel/entry.S * * Copyright (c) 2001, 2002 Hirokazu Takata, Hitoshi Yamamoto, H. Kondo * Copyright (c) 2003 Hitoshi Yamamoto * Copyright (c) 2004 Hirokazu Takata <takata at linux-m32r.org> * * Taken from i386 version. * Copyright (C) 1991, 1992 Linus Torvalds */ /* * entry.S...
alibaba/LVS
1,541
kernel/arch/m32r/kernel/vmlinux.lds.S
/* ld script to make M32R Linux kernel */ #include <asm-generic/vmlinux.lds.h> #include <asm/addrspace.h> #include <asm/page.h> #include <asm/thread_info.h> OUTPUT_ARCH(m32r) #if defined(__LITTLE_ENDIAN__) jiffies = jiffies_64; #else jiffies = jiffies_64 + 4; #endif kernel_entry = boot - 0x80000000; E...
alibaba/LVS
1,622
kernel/arch/m32r/lib/memcpy.S
/* * linux/arch/m32r/lib/memcpy.S * * Copyright (C) 2001 Hiroyuki Kondo, and Hirokazu Takata * Copyright (C) 2004 Hirokazu Takata * * void *memcopy(void *dst, const void *src, int n); * * dst: r0 * src: r1 * n : r2 */ .text #include <linux/linkage.h> #include <asm/assembler.h> ...
alibaba/LVS
6,989
kernel/arch/m32r/lib/checksum.S
/* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user level. * * IP/TCP/UDP checksumming routines * * Authors: Jorge Cwik, <jorge@laser.satlink.net> * Arnt Gulbrandsen, <a...
alibaba/LVS
5,014
kernel/arch/m32r/lib/ashxdi3.S
/* * linux/arch/m32r/lib/ashxdi3.S * * Copyright (C) 2001,2002 Hiroyuki Kondo, and Hirokazu Takata * */ ; ; input (r0,r1) src ; input r2 shift val ; r3 scratch ; output (r0,r1) ; #ifdef CONFIG_ISA_DUAL_ISSUE #ifndef __LITTLE_ENDIAN__ .text .align 4 .globl __ash...
alibaba/LVS
3,220
kernel/arch/m32r/lib/memset.S
/* * linux/arch/m32r/lib/memset.S * * Copyright (C) 2001,2002 Hiroyuki Kondo, and Hirokazu Takata * Copyright (C) 2004 Hirokazu Takata * * void *memset(void *dst, int val, int len); * * dst: r0 * val: r1 * len: r2 * ret: r0 * */ .text .global memset #ifdef CONFIG_ISA_D...
alibaba/LVS
2,198
kernel/arch/m32r/lib/strlen.S
/* * linux/arch/m32r/strlen.S -- strlen code. * * Copyright (C) 2001 Hirokazu Takata * * size_t strlen(const char *s); * */ #include <linux/linkage.h> #include <asm/assembler.h> #ifdef CONFIG_ISA_DUAL_ISSUE .text ENTRY(strlen) mv r6, r0 || ldi r2, #0 and3 r0, r0, #3 bnez r0, strlen_byte ; strlen...
alibaba/LVS
4,256
kernel/arch/m32r/boot/setup.S
/* * linux/arch/m32r/boot/setup.S -- A setup code. * * Copyright (C) 2001-2005 Hiroyuki Kondo, Hirokazu Takata, * Hitoshi Yamamoto, Hayato Fujiwara * */ #include <linux/linkage.h> #include <asm/segment.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/assembler.h> #i...
alibaba/LVS
7,277
kernel/arch/m32r/mm/mmu.S
/* * linux/arch/m32r/mm/mmu.S * * Copyright (C) 2001 by Hiroyuki Kondo */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/smp.h> .text #ifdef CONFIG_MMU #include <asm/mmu_context.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/m32r.h> /* * TLB Miss Exception handler */ ...
alibaba/LVS
1,272
kernel/arch/m32r/mm/page.S
/* * linux/arch/m32r/mm/page.S * * Clear/Copy page with CPU * * Copyright (C) 2004 The Free Software Initiative of Japan * * Written by Niibe Yutaka * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * f...
alibaba/LVS
3,590
kernel/arch/m32r/boot/compressed/head.S
/* * linux/arch/m32r/boot/compressed/head.S * * Copyright (c) 2001-2003 Hiroyuki Kondo, Hirokazu Takata, * Hitoshi Yamamoto, Takeo Takahashi * Copyright (c) 2004 Hirokazu Takata */ .text #include <linux/linkage.h> #include <asm/addrspace.h> #include <asm/page.h> #include <asm/assembler.h> /* * This c...
alibaba/LVS
15,960
kernel/arch/frv/kernel/head.S
/* head.S: kernel entry point for FR-V kernel * * Copyright (C) 2003, 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free...
alibaba/LVS
1,999
kernel/arch/frv/kernel/kernel_thread.S
/* kernel_thread.S: kernel thread creation * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software...
alibaba/LVS
20,777
kernel/arch/frv/kernel/break.S
/* break.S: Break interrupt handling (kept separate from entry.S) * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publish...
alibaba/LVS
40,988
kernel/arch/frv/kernel/entry.S
/* entry.S: FR-V entry * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either ...
alibaba/LVS
10,376
kernel/arch/frv/kernel/head-mmu-fr451.S
/* head-mmu-fr451.S: FR451 mmu-linux specific bits of initialisation * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publ...
alibaba/LVS
12,810
kernel/arch/frv/kernel/switch_to.S
############################################################################### # # switch_to.S: context switch operation # # Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # modify it under the ter...
alibaba/LVS
4,744
kernel/arch/frv/kernel/cmode.S
/* cmode.S: clock mode management * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Woodhouse (dwmw2@infradead.org) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Founda...
alibaba/LVS
1,037
kernel/arch/frv/kernel/kernel_execve.S
/* in-kernel program execution * * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation;...
alibaba/LVS
4,061
kernel/arch/frv/kernel/head-uc-fr451.S
/* head-uc-fr451.S: FR451 uc-linux specific bits of initialisation * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publis...
alibaba/LVS
9,988
kernel/arch/frv/kernel/entry-table.S
/* entry-table.S: main trap vector tables and exception jump table * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publis...
alibaba/LVS
9,344
kernel/arch/frv/kernel/head-uc-fr555.S
/* head-uc-fr555.S: FR555 uc-linux specific bits of initialisation * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publis...
alibaba/LVS
2,380
kernel/arch/frv/kernel/vmlinux.lds.S
/* ld script to make FRV Linux kernel * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>; */ OUTPUT_FORMAT("elf32-frv", "elf32-frv", "elf32-frv") OUTPUT_ARCH(frv) ENTRY(_start) #include <asm-generic/vmlinux.lds.h> #include <asm/processor.h> #include <asm/page.h> #include <asm/cache.h> #include <asm/thread_info....
alibaba/LVS
9,836
kernel/arch/frv/kernel/sleep.S
/* sleep.S: power saving mode entry * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Woodhouse (dwmw2@infradead.org) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foun...
alibaba/LVS
8,856
kernel/arch/frv/kernel/head-uc-fr401.S
/* head-uc-fr401.S: FR401/3/5 uc-linux specific bits of initialisation * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as pu...
alibaba/LVS
2,859
kernel/arch/frv/lib/cache.S
/* cache.S: cache management routines * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foun...
alibaba/LVS
5,339
kernel/arch/frv/lib/atomic-ops.S
/* atomic-ops.S: kernel atomic operations * * For an explanation of how atomic ops work in this arch, see: * Documentation/frv/atomic-ops.txt * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it an...
alibaba/LVS
1,340
kernel/arch/frv/lib/__ashldi3.S
/* __ashldi3.S: 64-bit arithmetic shift left * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Softwa...
alibaba/LVS
1,201
kernel/arch/frv/lib/__ucmpdi2.S
/* __ucmpdi2.S: 64-bit unsigned compare * * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Fo...
alibaba/LVS
1,136
kernel/arch/frv/lib/outsl_sw.S
/* outsl_ns.S: output array of 4b words to device with byte swapping * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publ...
alibaba/LVS
1,069
kernel/arch/frv/lib/__muldi3.S
/* __muldi3.S: 64-bit multiply * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation;...
alibaba/LVS
3,411
kernel/arch/frv/lib/memcpy.S
/* memcpy.S: optimised assembly memcpy * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Fou...
alibaba/LVS
1,138
kernel/arch/frv/lib/insl_sw.S
/* insl_sw.S: input array of 4b words from device port with byte swapping * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as...
alibaba/LVS
1,284
kernel/arch/frv/lib/insl_ns.S
/* insl_ns.S: input array of 4b words from device port without byte swapping * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License *...
alibaba/LVS
1,359
kernel/arch/frv/lib/__ashrdi3.S
/* __ashrdi3.S: 64-bit arithmetic shift right * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Softw...
alibaba/LVS
4,994
kernel/arch/frv/lib/memset.S
/* memset.S: optimised assembly memset * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Fou...
alibaba/LVS
1,368
kernel/arch/frv/lib/outsl_ns.S
/* outsl_ns.S: output array of 4b words to device without byte swapping * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as p...
alibaba/LVS
4,827
kernel/arch/frv/lib/atomic64-ops.S
/* kernel atomic64 operations * * For an explanation of how atomic ops work in this arch, see: * Documentation/frv/atomic-ops.txt * * Copyright (C) 2009 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modi...
alibaba/LVS
1,338
kernel/arch/frv/lib/__lshrdi3.S
/* __lshrdi3.S: 64-bit logical shift right * * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software...
alibaba/LVS
18,963
kernel/arch/frv/mm/tlb-miss.S
/* tlb-miss.S: TLB miss handlers * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundatio...
alibaba/LVS
4,394
kernel/arch/frv/mm/tlb-flush.S
/* tlb-flush.S: TLB flushing routines * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foun...
alibaba/LVS
9,677
kernel/arch/um/sys-i386/checksum.S
/* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user level. * * IP/TCP/UDP checksumming routines * * Authors: Jorge Cwik, <jorge@laser.satlink.net> * Arnt Gulbrandsen, <a...
alibaba/LVS
5,033
kernel/arch/um/kernel/dyn.lds.S
#include <asm-generic/vmlinux.lds.h> #include <asm/page.h> OUTPUT_FORMAT(ELF_FORMAT) OUTPUT_ARCH(ELF_ARCH) ENTRY(_start) jiffies = jiffies_64; SECTIONS { PROVIDE (__executable_start = START); . = START + SIZEOF_HEADERS; .interp : { *(.interp) } __binary_start = .; . = ALIGN(4096); /* Init code and ...
alibaba/LVS
1,988
kernel/arch/um/kernel/uml.lds.S
#include <asm-generic/vmlinux.lds.h> #include <asm/page.h> OUTPUT_FORMAT(ELF_FORMAT) OUTPUT_ARCH(ELF_ARCH) ENTRY(_start) jiffies = jiffies_64; SECTIONS { /* This must contain the right address - not quite the default ELF one.*/ PROVIDE (__executable_start = START); /* Static binaries stick stuff here, like the ...
alibaba/LVS
1,084
kernel/arch/um/sys-x86_64/stub.S
#include "as-layout.h" .globl syscall_stub .section .__syscall_stub, "ax" syscall_stub: syscall /* We don't have 64-bit constants, so this constructs the address * we need. */ movq $(STUB_DATA >> 32), %rbx salq $32, %rbx movq $(STUB_DATA & 0xffffffff), %rcx or %rcx, %rbx movq %rax, (%rbx) int3 .globl ba...
alibaba/LVS
2,341
kernel/arch/um/sys-ppc/misc.S
/* * This file contains miscellaneous low-level functions. * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) * * Largely rewritten by Cort Dougan (cort@cs.nmt.edu) * and Paul Mackerras. * * A couple of functions stolen from arch/ppc/kernel/misc.S for UML * by Chris Emerson. * * This program is free ...
alibaba/LVS
1,794
kernel/arch/um/include/asm/common.lds.S
#include <asm-generic/vmlinux.lds.h> .fini : { *(.fini) } =0x9090 _etext = .; PROVIDE (etext = .); . = ALIGN(4096); _sdata = .; PROVIDE (sdata = .); RODATA .unprotected : { *(.unprotected) } . = ALIGN(4096); PROVIDE (_unprotected_end = .); . = ALIGN(4096); .note : { *(.note.*) } E...
alibaba/LVS
7,615
kernel/arch/microblaze/kernel/head.S
/* * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2007-2009 PetaLogix * Copyright (C) 2006 Atmark Techno, Inc. * * MMU code derived from arch/ppc/kernel/head_4xx.S: * Copyright (c) 1995-1996 Gary Thomas <gdt@linuxppc.org> * Initial PowerPC version. * Copyright (c) 1996 Cort...
alibaba/LVS
9,622
kernel/arch/microblaze/kernel/syscall_table.S
ENTRY(sys_call_table) .long sys_restart_syscall /* 0 - old "setup()" system call, * used for restarting */ .long sys_exit #ifdef CONFIG_MMU .long sys_fork_wrapper #else .long sys_ni_syscall #endif .long sys_read .long sys_write .long sys_open /* 5 */ .long sys_close .long sys_waitpid .long sys_creat ...
alibaba/LVS
33,972
kernel/arch/microblaze/kernel/entry.S
/* * Low-level system-call handling, trap handlers and context-switching * * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2008-2009 PetaLogix * Copyright (C) 2003 John Williams <jwilliams@itee.uq.edu.au> * Copyright (C) 2001,2002 NEC Corporation * Copyright (C) 2001,2002 Miles Bader <...
alibaba/LVS
14,030
kernel/arch/microblaze/kernel/entry-nommu.S
/* * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2007-2009 PetaLogix * Copyright (C) 2006 Atmark Techno, Inc. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ ...
alibaba/LVS
33,364
kernel/arch/microblaze/kernel/hw_exception_handler.S
/* * Exception handling for Microblaze * * Rewriten interrupt handling * * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2008-2009 PetaLogix * * uClinux customisation (C) 2005 John Williams * * MMU code derived from arch/ppc/kernel/head_4xx.S: * Copyright (C) 1995-1996 Gary Thomas <...
alibaba/LVS
2,499
kernel/arch/microblaze/kernel/misc.S
/* * Miscellaneous low-level MMU functions. * * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2008-2009 PetaLogix * Copyright (C) 2007 Xilinx, Inc. All rights reserved. * * Derived from arch/ppc/kernel/misc.S * * This file is subject to the terms and conditions of the GNU General * ...
alibaba/LVS
3,186
kernel/arch/microblaze/kernel/vmlinux.lds.S
/* * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2008-2009 PetaLogix * Copyright (C) 2006 Atmark Techno, Inc. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ ...
alibaba/LVS
20,567
kernel/arch/microblaze/lib/fastcopy.S
/* * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2008-2009 PetaLogix * Copyright (C) 2008 Jim Law - Iris LP All rights reserved. * * This file is subject to the terms and conditions of the GNU General * Public License. See the file COPYING in the main directory of this * archive for...
alibaba/LVS
2,135
kernel/arch/microblaze/lib/uaccess_old.S
/* * Copyright (C) 2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2009 PetaLogix * Copyright (C) 2007 LynuxWorks, Inc. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ #include <l...
alibaba/LVS
2,892
kernel/arch/m68knommu/kernel/entry.S
/* * linux/arch/m68knommu/kernel/entry.S * * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com) * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>, * Kenneth Albanowski <kjahds@kjahds.com>, * Copyright (C) 2000 Lineo Inc. (www.lineo.com) * * Based on: * * linux/arch/m68k/k...
alibaba/LVS
9,129
kernel/arch/m68knommu/kernel/syscalltable.S
/* * linux/arch/m68knommu/kernel/syscalltable.S * * Copyright (C) 2002, Greg Ungerer (gerg@snapgear.com) * * Based on older entry.S files, the following copyrights apply: * * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>, * Kenneth Albanowski <kjahds@kjahds.com>, * Copyright (C) ...
alibaba/LVS
4,071
kernel/arch/m68knommu/kernel/vmlinux.lds.S
/* * vmlinux.lds.S -- master linker script for m68knommu arch * * (C) Copyright 2002-2006, Greg Ungerer <gerg@snapgear.com> * * This linker script is equiped to build either ROM loaded or RAM * run kernels. */ #include <asm-generic/vmlinux.lds.h> #if defined(CONFIG_RAMKERNEL) #define RAM_START CONFIG_KERNELBAS...
alibaba/LVS
3,426
kernel/arch/m68knommu/lib/umodsi3.S
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
alibaba/LVS
5,143
kernel/arch/m68knommu/lib/udivsi3.S
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
alibaba/LVS
3,589
kernel/arch/m68knommu/lib/divsi3.S
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
alibaba/LVS
3,423
kernel/arch/m68knommu/lib/modsi3.S
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
alibaba/LVS
3,295
kernel/arch/m68knommu/lib/mulsi3.S
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
alibaba/LVS
16,356
kernel/arch/m68knommu/platform/68360/head-ram.S
/* arch/m68knommu/platform/68360/head-ram.S * * Startup code for Motorola 68360 * * Copyright 2001 (C) SED Systems, a Division of Calian Ltd. * Based on: arch/m68knommu/platform/68328/pilot/crt0_rom.S * Based on: arch/m68knommu/platform/68360/uCquicc/crt0_rom.S, 2.0.38.1.pre7 * uClinux Kernel * Copyri...
alibaba/LVS
4,044
kernel/arch/m68knommu/platform/68360/entry.S
/* * linux/arch/m68knommu/platform/68360/entry.S * * Copyright (C) 1991, 1992 Linus Torvalds * Copyright (C) 2001 SED Systems, a Division of Calian Ltd. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file README.legal in the main directory of this archive ...
alibaba/LVS
16,657
kernel/arch/m68knommu/platform/68360/head-rom.S
/* arch/m68knommu/platform/68360/head-rom.S * * Startup code for Motorola 68360 * * Copyright (C) SED Systems, a Division of Calian Ltd. * Based on: arch/m68knommu/platform/68328/pilot/crt0_rom.S * Based on: arch/m68knommu/platform/68360/uCquicc/crt0_rom.S, 2.0.38.1.pre7 * uClinux Kernel * Copyright (...
alibaba/LVS
5,748
kernel/arch/m68knommu/platform/coldfire/head.S
/*****************************************************************************/ /* * head.S -- common startup code for ColdFire CPUs. * * (C) Copyright 1999-2006, Greg Ungerer <gerg@snapgear.com>. */ /*****************************************************************************/ #include <linux/sys.h> #include <...
alibaba/LVS
6,418
kernel/arch/m68knommu/platform/coldfire/entry.S
/* * linux/arch/m68knommu/platform/5307/entry.S * * Copyright (C) 1999-2007, Greg Ungerer (gerg@snapgear.com) * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>, * Kenneth Albanowski <kjahds@kjahds.com>, * Copyright (C) 2000 Lineo Inc. (www.lineo.com) * Copyright (C) 2004-2006 Macq ...
alibaba/LVS
3,048
kernel/arch/m68knommu/platform/68328/head-ram.S
.global __main .global __rom_start .global _rambase .global _ramstart .global splash_bits .global _start .global _stext .global _edata #define DEBUG #define ROM_OFFSET 0x10C00000 #define STACK_GAURD 0x10 .text _start: _stext: movew #0x2700, %sr /* Exceptions off! */ #if 0 /*...
alibaba/LVS
5,920
kernel/arch/m68knommu/platform/68328/entry.S
/* * linux/arch/m68knommu/platform/68328/entry.S * * Copyright (C) 1991, 1992 Linus Torvalds * * This file is subject to the terms and conditions of the GNU General Public * License. See the file README.legal in the main directory of this archive * for more details. * * Linux/m68k support by Hamish Macdona...
alibaba/LVS
3,751
kernel/arch/m68knommu/platform/68328/head-pilot.S
/* * linux/arch/m68knommu/platform/68328/head-pilot.S * - A startup file for the MC68328 * * Copyright (C) 1998 D. Jeff Dionne <jeff@ryeham.ee.ryerson.ca>, * Kenneth Albanowski <kjahds@kjahds.com>, * The Silver Hammer Group, Ltd. * * (c) 1995, Dionne & Associates * (c) ...
alibaba/LVS
1,936
kernel/arch/m68knommu/platform/68328/head-rom.S
.global _start .global _stext .global _rambase .global _ramvec .global _ramstart .global _ramend #ifdef CONFIG_INIT_LCD .global splash_bits #endif .data /* * Set up the usable of RAM stuff. Size of RAM is determined then * an initial stack set up at the end. */ .align 4 _ramvec: .long 0 _ra...
alibaba/LVS
1,842
kernel/arch/m68knommu/platform/68328/head-de2.S
#if defined(CONFIG_RAM32MB) #define MEM_END 0x02000000 /* Memory size 32Mb */ #elif defined(CONFIG_RAM16MB) #define MEM_END 0x01000000 /* Memory size 16Mb */ #else #define MEM_END 0x00800000 /* Memory size 8Mb */ #endif #undef CRT_DEBUG .macro PUTC CHAR #ifdef CRT_DEBUG moveq #\CHAR, %d7 jsr putc #endif .endm .g...
alibaba/LVS
9,063
kernel/arch/parisc/kernel/head.S
/* This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 1999-2007 by Helge Deller <deller@gmx.de> * Copyright 1999 SuSE GmbH (Philipp Rumpf) * Copyright 1999 Philipp Rumpf (prumpf@t...
alibaba/LVS
13,317
kernel/arch/parisc/kernel/syscall_table.S
/* System Call Table * * Copyright (C) 1999-2004 Matthew Wilcox <willy at parisc-linux.org> * Copyright (C) 2000-2001 John Marvin <jsm at parisc-linux.org> * Copyright (C) 2000 Alan Modra <amodra at parisc-linux.org> * Copyright (C) 2000-2003 Paul Bame <bame at parisc-linux.org> * Copyright (C) ...
alibaba/LVS
56,606
kernel/arch/parisc/kernel/entry.S
/* * Linux/PA-RISC Project (http://www.parisc-linux.org/) * * kernel entry points (interruptions, system call wrappers) * Copyright (C) 1999,2000 Philipp Rumpf * Copyright (C) 1999 SuSE GmbH Nuernberg * Copyright (C) 2000 Hewlett-Packard (John Marvin) * Copyright (C) 1999 Hewlett-Packard (Frank Rowand) * ...
alibaba/LVS
24,565
kernel/arch/parisc/kernel/pacache.S
/* * PARISC TLB and cache flushing support * Copyright (C) 2000-2001 Hewlett-Packard (John Marvin) * Copyright (C) 2001 Matthew Wilcox (willy at parisc-linux.org) * Copyright (C) 2002 Richard Hirst (rhirst with parisc-linux.org) * * This program is free software; you can redistribute it and/or modify * ...
alibaba/LVS
19,463
kernel/arch/parisc/kernel/syscall.S
/* * Linux/PA-RISC Project (http://www.parisc-linux.org/) * * System call entry code Copyright (c) Matthew Wilcox 1999 <willy@bofh.ai> * Licensed under the GNU GPL. * thanks to Philipp Rumpf, Mike Shaver and various others * sorry about the wall, puffin.. */ #include <asm/asm-offsets.h> #include <asm/unistd.h...
alibaba/LVS
7,801
kernel/arch/parisc/kernel/hpmc.S
/* * HPMC (High Priority Machine Check) handler. * * Copyright (C) 1999 Philipp Rumpf <prumpf@tux.org> * Copyright (C) 1999 Hewlett-Packard (Frank Rowand) * Copyright (C) 2000 Hewlett-Packard (John Marvin) * * This program is free software; you can redistribute it and/or modify * it under the terms of th...
alibaba/LVS
26,159
kernel/arch/parisc/kernel/perf_asm.S
/* low-level asm for "intrigue" (PA8500-8700 CPU perf counters) * * Copyright (C) 2001 Randolph Chung <tausq at parisc-linux.org> * Copyright (C) 2001 Hewlett-Packard (Grant Grundler) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General...
alibaba/LVS
3,790
kernel/arch/parisc/kernel/vmlinux.lds.S
/* Kernel link layout for various "sections" * * Copyright (C) 1999-2003 Matthew Wilcox <willy at parisc-linux.org> * Copyright (C) 2000-2003 Paul Bame <bame at parisc-linux.org> * Copyright (C) 2000 John Marvin <jsm at parisc-linux.org> * Copyright (C) 2000 Michael Ang <mang with subcarrier.org> *...
alibaba/LVS
6,298
kernel/arch/parisc/kernel/real2.S
/* * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2000 Hewlett Packard (Paul Bame bame@puffin.external.hp.com) * */ #include <asm/pdc.h> #include <asm/psw.h> #include <...
alibaba/LVS
21,687
kernel/arch/parisc/hpux/entry_hpux.S
/* syscall table for HPUX specific syscalls * * Linux/PA-RISC Project (http://www.parisc-linux.org/) * Copyright (C) 1999 Matthew Wilcox <willy at debian . org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as publish...
alibaba/LVS
3,654
kernel/arch/parisc/hpux/gate.S
/* * * Linux/PARISC Project (http://www.parisc-linux.org/) * * System call entry code Copyright (c) Matthew Wilcox 1999 <willy@bofh.ai> * Licensed under the GNU GPL. * thanks to Philipp Rumpf, Mike Shaver and various others * sorry about the wall, puffin.. */ #include <asm/assembly.h> #include <asm/asm-offsets...
alibaba/LVS
6,250
kernel/arch/parisc/hpux/wrappers.S
/* * Linux/PARISC Project (http://www.parisc-linux.org/) * * HP-UX System Call Wrapper routines and System Call Return Path * * Copyright (C) 2000 Hewlett-Packard (John Marvin) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License a...
alibaba/LVS
2,440
kernel/arch/parisc/lib/fixup.S
/* * Linux/PA-RISC Project (http://www.parisc-linux.org/) * * Copyright (C) 2004 Randolph Chung <tausq@debian.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either vers...
alibaba/LVS
4,137
kernel/arch/parisc/lib/lusercopy.S
/* * User Space Access Routines * * Copyright (C) 2000-2002 Hewlett-Packard (John Marvin) * Copyright (C) 2000 Richard Hirst <rhirst with parisc-linux.org> * Copyright (C) 2001 Matthieu Delahaye <delahaym at esiee.fr> * Copyright (C) 2003 Randolph Chung <tausq with parisc-linux.org> * * * Thi...
alibaba/LVS
7,431
kernel/arch/sparc/kernel/ktlb.S
/* arch/sparc64/kernel/ktlb.S: Kernel mapping TLB miss handling. * * Copyright (C) 1995, 1997, 2005, 2008 David S. Miller <davem@davemloft.net> * Copyright (C) 1996 Eddie C. Dost (ecd@brainaid.de) * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx) * Copyright (C) 1996,98,99 Jakub Jelinek (j...
alibaba/LVS
9,179
kernel/arch/sparc/kernel/etrap_32.S
/* * etrap.S: Sparc trap window preparation for entry into the * Linux kernel. * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) */ #include <asm/head.h> #include <asm/asi.h> #include <asm/contregs.h> #include <asm/page.h> #include <asm/psr.h> #include <asm/ptrace.h> #include <asm/winmacro....
alibaba/LVS
12,488
kernel/arch/sparc/kernel/sys32.S
/* * sys32.S: I-cache tricks for 32-bit compatibility layer simple * conversions. * * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz) */ #include <asm/errno.h> /* NOTE: call as jump breaks return stack, we have to avoid that */ .tex...
alibaba/LVS
15,233
kernel/arch/sparc/kernel/cherrs.S
/* These get patched into the trap table at boot time * once we know we have a cheetah processor. */ .globl cheetah_fecc_trap_vector .type cheetah_fecc_trap_vector,#function cheetah_fecc_trap_vector: membar #Sync ldxa [%g0] ASI_DCU_CONTROL_REG, %g1 andn %g1, DCU_DC | DCU_IC, %g1 stxa %g1, [%g0] ASI_DCU...
alibaba/LVS
13,114
kernel/arch/sparc/kernel/wof.S
/* * wof.S: Sparc window overflow handler. * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) */ #include <asm/contregs.h> #include <asm/page.h> #include <asm/ptrace.h> #include <asm/psr.h> #include <asm/smp.h> #include <asm/asi.h> #include <asm/winmacro.h> #include <asm/asmmacro.h> #include <asm/thre...
alibaba/LVS
11,048
kernel/arch/sparc/kernel/ttable.S
/* ttable.S: Sparc V9 Trap Table(s) with SpitFire/Cheetah/SUN4V extensions. * * Copyright (C) 1996, 2001, 2006 David S. Miller (davem@davemloft.net) */ .globl sparc64_ttable_tl0, sparc64_ttable_tl1 .globl tl0_icpe, tl1_icpe .globl tl0_dcpe, tl1_dcpe .globl tl0_fecc, tl1_fecc .globl tl0_cee, tl1_cee .globl tl...
alibaba/LVS
3,087
kernel/arch/sparc/kernel/una_asm_64.S
/* una_asm.S: Kernel unaligned trap assembler helpers. * * Copyright (C) 1996,2005 David S. Miller (davem@davemloft.net) * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) */ .text .globl __do_int_store __do_int_store: rd %asi, %o4 wr %o3, 0, %asi mov %o2, %g3 cmp %o1, 2 be,pn %icc, 2f cmp ...
alibaba/LVS
13,837
kernel/arch/sparc/kernel/hvcalls.S
/* %o0: devhandle * %o1: devino * * returns %o0: sysino */ ENTRY(sun4v_devino_to_sysino) mov HV_FAST_INTR_DEVINO2SYSINO, %o5 ta HV_FAST_TRAP retl mov %o1, %o0 ENDPROC(sun4v_devino_to_sysino) /* %o0: sysino * * returns %o0: intr_enabled (HV_INTR_{DISABLED,ENABLED}) */ ENTRY(sun4v_intr_getenabled) ...