repo_id
stringlengths
5
115
size
int64
590
5.01M
file_path
stringlengths
4
212
content
stringlengths
590
5.01M
AirFortressIlikara/LS2K0300-linux-4.19
9,057
arch/x86/crypto/sha512-mb/sha512_mb_mgr_datastruct.S
/* * Header file for multi buffer SHA256 algorithm data structure * * This file is provided under a dual BSD/GPLv2 license. When using or * redistributing this file, you may do so under either license. * * GPL LICENSE SUMMARY * * Copyright(c) 2016 Intel Corporation. * * This program is free software; you c...
AirFortressIlikara/LS2K0300-linux-4.19
8,848
arch/x86/crypto/sha512-mb/sha512_mb_mgr_flush_avx2.S
/* * Flush routine for SHA512 multibuffer * * This file is provided under a dual BSD/GPLv2 license. When using or * redistributing this file, you may do so under either license. * * GPL LICENSE SUMMARY * * Copyright(c) 2016 Intel Corporation. * * This program is free software; you can redistribute it and/or ...
AirFortressIlikara/LS2K0300-linux-4.19
6,758
arch/x86/crypto/sha512-mb/sha512_mb_mgr_submit_avx2.S
/* * Buffer submit code for multi buffer SHA512 algorithm * * This file is provided under a dual BSD/GPLv2 license. When using or * redistributing this file, you may do so under either license. * * GPL LICENSE SUMMARY * * Copyright(c) 2016 Intel Corporation. * * This program is free software; you can redistr...
AirFortressIlikara/LS2K0300-linux-4.19
2,348
arch/x86/boot/compressed/efi_stub_32.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * EFI call stub for IA32. * * This stub allows us to make EFI calls in physical mode with interrupts * turned off. Note that this implementation is different from the one in * arch/x86/platform/efi/efi_stub_32.S because we're _already_ in physical * mode at this point. *...
AirFortressIlikara/LS2K0300-linux-4.19
6,303
arch/x86/boot/compressed/head_32.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/boot/head.S * * Copyright (C) 1991, 1992, 1993 Linus Torvalds */ /* * head.S contains the 32-bit startup code. * * NOTE!!! Startup happens at absolute address 0x00001000, which is also where * the page directory will exist. The startup code will be overwrit...
AirFortressIlikara/LS2K0300-linux-4.19
3,694
arch/x86/boot/compressed/efi_thunk_64.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2014, 2015 Intel Corporation; author Matt Fleming * * Early support for invoking 32-bit EFI services from a 64-bit kernel. * * Because this thunking occurs before ExitBootServices() we have to * restore the firmware's 32-bit GDT before we make EFI serivce ...
AirFortressIlikara/LS2K0300-linux-4.19
2,043
arch/x86/boot/compressed/mem_encrypt.S
/* * AMD Memory Encryption Support * * Copyright (C) 2017 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * * 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...
AirFortressIlikara/LS2K0300-linux-4.19
1,216
arch/x86/boot/compressed/vmlinux.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm-generic/vmlinux.lds.h> OUTPUT_FORMAT(CONFIG_OUTPUT_FORMAT, CONFIG_OUTPUT_FORMAT, CONFIG_OUTPUT_FORMAT) #undef i386 #include <asm/cache.h> #include <asm/page_types.h> #ifdef CONFIG_X86_64 OUTPUT_ARCH(i386:x86-64) ENTRY(startup_64) #else OUTPUT_ARCH(i386) ENTRY(sta...
AirFortressIlikara/LS2K0300-linux-4.19
16,639
arch/x86/boot/compressed/head_64.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/boot/head.S * * Copyright (C) 1991, 1992, 1993 Linus Torvalds */ /* * head.S contains the 32-bit startup code. * * NOTE!!! Startup happens at absolute address 0x00001000, which is also where * the page directory will exist. The startup code will be overwrit...
AirFortressIlikara/LS2K0300-linux-4.19
2,905
arch/x86/entry/vdso/vdso-layout.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm/vdso.h> /* * Linker script for vDSO. This is an ELF shared object prelinked to * its virtual address, and with only one read-only segment. * This script controls its layout. */ #if defined(BUILD_VDSO64) # define SHDR_SIZE 64 #elif defined(BUILD_VDSO32) || defi...
AirFortressIlikara/LS2K0300-linux-4.19
4,861
arch/x86/entry/vdso/vdso32/sigreturn.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> #include <asm/unistd_32.h> #include <asm/asm-offsets.h> #ifndef SYSCALL_ENTER_KERNEL #define SYSCALL_ENTER_KERNEL int $0x80 #endif .text .globl __kernel_sigreturn .type __kernel_sigreturn,@function nop /* this guy is needed for .LSTARTFDEDLSI1 belo...
AirFortressIlikara/LS2K0300-linux-4.19
1,757
arch/x86/entry/vdso/vdso32/note.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * This supplies .note.* sections to go into the PT_NOTE inside the vDSO text. * Here we can supply some information useful to userland. */ #include <linux/build-salt.h> #include <linux/version.h> #include <linux/elfnote.h> /* Ideally this would use UTS_NAME, but using a qu...
AirFortressIlikara/LS2K0300-linux-4.19
2,410
arch/x86/entry/vdso/vdso32/system_call.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * AT_SYSINFO entry point */ #include <linux/linkage.h> #include <asm/dwarf2.h> #include <asm/cpufeatures.h> #include <asm/alternative-asm.h> .text .globl __kernel_vsyscall .type __kernel_vsyscall,@function ALIGN __kernel_vsyscall: CFI_STARTPROC /* * Reshuffle regs so...
AirFortressIlikara/LS2K0300-linux-4.19
2,175
arch/alpha/kernel/head.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/kernel/head.S * * initial boot stuff.. At this point, the bootloader has already * switched into OSF/1 PAL-code, and loaded us at the correct address * (START_ADDR). So there isn't much left for us to do: just set up * the kernel global pointer and jump to t...
AirFortressIlikara/LS2K0300-linux-4.19
17,965
arch/alpha/kernel/entry.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/kernel/entry.S * * Kernel entry-points. */ #include <asm/asm-offsets.h> #include <asm/thread_info.h> #include <asm/pal.h> #include <asm/errno.h> #include <asm/unistd.h> .text .set noat .cfi_sections .debug_frame /* Stack offsets. */ #define SP_OFF 184 ...
AirFortressIlikara/LS2K0300-linux-4.19
13,756
arch/alpha/kernel/systbls.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/kernel/systbls.S * * The system call table. */ #include <asm/unistd.h> .data .align 3 .globl sys_call_table sys_call_table: .quad alpha_ni_syscall /* 0 */ .quad sys_exit .quad alpha_fork .quad sys_read .quad sys_write .quad alpha_ni_syscall /* 5...
AirFortressIlikara/LS2K0300-linux-4.19
1,441
arch/alpha/kernel/vmlinux.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm-generic/vmlinux.lds.h> #include <asm/thread_info.h> #include <asm/cache.h> #include <asm/page.h> #include <asm/setup.h> OUTPUT_FORMAT("elf64-alpha") OUTPUT_ARCH(alpha) ENTRY(__start) PHDRS { kernel PT_LOAD; note PT_NOTE; } jiffies = jiffies_64; SECTIONS { #ifdef CON...
AirFortressIlikara/LS2K0300-linux-4.19
3,290
arch/alpha/math-emu/qrnnd.S
# Alpha 21064 __udiv_qrnnd # Copyright (C) 1992, 1994, 1995, 2000 Free Software Foundation, Inc. # This file is part of GCC. # The GNU MP Library 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 ...
AirFortressIlikara/LS2K0300-linux-4.19
2,491
arch/alpha/lib/clear_user.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/clear_user.S * Contributed by Richard Henderson <rth@tamu.edu> * * Zero user space, handling exceptions as we go. * * We have to make sure that $0 is always up-to-date and contains the * right "bytes left to zero" value (and that it is updated only _afte...
AirFortressIlikara/LS2K0300-linux-4.19
4,406
arch/alpha/lib/divide.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/divide.S * * (C) 1995 Linus Torvalds * * Alpha division.. */ /* * The alpha chip doesn't provide hardware division, so we have to do it * by hand. The compiler expects the functions * * __divqu: 64-bit unsigned long divide * __remqu: 64-bit unsigne...
AirFortressIlikara/LS2K0300-linux-4.19
2,880
arch/alpha/lib/ev67-strchr.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev67-strchr.S * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * Return the address of a given character within a null-terminated * string, or null if it is not found. * * Much of the information about 21264 scheduling/codin...
AirFortressIlikara/LS2K0300-linux-4.19
8,994
arch/alpha/lib/stxcpy.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/stxcpy.S * Contributed by Richard Henderson (rth@tamu.edu) * * Copy a null-terminated string from SRC to DST. * * This is an internal routine used by strcpy, stpcpy, and strcat. * As such, it uses special linkage conventions to make implementation * of ...
AirFortressIlikara/LS2K0300-linux-4.19
16,394
arch/alpha/lib/ev6-memset.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-memset.S * * This is an efficient (and relatively small) implementation of the C library * "memset()" function for the 21264 implementation of Alpha. * * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * Much of the inf...
AirFortressIlikara/LS2K0300-linux-4.19
2,999
arch/alpha/lib/callback_srm.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/callback_srm.S */ #include <asm/console.h> #include <asm/export.h> .text #define HWRPB_CRB_OFFSET 0xc0 #if defined(CONFIG_ALPHA_SRM) || defined(CONFIG_ALPHA_GENERIC) .align 4 srm_dispatch: #if defined(CONFIG_ALPHA_GENERIC) ldl $4,alpha_using_srm beq $4,n...
AirFortressIlikara/LS2K0300-linux-4.19
6,378
arch/alpha/lib/ev6-memcpy.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-memcpy.S * 21264 version by Rick Gorton <rick.gorton@alpha-processor.com> * * Reasonably optimized memcpy() routine for the Alpha 21264 * * - memory accessed as aligned quadwords only * - uses bcmpge to compare 8 bytes in parallel * * Much of the i...
AirFortressIlikara/LS2K0300-linux-4.19
9,666
arch/alpha/lib/ev6-stxcpy.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-stxcpy.S * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * Copy a null-terminated string from SRC to DST. * * This is an internal routine used by strcpy, stpcpy, and strcat. * As such, it uses special linkage convention...
AirFortressIlikara/LS2K0300-linux-4.19
1,914
arch/alpha/lib/strncat.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/strncat.S * Contributed by Richard Henderson (rth@tamu.edu) * * Append no more than COUNT characters from the null-terminated string SRC * to the null-terminated string DST. Always null-terminate the new DST. * * This differs slightly from the semantics...
AirFortressIlikara/LS2K0300-linux-4.19
10,883
arch/alpha/lib/stxncpy.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/stxncpy.S * Contributed by Richard Henderson (rth@tamu.edu) * * Copy no more than COUNT bytes of the null-terminated string from * SRC to DST. * * This is an internal routine used by strncpy, stpncpy, and strncat. * As such, it uses special linkage conv...
AirFortressIlikara/LS2K0300-linux-4.19
1,361
arch/alpha/lib/ev67-strlen.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev67-strlen.S * 21264 version by Rick Gorton <rick.gorton@alpha-processor.com> * * Finds length of a 0-terminated string. Optimized for the * Alpha architecture: * * - memory accessed as aligned quadwords only * - uses bcmpge to compare 8 bytes in para...
AirFortressIlikara/LS2K0300-linux-4.19
11,554
arch/alpha/lib/ev6-stxncpy.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-stxncpy.S * 21264 version contributed by Rick Gorton <rick.gorton@api-networks.com> * * Copy no more than COUNT bytes of the null-terminated string from * SRC to DST. * * This is an internal routine used by strncpy, stpncpy, and strncat. * As such, ...
AirFortressIlikara/LS2K0300-linux-4.19
2,735
arch/alpha/lib/memmove.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/memmove.S * * Barely optimized memmove routine for Alpha EV5. * * This is hand-massaged output from the original memcpy.c. We defer to * memcpy whenever possible; the backwards copy loops are not unrolled. */ #include <asm/export.h> .set noat ...
AirFortressIlikara/LS2K0300-linux-4.19
1,627
arch/alpha/lib/ev67-strcat.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev67-strcat.S * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * Append a null-terminated string from SRC to DST. * * Much of the information about 21264 scheduling/coding comes from: * Compiler Writer's Guide for the Alpha ...
AirFortressIlikara/LS2K0300-linux-4.19
5,444
arch/alpha/lib/ev6-memchr.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-memchr.S * * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * Finds characters in a memory area. Optimized for the Alpha: * * - memory accessed as aligned quadwords only * - uses cmpbge to compare 8 bytes in para...
AirFortressIlikara/LS2K0300-linux-4.19
3,198
arch/alpha/lib/memset.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/arch/alpha/lib/memset.S * * This is an efficient (and small) implementation of the C library "memset()" * function for the alpha. * * (C) Copyright 1996 Linus Torvalds * * This routine is "moral-ware": you are free to use it any way you wish, and * the only obl...
AirFortressIlikara/LS2K0300-linux-4.19
5,302
arch/alpha/lib/ev6-csum_ipv6_magic.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-csum_ipv6_magic.S * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * unsigned short csum_ipv6_magic(struct in6_addr *saddr, * struct in6_addr *daddr, * __u32 l...
AirFortressIlikara/LS2K0300-linux-4.19
2,116
arch/alpha/lib/copy_user.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/copy_user.S * * Copy to/from user space, handling exceptions as we go.. This * isn't exactly pretty. * * This is essentially the same as "memcpy()", but with a few twists. * Notably, we have to make sure that $0 is always up-to-date and * contains the ...
AirFortressIlikara/LS2K0300-linux-4.19
6,508
arch/alpha/lib/ev6-divide.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-divide.S * * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * Alpha division.. */ /* * The alpha chip doesn't provide hardware division, so we have to do it * by hand. The compiler expects the functions * * __divqu:...
AirFortressIlikara/LS2K0300-linux-4.19
2,980
arch/alpha/lib/csum_ipv6_magic.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/csum_ipv6_magic.S * Contributed by Richard Henderson <rth@tamu.edu> * * unsigned short csum_ipv6_magic(struct in6_addr *saddr, * struct in6_addr *daddr, * __u32 len, * ...
AirFortressIlikara/LS2K0300-linux-4.19
2,854
arch/alpha/lib/strrchr.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/strrchr.S * Contributed by Richard Henderson (rth@tamu.edu) * * Return the address of the last occurrence of a given character * within a null-terminated string, or null if it is not found. */ #include <asm/export.h> #include <asm/regdef.h> .set noreord...
AirFortressIlikara/LS2K0300-linux-4.19
3,379
arch/alpha/lib/ev67-strrchr.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev67-strrchr.S * 21264 version by Rick Gorton <rick.gorton@alpha-processor.com> * * Finds length of a 0-terminated string. Optimized for the * Alpha architecture: * * - memory accessed as aligned quadwords only * - uses bcmpge to compare 8 bytes in par...
AirFortressIlikara/LS2K0300-linux-4.19
5,047
arch/alpha/lib/memchr.S
/* Copyright (C) 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger (davidm@cs.arizona.edu). The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the ...
AirFortressIlikara/LS2K0300-linux-4.19
4,341
arch/alpha/lib/ev6-copy_page.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-copy_page.S * * Copy an entire page. */ /* The following comparison of this routine vs the normal copy_page.S was written by an unnamed ev6 hardware designer and forwarded to me via Steven Hobbs <hobbs@steven.zko.dec.com>. First Problem: STQ...
AirFortressIlikara/LS2K0300-linux-4.19
7,189
arch/alpha/lib/ev6-clear_user.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-clear_user.S * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * Zero user space, handling exceptions as we go. * * We have to make sure that $0 is always up-to-date and contains the * right "bytes left to zero" value (an...
AirFortressIlikara/LS2K0300-linux-4.19
1,220
arch/alpha/lib/strlen.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * strlen.S (c) 1995 David Mosberger (davidm@cs.arizona.edu) * * Finds length of a 0-terminated string. Optimized for the * Alpha architecture: * * - memory accessed as aligned quadwords only * - uses bcmpge to compare 8 bytes in parallel * - does binary search to find ...
AirFortressIlikara/LS2K0300-linux-4.19
2,502
arch/alpha/lib/ev67-strncat.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev67-strncat.S * 21264 version contributed by Rick Gorton <rick.gorton@api-networks.com> * * Append no more than COUNT characters from the null-terminated string SRC * to the null-terminated string DST. Always null-terminate the new DST. * * This differ...
AirFortressIlikara/LS2K0300-linux-4.19
1,032
arch/alpha/lib/strcat.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/strcat.S * Contributed by Richard Henderson (rth@tamu.edu) * * Append a null-terminated string from SRC to DST. */ #include <asm/export.h> .text .align 3 .globl strcat .ent strcat strcat: .frame $30, 0, $26 .prologue 0 mov $16, $0 # set up retur...
AirFortressIlikara/LS2K0300-linux-4.19
2,019
arch/alpha/lib/strchr.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/strchr.S * Contributed by Richard Henderson (rth@tamu.edu) * * Return the address of a given character within a null-terminated * string, or null if it is not found. */ #include <asm/export.h> #include <asm/regdef.h> .set noreorder .set noat .align 3...
AirFortressIlikara/LS2K0300-linux-4.19
7,016
arch/alpha/lib/ev6-copy_user.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/ev6-copy_user.S * * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> * * Copy to/from user space, handling exceptions as we go.. This * isn't exactly pretty. * * This is essentially the same as "memcpy()", but with a few twist...
AirFortressIlikara/LS2K0300-linux-4.19
1,572
arch/alpha/lib/strncpy.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/lib/strncpy.S * Contributed by Richard Henderson (rth@tamu.edu) * * Copy no more than COUNT bytes of the null-terminated string from * SRC to DST. If SRC does not cover all of COUNT, the balance is * zeroed. * * Or, rather, if the kernel cared about that w...
AirFortressIlikara/LS2K0300-linux-4.19
1,845
arch/alpha/boot/head.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/alpha/boot/head.S * * initial bootloader stuff.. */ #include <asm/pal.h> .set noreorder .globl __start .ent __start __start: br $29,2f 2: ldgp $29,0($29) jsr $26,start_kernel call_pal PAL_halt .end __start .align 5 .globl wrent .ent wrent wrent: .prolog...
AirFortressIlikara/LS2K0300-linux-4.19
1,318
arch/mips/power/hibernate_asm.S
/* * Hibernation support specific for mips - temporary page tables * * Licensed under the GPLv2 * * Copyright (C) 2009 Lemote Inc. * Author: Hu Hongbing <huhb@lemote.com> * Wu Zhangjin <wuzhangjin@gmail.com> */ #include <asm/asm-offsets.h> #include <asm/regdef.h> #include <asm/asm.h> .text LEAF(swsusp_arch_...
AirFortressIlikara/LS2K0300-linux-4.19
2,750
arch/mips/vdso/vdso.lds.S
/* * Copyright (C) 2015 Imagination Technologies * Author: Alex Smith <alex.smith@imgtec.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 version 2 of the License, or (at yo...
AirFortressIlikara/LS2K0300-linux-4.19
1,803
arch/mips/vdso/elf.S
/* * Copyright (C) 2015 Imagination Technologies * Author: Alex Smith <alex.smith@imgtec.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 version 2 of the License, or (at yo...
AirFortressIlikara/LS2K0300-linux-4.19
7,649
arch/mips/dec/int-handler.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 1995, 1996, 1997 Paul M. Antoine and Harald Koerfgen * Copyright (C) 2000, 2001, 2002, 2003, 2005 Maciej W. Rozycki * * Written by Ralf Baechle and Andreas Busse, modified for DECstation * support by Paul Antoine and Harald Koerfgen. * * completely rewri...
AirFortressIlikara/LS2K0300-linux-4.19
4,360
arch/mips/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) 1994, 1995 Waldorf Electronics * Written by Ralf Baechle and Andreas Busse * Copyright (C) 1994 - 99, 2003, 06 Ralf Baechl...
AirFortressIlikara/LS2K0300-linux-4.19
11,586
arch/mips/kernel/r4k_fpu.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) 1996, 98, 99, 2000, 01 Ralf Baechle * * Multi-arch abstraction and asm macros for easier reading: * Copyright (C) 1996 Da...
AirFortressIlikara/LS2K0300-linux-4.19
3,799
arch/mips/kernel/r2300_fpu.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) 1996, 1998 by Ralf Baechle * * Multi-arch abstraction and asm macros for easier reading: * Copyright (C) 1996 David S. Mi...
AirFortressIlikara/LS2K0300-linux-4.19
7,181
arch/mips/kernel/bmips_vec.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) 2011 by Kevin Cernekee (cernekee@gmail.com) * * Reset/NMI/re-entry vectors for BMIPS processors */ #include <asm/asm.h>...
AirFortressIlikara/LS2K0300-linux-4.19
14,945
arch/mips/kernel/octeon_switch.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) 1994, 1995, 1996, 1998, 1999, 2002, 2003 Ralf Baechle * Copyright (C) 1996 David S. Miller (davem@davemloft.net) * Copyrig...
AirFortressIlikara/LS2K0300-linux-4.19
10,036
arch/mips/kernel/scall64-64.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) 1995, 96, 97, 98, 99, 2000, 01, 02 by Ralf Baechle * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2001 ...
AirFortressIlikara/LS2K0300-linux-4.19
3,880
arch/mips/kernel/entry-ftrace-regs.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/mips/kernel/entry_ftrace.S * * Copyright (C) 2021 Loongson Corp * Author: Huang Pei <huangpei@loongson.cn> */ #include <asm/export.h> #include <asm/regdef.h> #include <asm/stackframe.h> /* * ftrace_regs_caller() is the function that replaces _mcount() when f...
AirFortressIlikara/LS2K0300-linux-4.19
4,409
arch/mips/kernel/entry.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) 1994 - 2000, 2001, 2003 Ralf Baechle * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2001 MIPS Technolog...
AirFortressIlikara/LS2K0300-linux-4.19
4,801
arch/mips/kernel/relocate_kernel.S
/* * relocate_kernel.S for kexec * Created by <nschichan@corp.free.fr> on Thu Oct 12 17:49:57 2006 * * This source code is licensed under the GNU General Public License, * Version 2. See the file COPYING for more details. */ #include <asm/asm.h> #include <asm/asmmacro.h> #include <asm/cpu.h> #include <asm/regde...
AirFortressIlikara/LS2K0300-linux-4.19
13,409
arch/mips/kernel/bmips_5xxx_init.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) 2011-2012 by Broadcom Corporation * * Init for bmips 5000. * Used to init second core in dual core 5000's. */ #include...
AirFortressIlikara/LS2K0300-linux-4.19
1,596
arch/mips/kernel/r4k_switch.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) 1994, 1995, 1996, 1998, 1999, 2002, 2003 Ralf Baechle * Copyright (C) 1996 David S. Miller (davem@davemloft.net) * Copyrig...
AirFortressIlikara/LS2K0300-linux-4.19
4,964
arch/mips/kernel/cps-vec-ns16550.S
/* * Copyright (C) 2015 Imagination Technologies * Author: Paul Burton <paul.burton@mips.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 version 2 of the License, or (at yo...
AirFortressIlikara/LS2K0300-linux-4.19
10,582
arch/mips/kernel/scall64-n32.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) 1995, 96, 97, 98, 99, 2000, 01 by Ralf Baechle * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2001 MIPS...
AirFortressIlikara/LS2K0300-linux-4.19
1,495
arch/mips/kernel/r2300_switch.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * r2300_switch.S: R2300 specific task switching code. * * Copyright (C) 1994, 1995, 1996, 1999 by Ralf Baechle * Copyright (C) 1994, 1995, 1996 by Andreas Busse * * Multi-cpu abstraction and macros for easier reading: * Copyright (C) 1996 David S. Miller (davem@davemloft...
AirFortressIlikara/LS2K0300-linux-4.19
14,255
arch/mips/kernel/scall64-o32.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) 1995 - 2000, 2001 by Ralf Baechle * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2001 MIPS Technologies...
AirFortressIlikara/LS2K0300-linux-4.19
4,466
arch/mips/kernel/mcount.S
/* * MIPS specific _mcount support * * 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) 2009 Lemote Inc. & DSLab, Lanzhou University, China * Copyright (C) 2010 DSLab, Lanzhou...
AirFortressIlikara/LS2K0300-linux-4.19
5,236
arch/mips/kernel/vmlinux.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm/asm-offsets.h> #include <asm/thread_info.h> #define PAGE_SIZE _PAGE_SIZE /* * Put .bss..swapper_pg_dir as the first thing in .bss. This will * ensure that it has .bss alignment (64K). */ #define BSS_FIRST_SECTIONS *(.bss..swapper_pg_dir) #include <asm-generic/v...
AirFortressIlikara/LS2K0300-linux-4.19
14,421
arch/mips/kernel/genex.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) 1994 - 2000, 2001, 2003 Ralf Baechle * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2002, 2007 Maciej ...
AirFortressIlikara/LS2K0300-linux-4.19
12,426
arch/mips/kernel/cps-vec.S
/* * Copyright (C) 2013 Imagination Technologies * Author: Paul Burton <paul.burton@mips.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 version 2 of the License, or (at yo...
AirFortressIlikara/LS2K0300-linux-4.19
13,500
arch/mips/kernel/scall32-o32.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) 1995-99, 2000- 02, 06 Ralf Baechle <ralf@linux-mips.org> * Copyright (C) 2001 MIPS Technologies, Inc. * Copyright (C) 2004...
AirFortressIlikara/LS2K0300-linux-4.19
12,534
arch/mips/cavium-octeon/octeon-memcpy.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. * * Unified implementation of memcpy, memmove and the __copy_user backend. * * Copyright (C) 1998, 99, 2000, 01, 2002 Ralf Baechle (ralf@gnu...
AirFortressIlikara/LS2K0300-linux-4.19
1,847
arch/mips/lib/strnlen_user.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) 1996, 1998, 1999, 2004 by Ralf Baechle * Copyright (c) 1999 Silicon Graphics, Inc. */ #include <asm/asm.h> #include <asm/a...
AirFortressIlikara/LS2K0300-linux-4.19
17,760
arch/mips/lib/memcpy.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. * * Unified implementation of memcpy, memmove and the __copy_user backend. * * Copyright (C) 1998, 99, 2000, 01, 2002 Ralf Baechle (ralf@gnu...
AirFortressIlikara/LS2K0300-linux-4.19
7,582
arch/mips/lib/memset.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) 1998, 1999, 2000 by Ralf Baechle * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2007 by Maciej W. Rozyc...
AirFortressIlikara/LS2K0300-linux-4.19
1,850
arch/mips/lib/strncpy_user.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) 1996, 1999 by Ralf Baechle * Copyright (C) 2011 MIPS Technologies, Inc. */ #include <linux/errno.h> #include <asm/asm.h> #...
AirFortressIlikara/LS2K0300-linux-4.19
19,775
arch/mips/lib/csum_partial.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. * * Quick'n'dirty IP checksum ... * * Copyright (C) 1998, 1999 Ralf Baechle * Copyright (C) 1999 Silicon Graphics, Inc. * Copyright (C) 20...
AirFortressIlikara/LS2K0300-linux-4.19
4,407
arch/mips/kvm/msa.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. * * MIPS SIMD Architecture (MSA) context handling code for KVM. * * Copyright (C) 2015 Imagination Technologies Ltd. */ #include <asm/asm....
AirFortressIlikara/LS2K0300-linux-4.19
3,064
arch/mips/kvm/fpu.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. * * FPU context handling code for KVM. * * Copyright (C) 2015 Imagination Technologies Ltd. */ #include <asm/asm.h> #include <asm/asm-offs...
AirFortressIlikara/LS2K0300-linux-4.19
5,758
arch/mips/kvm/lasx.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. * * MIPS SIMD Architecture (MSA) Extension context handling code for KVM. * * Copyright (C) 2019 Loongson Inc. * Author: Xing Li, lixing@lo...
AirFortressIlikara/LS2K0300-linux-4.19
7,004
arch/mips/net/bpf_jit_asm.S
/* * bpf_jib_asm.S: Packet/header access helper functions for MIPS/MIPS64 BPF * compiler. * * Copyright (C) 2015 Imagination Technologies Ltd. * Author: Markos Chandras <markos.chandras@imgtec.com> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General P...
AirFortressIlikara/LS2K0300-linux-4.19
4,645
arch/mips/mm/cex-sb1.S
/* * Copyright (C) 2001,2002,2003 Broadcom Corporation * * 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 version 2 * of the License, or (at your option) any later version. * * Thi...
AirFortressIlikara/LS2K0300-linux-4.19
3,471
arch/mips/mm/page-funcs.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. * * Micro-assembler generated clear_page/copy_page functions. * * Copyright (C) 2012 MIPS Technologies, Inc. * Copyright (C) 2012 Ralf Ba...
AirFortressIlikara/LS2K0300-linux-4.19
1,501
arch/mips/mm/cex-oct.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) 2006 Cavium Networks * Cache error handler */ #include <asm/asm.h> #include <asm/regdef.h> #include <asm/mipsregs.h> #inc...
AirFortressIlikara/LS2K0300-linux-4.19
7,737
arch/mips/netlogic/common/reset.S
/* * Copyright 2003-2013 Broadcom Corporation. * All Rights Reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this ...
AirFortressIlikara/LS2K0300-linux-4.19
4,239
arch/mips/netlogic/common/smpboot.S
/* * Copyright 2003-2011 NetLogic Microsystems, Inc. (NetLogic). All rights * reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main ...
AirFortressIlikara/LS2K0300-linux-4.19
13,320
arch/mips/loongson64/loongson-3/loongson3-memcpy.S
/* ============================================================================ Name : memcpy.S Author : Heiher <root@heiher.info> Chen Jie <chenj@lemote.com> Version : 20140307 Copyright : GPLv2 Description : The memcpy for Loongson 3. =======================================================================...
AirFortressIlikara/LS2K0300-linux-4.19
4,516
arch/mips/loongson64/loongson-3/lasx.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) 2019 Huang Pei <huangpei@loongson.cn> * Copyright (C) 2019 Zeng Lu <zenglu@loongson.cn> */ #include <asm/asmmacro.h> #incl...
AirFortressIlikara/LS2K0300-linux-4.19
4,561
arch/mips/loongson64/loongson-3/loongson3-memset.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) 1998, 1999, 2000 by Ralf Baechle * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2007 by Maciej W. Rozyc...
AirFortressIlikara/LS2K0300-linux-4.19
3,974
arch/mips/loongson64/loongson-3/sleep.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. * * Sleep helper for Loongson-3A sleep mode, derived from Au1xxx. * * Copyright (C) 2011 Huacai Chen <chenhc@lemote.com> */ #include <asm/...
AirFortressIlikara/LS2K0300-linux-4.19
13,320
arch/mips/loongson64/loongson-2k/loongson3-memcpy.S
/* ============================================================================ Name : memcpy.S Author : Heiher <root@heiher.info> Chen Jie <chenj@lemote.com> Version : 20140307 Copyright : GPLv2 Description : The memcpy for Loongson 3. =======================================================================...
AirFortressIlikara/LS2K0300-linux-4.19
4,561
arch/mips/loongson64/loongson-2k/loongson3-memset.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) 1998, 1999, 2000 by Ralf Baechle * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2007 by Maciej W. Rozyc...
AirFortressIlikara/LS2K0300-linux-4.19
3,434
arch/mips/loongson64/loongson-2k/sleep.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. * * Sleep helper for Loongson2K sleep mode, derived from Au1xxx. * * Copyright (C) 2011 Huacai Chen <chenhc@lemote.com> */ #include <asm/a...
AirFortressIlikara/LS2K0300-linux-4.19
1,272
arch/mips/boot/compressed/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) 1994, 1995 Waldorf Electronics * Written by Ralf Baechle and Andreas Busse * Copyright (C) 1995 - 1999 Ralf Baechle * Cop...
AirFortressIlikara/LS2K0300-linux-4.19
3,109
arch/mips/fw/lib/call_o32.S
/* * O32 interface for the 64 (or N32) ABI. * * Copyright (C) 2002, 2014 Maciej W. Rozycki * * 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 version * 2 of the License, or (at yo...
AirFortressIlikara/LS2K0300-linux-4.19
5,238
arch/mips/alchemy/common/sleeper.S
/* * Copyright 2002 Embedded Edge, LLC * Author: dan@embeddededge.com * * Sleep helper for Au1xxx sleep mode. * * 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 version 2 of the...
AirFortressIlikara/LS2K0300-linux-4.19
1,193
arch/powerpc/perf/bhrb.S
/* * Basic assembly code to read BHRB entries * * Copyright 2013 Anshuman Khandual, IBM Corporation. * * 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 version * 2 of the License, ...