repo_id string | size int64 | file_path string | content string |
|---|---|---|---|
andreafioraldi/qasan | 42,633 | qemu/roms/ipxe/src/arch/x86/transitions/librm.S | /*
* librm: a library for interfacing to real-mode code
*
* Michael Brown <mbrown@fensystems.co.uk>
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
/* Drag in general configuration */
#include <config/general.h>
/* Drag in local definitions */
#include "librm.h"
/* CR0: protection enabled */
#define CR0_PE ( 1 << ... |
andreafioraldi/qasan | 1,516 | qemu/roms/ipxe/src/arch/x86/core/patch_cf.S | /*
* Copyright (C) 2009 H. Peter Anvin <hpa@zytor.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 your option) any later version.
*
* Thi... |
andreafioraldi/qasan | 1,790 | qemu/roms/ipxe/src/arch/x86/prefix/nbiprefix.S | FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
#include <librm.h>
.text
.arch i386
.code16
.section ".prefix", "ax", @progbits
.org 0
nbi_header:
/*****************************************************************************
* NBI file header
*************************************************************************... |
andreafioraldi/qasan | 4,384 | qemu/roms/ipxe/src/arch/x86/prefix/lkrnprefix.S | FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
#include <librm.h>
#define BZI_LOAD_HIGH_ADDR 0x100000
.text
.arch i386
.code16
.section ".prefix", "ax", @progbits
.globl _lkrn_start
_lkrn_start:
/*****************************************************************************
*
* Kernel header
*
* We place our prefix... |
andreafioraldi/qasan | 1,290 | qemu/roms/ipxe/src/arch/x86/prefix/undiloader.S | FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
#include <librm.h>
.text
.code16
.arch i386
.section ".prefix", "ax", @progbits
/* UNDI loader
*
* Called by an external program to load our PXE stack.
*/
.globl undiloader
undiloader:
/* Save registers */
pushl %esi
pushl %edi
pushl %ebp
pushw %ds
pushw %es
push... |
andreafioraldi/qasan | 3,708 | qemu/roms/ipxe/src/arch/x86/prefix/exeprefix.S | /*
* Copyright (C) 2011 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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 any later version.
*
* This progr... |
andreafioraldi/qasan | 24,831 | qemu/roms/ipxe/src/arch/x86/prefix/libprefix.S | /*
* Copyright (C) 2006 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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 any later version.
*
* This progr... |
andreafioraldi/qasan | 20,968 | qemu/roms/ipxe/src/arch/x86/prefix/pxeprefix.S | FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
#define PXENV_UNDI_SHUTDOWN 0x0005
#define PXENV_UNDI_GET_NIC_TYPE 0x0012
#define PXENV_UNDI_GET_IFACE_INFO 0x0013
#define PXENV_STOP_UNDI 0x0015
#define PXENV_UNLOAD_STACK 0x0070
#define PXENV_GET_CACHED_INFO 0x0071
#define PXENV_PACKET_TYPE_DHCP_ACK 0x0002
#define PXENV_... |
andreafioraldi/qasan | 1,109 | qemu/roms/ipxe/src/arch/x86/prefix/isaromprefix.S | /*
* Copyright (C) 2014 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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 any later version.
*
* This progr... |
andreafioraldi/qasan | 1,687 | qemu/roms/ipxe/src/arch/x86/prefix/hdprefix.S | FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
#include <librm.h>
.text
.arch i386
.section ".prefix", "awx", @progbits
.code16
.org 0
.globl _hd_start
_hd_start:
movw $load_image, %bp
jmp find_active_partition
#include "bootpart.S"
load_image:
/* Get disk geometry */
pushal
pushw %es
movb $0x08, %ah
int $0x1... |
andreafioraldi/qasan | 3,821 | qemu/roms/ipxe/src/arch/x86/prefix/bootpart.S | FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
#define BOOT_SEG 0x07c0
#define EXEC_SEG 0x0100
#define STACK_SEG 0x0200
#define STACK_SIZE 0x2000
.text
.arch i386
.section ".prefix", "awx", @progbits
.code16
/*
* Find active partition
*
* Parameters:
* %dl : BIOS drive number
* %bp : Active partition handler ... |
andreafioraldi/qasan | 1,109 | qemu/roms/ipxe/src/arch/x86/prefix/pciromprefix.S | /*
* Copyright (C) 2014 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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 any later version.
*
* This progr... |
andreafioraldi/qasan | 8,304 | qemu/roms/ipxe/src/arch/x86/prefix/dskprefix.S | /* NOTE: this boot sector contains instructions that need at least an 80186.
* Yes, as86 has a bug somewhere in the valid instruction set checks.
*
*/
/* floppyload.S Copyright (C) 1991, 1992 Linus Torvalds
* modified by Drew Eckhardt
* modified by Bruce Evans (bde)
*
* floppyprefix.S is loaded at 0x0000:0x7c00... |
andreafioraldi/qasan | 24,833 | qemu/roms/ipxe/src/arch/x86/prefix/unlzma.S | /*
* Copyright (C) 2015 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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.... |
andreafioraldi/qasan | 12,608 | qemu/roms/ipxe/src/arch/x86/prefix/mromprefix.S | /*
* Copyright (C) 2010 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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 any later version.
*
* This progr... |
andreafioraldi/qasan | 21,764 | qemu/roms/ipxe/src/arch/x86/prefix/romprefix.S | /* At entry, the processor is in 16 bit real mode and the code is being
* executed from an address it was not linked to. Code must be pic and
* 32 bit sensitive until things are fixed up.
*
* Also be very careful as the stack is at the rear end of the interrupt
* table so using a noticeable amount of stack space i... |
andreafioraldi/qasan | 6,048 | qemu/roms/ipxe/src/arch/x86/interface/pxe/pxe_entry.S | /*
* Copyright (C) 2006 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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 any later version.
*
* This progr... |
andreafioraldi/qasan | 15,739 | qemu/roms/ipxe/src/arch/x86/interface/pcbios/e820mangler.S | /*
* Copyright (C) 2006 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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 any later version.
*
* This progr... |
andreafioraldi/qasan | 2,059 | qemu/roms/ipxe/src/arch/x86/interface/syslinux/com32_wrapper.S | /*
* Copyright (C) 2008 Daniel Verkamp <daniel@drv.nu>.
*
* 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 any later version.
*
* This program is dis... |
andreafioraldi/qasan | 1,604 | qemu/roms/ipxe/src/arch/x86/drivers/net/undiisr.S | FILE_LICENCE ( GPL2_OR_LATER )
#define PXENV_UNDI_ISR 0x0014
#define PXENV_UNDI_ISR_IN_START 1
#define PXENV_UNDI_ISR_OUT_OURS 0
#define PXENV_UNDI_ISR_OUT_NOT_OURS 1
#define IRQ_PIC_CUTOFF 8
#define ICR_EOI_NON_SPECIFIC 0x20
#define PIC1_ICR 0x20
#define PIC2_ICR 0xa0
.text
.arch i386
.code16
.section ".text1... |
andreafioraldi/qasan | 1,339 | qemu/roms/ipxe/src/arch/x86_64/core/setjmp.S | FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
.text
.code64
/* Must match jmp_buf structure layout */
.struct 0
env_retaddr: .quad 0
env_stack: .quad 0
env_rbx: .quad 0
env_rbp: .quad 0
env_r12: .quad 0
env_r13: .quad 0
env_r14: .quad 0
env_r15: .quad 0
.previous
/*
* Save stack context for non-local goto
*/
.globl... |
andreafioraldi/qasan | 3,950 | qemu/roms/ipxe/src/arch/x86_64/core/gdbidt.S | /*
* Copyright (C) 2016 Michael Brown <mbrown@fensystems.co.uk>.
*
* 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 any later version.
*
* This progr... |
andreafioraldi/qasan | 4,975 | qemu/roms/u-boot-sam460ex/board/ACube/Sam460ex/init_cn.S | /*
* (C) Copyright 2008
* Stefan Roese, DENX Software Engineering, sr@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 So... |
andreafioraldi/qasan | 3,672 | qemu/roms/u-boot-sam460ex/board/ACube/Sam460ex/init.S | /*
* (C) Copyright 2008
* Stefan Roese, DENX Software Engineering, sr@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 So... |
andreafioraldi/qasan | 5,589 | qemu/roms/u-boot-sam460ex/post/lib_powerpc/asm.S | /*
* Copyright (C) 2002 Wolfgang Denk <wd@denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 ve... |
andreafioraldi/qasan | 9,245 | qemu/roms/u-boot-sam460ex/post/cpu/mpc8xx/cache_8xx.S | /*
* Copyright (C) 2002 Wolfgang Denk <wd@denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 ve... |
andreafioraldi/qasan | 8,950 | qemu/roms/u-boot-sam460ex/post/cpu/ppc4xx/cache_4xx.S | /*
* (C) Copyright 2007
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* Author: Igor Lisitsin <igor@emcraft.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gener... |
andreafioraldi/qasan | 1,462 | qemu/roms/u-boot-sam460ex/examples/api/crt0.S | /*
* (C) Copyright 2007 Semihalf
*
* Written by: Rafal Jaworowski <raj@semihalf.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 ... |
andreafioraldi/qasan | 4,181 | qemu/roms/u-boot-sam460ex/examples/standalone/test_burst_lib.S | /*
* (C) Copyright 2005
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 S... |
andreafioraldi/qasan | 2,648 | qemu/roms/u-boot-sam460ex/examples/standalone/ppc_longjmp.S | /* longjmp for PowerPC.
Copyright (C) 1995, 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Softwar... |
andreafioraldi/qasan | 2,669 | qemu/roms/u-boot-sam460ex/examples/standalone/ppc_setjmp.S | /* setjmp for PowerPC.
Copyright (C) 1995, 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software... |
andreafioraldi/qasan | 2,895 | qemu/roms/u-boot-sam460ex/tools/multiplier/ppcstring.S | /*
* String handling functions for PowerPC.
*
* Copyright (C) 1996 Paul Mackerras.
*
* 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... |
andreafioraldi/qasan | 1,712 | qemu/roms/u-boot-sam460ex/arch/nios2/lib/cache.S | /*
* (C) Copyright 2004, Psyent Corporation <www.psyent.com>
* Scott McNutt <smcnutt@psyent.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* publis... |
andreafioraldi/qasan | 3,439 | qemu/roms/u-boot-sam460ex/arch/nios2/cpu/exceptions.S | /*
* (C) Copyright 2004, Psyent Corporation <www.psyent.com>
* Scott McNutt <smcnutt@psyent.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* publis... |
andreafioraldi/qasan | 5,429 | qemu/roms/u-boot-sam460ex/arch/nios2/cpu/start.S | /*
* (C) Copyright 2004, Psyent Corporation <www.psyent.com>
* Scott McNutt <smcnutt@psyent.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* publis... |
andreafioraldi/qasan | 8,114 | qemu/roms/u-boot-sam460ex/arch/m68k/cpu/mcf523x/start.S | /*
* Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
* Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gen... |
andreafioraldi/qasan | 8,466 | qemu/roms/u-boot-sam460ex/arch/m68k/cpu/mcf532x/start.S | /*
* Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
* Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
*
* (C) Copyright 2004-2008 Freescale Semiconductor, Inc.
* TsiChung Liew (Tsi-Chung.Liew@freescale.com)
*
* See file CREDITS for list of people who contributed to this
* project.
*
... |
andreafioraldi/qasan | 10,035 | qemu/roms/u-boot-sam460ex/arch/m68k/cpu/mcf52x2/start.S | /*
* Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
* Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gen... |
andreafioraldi/qasan | 8,308 | qemu/roms/u-boot-sam460ex/arch/m68k/cpu/mcf547x_8x/start.S | /*
* Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
* Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gen... |
andreafioraldi/qasan | 13,211 | qemu/roms/u-boot-sam460ex/arch/m68k/cpu/mcf5227x/start.S | /*
* Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
* Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gen... |
andreafioraldi/qasan | 13,901 | qemu/roms/u-boot-sam460ex/arch/m68k/cpu/mcf5445x/start.S | /*
* Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
* Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gen... |
andreafioraldi/qasan | 9,899 | qemu/roms/u-boot-sam460ex/arch/i386/lib/bios_pci.S | /*
* (C) Copyright 2002
* Daniel Engstrm, Omicron Ceti AB, daniel@omicron.se
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 Soft... |
andreafioraldi/qasan | 11,269 | qemu/roms/u-boot-sam460ex/arch/i386/lib/bios.S | /*
* (C) Copyright 2002
* Daniel Engstrm, Omicron Ceti AB, daniel@omicron.se
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 Soft... |
andreafioraldi/qasan | 4,179 | qemu/roms/u-boot-sam460ex/arch/i386/lib/realmode_switch.S | /*
* (C) Copyright 2002
* Daniel Engstrm, Omicron Ceti AB, daniel@omicron.se
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 Soft... |
andreafioraldi/qasan | 6,534 | qemu/roms/u-boot-sam460ex/arch/i386/cpu/start.S | /*
* U-boot - i386 Startup Code
*
* Copyright (c) 2002 Omicron Ceti AB, Daniel Engstrm <denaiel@omicron.se>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public Licens... |
andreafioraldi/qasan | 1,056 | qemu/roms/u-boot-sam460ex/arch/i386/cpu/resetvec.S | /*
* U-boot - i386 Startup Code
*
* Copyright (c) 2002 Omicron Ceti AB, Daniel Engstrm <denaiel@omicron.se>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public Licens... |
andreafioraldi/qasan | 2,745 | qemu/roms/u-boot-sam460ex/arch/i386/cpu/start16.S | /*
* U-boot - i386 Startup Code
*
* Copyright (c) 2002, 2003 Omicron Ceti AB, Daniel Engstrm <denaiel@omicron.se>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public ... |
andreafioraldi/qasan | 20,999 | qemu/roms/u-boot-sam460ex/arch/i386/cpu/sc520/sc520_asm.S | /*
* (C) Copyright 2002
* Daniel Engstrm, Omicron Ceti AB <daniel@omicron.se>.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 So... |
andreafioraldi/qasan | 1,730 | qemu/roms/u-boot-sam460ex/arch/avr32/lib/memset.S | /*
* Copyright (C) 2004-2006 Atmel Corporation
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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... |
andreafioraldi/qasan | 6,702 | qemu/roms/u-boot-sam460ex/arch/avr32/cpu/start.S | /*
* Copyright (C) 2005-2008 Atmel Corporation
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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... |
andreafioraldi/qasan | 2,441 | qemu/roms/u-boot-sam460ex/arch/microblaze/cpu/irq.S | /*
* (C) Copyright 2007 Michal Simek
*
* Michal SIMEK <monstr@monstr.eu>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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... |
andreafioraldi/qasan | 3,555 | qemu/roms/u-boot-sam460ex/arch/microblaze/cpu/start.S | /*
* (C) Copyright 2007 Michal Simek
* (C) Copyright 2004 Atmark Techno, Inc.
*
* Michal SIMEK <monstr@monstr.eu>
* Yasushi SHOJI <yashi@atmark-techno.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it... |
andreafioraldi/qasan | 15,021 | qemu/roms/u-boot-sam460ex/arch/sparc/cpu/leon3/start.S | /* This is where the SPARC/LEON3 starts
* Copyright (C) 2007,
* Daniel Hellstrom, daniel@gaisler.com
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* pu... |
andreafioraldi/qasan | 15,941 | qemu/roms/u-boot-sam460ex/arch/sparc/cpu/leon2/start.S | /* This is where the SPARC/LEON3 starts
* Copyright (C) 2007,
* Daniel Hellstrom, daniel@gaisler.com
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* pu... |
andreafioraldi/qasan | 1,800 | qemu/roms/u-boot-sam460ex/arch/sh/cpu/sh3/start.S | /*
* (C) Copyright 2007
* Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
*
* (C) Copyright 2007
* Nobuhiro Iwamatsu <iwamatsu@nigauri.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 Found... |
andreafioraldi/qasan | 1,723 | qemu/roms/u-boot-sam460ex/arch/sh/cpu/sh4/start.S | /*
* (C) Copyright 2007
* Nobuhiro Iwamatsu <iwamatsu@nigauri.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 version 2 of
* the License, or (at your option) any later versi... |
andreafioraldi/qasan | 1,892 | qemu/roms/u-boot-sam460ex/arch/sh/cpu/sh2/start.S | /*
* Copyright (C) 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
* Copyright (C) 2008 Renesas Solutions Corp.
* 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
* th... |
andreafioraldi/qasan | 2,762 | qemu/roms/u-boot-sam460ex/arch/arm/lib/_umodsi3.S | /* # 1 "libgcc1.S" */
@ libgcc1 routines for ARM cpu.
@ Division routines, written by Richard Earnshaw, (rearnsha@armltd.co.uk)
/* # 145 "libgcc1.S" */
dividend .req r0
divisor .req r1
overdone .req r2
curbit .req r3
/* ip .req r12 */
/* sp .req r13 */
/* lr .req r14 */
/* pc .req r15 */
.text
.globl __umodsi3... |
andreafioraldi/qasan | 2,431 | qemu/roms/u-boot-sam460ex/arch/arm/lib/_udivsi3.S | /* # 1 "libgcc1.S" */
@ libgcc1 routines for ARM cpu.
@ Division routines, written by Richard Earnshaw, (rearnsha@armltd.co.uk)
dividend .req r0
divisor .req r1
result .req r2
curbit .req r3
/* ip .req r12 */
/* sp .req r13 */
/* lr .req r14 */
/* pc .req r15 */
.text
.globl __udivsi3
.type __udivsi3 ,functi... |
andreafioraldi/qasan | 1,549 | qemu/roms/u-boot-sam460ex/arch/arm/lib/_lshrdi3.S | /* Copyright 1995, 1996, 1998, 1999, 2000, 2003, 2004, 2005
Free Software Foundation, Inc.
This file 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, or (at your option) any
later version.
In... |
andreafioraldi/qasan | 2,316 | qemu/roms/u-boot-sam460ex/arch/arm/lib/_modsi3.S |
.macro ARM_MOD_BODY dividend, divisor, order, spare
#if __LINUX_ARM_ARCH__ >= 5
clz \order, \divisor
clz \spare, \dividend
sub \order, \order, \spare
mov \divisor, \divisor, lsl \order
#else
mov \order, #0
@ Unless the divisor is very big, shift it up in multiples of
@ four bits, since this is the amount o... |
andreafioraldi/qasan | 1,549 | qemu/roms/u-boot-sam460ex/arch/arm/lib/_ashldi3.S | /* Copyright 1995, 1996, 1998, 1999, 2000, 2003, 2004, 2005
Free Software Foundation, Inc.
This file 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, or (at your option) any
later version.
In... |
andreafioraldi/qasan | 1,549 | qemu/roms/u-boot-sam460ex/arch/arm/lib/_ashrdi3.S | /* Copyright 1995, 1996, 1998, 1999, 2000, 2003, 2004, 2005
Free Software Foundation, Inc.
This file 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, or (at your option) any
later version.
In... |
andreafioraldi/qasan | 3,127 | qemu/roms/u-boot-sam460ex/arch/arm/lib/_divsi3.S |
.macro ARM_DIV_BODY dividend, divisor, result, curbit
#if __LINUX_ARM_ARCH__ >= 5
clz \curbit, \divisor
clz \result, \dividend
sub \result, \curbit, \result
mov \curbit, #1
mov \divisor, \divisor, lsl \result
mov \curbit, \curbit, lsl \result
mov \result, #0
#else
@ Initially shift the divisor left 3 bits ... |
andreafioraldi/qasan | 10,453 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm_cortexa8/start.S | /*
* armboot - Startup Code for OMAP3530/ARM Cortex CPU-core
*
* Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
*
* Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
* Copyright (c) 2003 Richard Woodruff ... |
andreafioraldi/qasan | 10,147 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm926ejs/start.S | /*
* armboot - Startup Code for ARM926EJS CPU-core
*
* Copyright (c) 2003 Texas Instruments
*
* ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>... |
andreafioraldi/qasan | 8,639 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm_intcm/start.S | /*
* armboot - Startup Code for ARM926EJS CPU-core
*
* Copyright (c) 2003 Texas Instruments
*
* ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>... |
andreafioraldi/qasan | 9,336 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm946es/start.S | /*
* armboot - Startup Code for ARM926EJS CPU-core
*
* Copyright (c) 2003 Texas Instruments
*
* ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>... |
andreafioraldi/qasan | 9,574 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/lh7a40x/start.S | /*
* armboot - Startup Code for ARM920 CPU-core
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software;... |
andreafioraldi/qasan | 10,254 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm925t/start.S | /*
* armboot - Startup Code for ARM925 CPU-core
*
* Copyright (c) 2003 Texas Instruments
*
* ----- Adapted for OMAP1510 from ARM920 code ------
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
* Copyrig... |
andreafioraldi/qasan | 5,690 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/s3c44b0/start.S | /*
* Startup Code for S3C44B0 CPU-core
*
* (C) Copyright 2004
* DAVE Srl
*
* http://www.dave-tech.it
* http://www.wawnet.biz
* mailto:info@wawnet.biz
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it und... |
andreafioraldi/qasan | 14,483 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm720t/start.S | /*
* armboot - Startup Code for ARM720 CPU-core
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the... |
andreafioraldi/qasan | 11,265 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm1176/start.S | /*
* armboot - Startup Code for ARM1176 CPU-core
*
* Copyright (c) 2007 Samsung Electronics
*
* Copyright (C) 2008
* Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribut... |
andreafioraldi/qasan | 11,266 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm1136/start.S | /*
* armboot - Startup Code for OMP2420/ARM1136 CPU-core
*
* Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
* Copyright (c) 2003 Richard Woodruff ... |
andreafioraldi/qasan | 12,044 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/ixp/start.S | /* vi: set ts=8 sw=8 noet: */
/*
* u-boot - Startup Code for XScale IXP
*
* Copyright (C) 2003 Kyle Harris <kharris@nexus-tech.net>
*
* Based on startup code example contained in the
* Intel IXP4xx Programmer's Guide and past u-boot Start.S
* samples.
*
* See file CREDITS for list of people who contributed to... |
andreafioraldi/qasan | 9,186 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/sa1100/start.S | /*
* armboot - Startup Code for SA1100 CPU
*
* Copyright (C) 1998 Dan Malek <dmalek@jlc.net>
* Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
* Copyright (C) 2000 Wolfgang Denk <wd@denx.de>
* Copyright (c) 2001 Alex Zpke <azu@sysgo.de>
*
* See file CREDITS for list of people who contri... |
andreafioraldi/qasan | 9,518 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm920t/start.S | /*
* armboot - Startup Code for ARM920 CPU-core
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software;... |
andreafioraldi/qasan | 12,459 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/pxa/start.S | /*
* armboot - Startup Code for XScale
*
* Copyright (C) 1998 Dan Malek <dmalek@jlc.net>
* Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
* Copyright (C) 2000 Wolfgang Denk <wd@denx.de>
* Copyright (C) 2001 Alex Zuepke <azu@sysgo.de>
* Copyright (C) 2002 Kyle Harris <kharris@nexus-tech... |
andreafioraldi/qasan | 6,730 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm_cortexa8/mx51/lowlevel_init.S | /*
* Copyright (C) 2007, Guennadi Liakhovetski <lg@denx.de>
*
* (C) Copyright 2009 Freescale Semiconductor, Inc.
*
* 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
* t... |
andreafioraldi/qasan | 5,339 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm_cortexa8/omap3/cache.S | /*
* Copyright (c) 2009 Wind River Systems, Inc.
* Tom Rix <Tom.Rix@windriver.com>
*
* This file is based on and replaces the existing cache.c file
* The copyrights for the cache.c file are:
*
* (C) Copyright 2008 Texas Insturments
*
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* M... |
andreafioraldi/qasan | 1,131 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm_cortexa8/omap3/reset.S | /*
* Copyright (c) 2009 Samsung Electronics.
* Minkyu Kang <mk7.kang@samsung.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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... |
andreafioraldi/qasan | 10,070 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm_cortexa8/omap3/lowlevel_init.S | /*
* Board specific setup info
*
* (C) Copyright 2008
* Texas Instruments, <www.ti.com>
*
* Initial Code by:
* Richard Woodruff <r-woodruff2@ti.com>
* Syed Mohammed Khasim <khasim@ti.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can r... |
andreafioraldi/qasan | 3,650 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm_cortexa8/s5pc1xx/cache.S | /*
* Copyright (C) 2009 Samsung Electronics
* Minkyu Kang <mk7.kang@samsung.com>
*
* based on arch/arm/cpu/arm_cortexa8/omap3/cache.S
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... |
andreafioraldi/qasan | 1,285 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm_cortexa8/s5pc1xx/reset.S | /*
* Copyright (c) 2009 Samsung Electronics.
* Minkyu Kang <mk7.kang@samsung.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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... |
andreafioraldi/qasan | 1,470 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm926ejs/omap/reset.S | /*
* armboot - Startup Code for ARM926EJS CPU-core
*
* Copyright (c) 2003 Texas Instruments
*
* ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>... |
andreafioraldi/qasan | 7,372 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm926ejs/at91/lowlevel_init.S | /*
* Memory Setup stuff - taken from blob memsetup.S
*
* Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) and
* Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
*
* Copyright (C) 2008 Ronetix Ilko Iliev (www.ronetix.at)
* Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft... |
andreafioraldi/qasan | 1,470 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm926ejs/versatile/reset.S | /*
* armboot - Startup Code for ARM926EJS CPU-core
*
* Copyright (c) 2003 Texas Instruments
*
* ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
*
* Copyright (c) 2001 Marius Grger <mag@sysgo.de>
* Copyright (c) 2002 Alex Zpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>... |
andreafioraldi/qasan | 7,873 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm926ejs/orion5x/lowlevel_init.S | /*
* Copyright (C) 2010 Albert ARIBAUD <albert.aribaud@free.fr>
*
* (C) Copyright 2009
* Marvell Semiconductor <www.marvell.com>
* Written-by: Prafulla Wadaskar <prafulla@marvell.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistri... |
andreafioraldi/qasan | 1,807 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm926ejs/davinci/reset.S | /*
* Processor reset using WDT for TI TMS320DM644x SoC.
*
* Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
*
* -----------------------------------------------------
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published ... |
andreafioraldi/qasan | 14,015 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S | /*
* Low-level board setup code for TI DaVinci SoC based boards.
*
* Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
*
* Partially based on TI sources, original copyrights follow:
*/
/*
* Board specific setup info
*
* (C) Copyright 2003
* Texas Instruments, <www.ti.com>
* Kshitij Gupta <Kshitij@ti.com>
*... |
andreafioraldi/qasan | 1,109 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm1176/s3c64xx/reset.S | /*
* Copyright (c) 2009 Samsung Electronics.
* Minkyu Kang <mk7.kang@samsung.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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... |
andreafioraldi/qasan | 3,113 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm1176/s3c64xx/cpu_init.S | /*
* Originates from Samsung's u-boot 1.1.6 port to S3C6400 / SMDK6400
*
* Copyright (C) 2008
* Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it... |
andreafioraldi/qasan | 1,449 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm1136/omap24xx/reset.S | /*
* armboot - Startup Code for OMP2420/ARM1136 CPU-core
*
* Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
*
* Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
* Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
* Copyright (c) 2003 Richard Woodruf... |
andreafioraldi/qasan | 5,967 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm920t/ks8695/lowlevel_init.S | /*
* lowlevel_init.S - basic hardware initialization for the KS8695 CPU
*
* Copyright (c) 2004-2005, Greg Ungerer <greg.ungerer@opengear.com>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the term... |
andreafioraldi/qasan | 4,295 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm920t/at91/lowlevel_init.S | /*
* Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) and
* Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
*
* Modified for the at91rm9200dk board by
* (C) Copyright 2004
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
*
* See file CREDITS for list of people who contributed t... |
andreafioraldi/qasan | 4,340 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm920t/at91rm9200/lowlevel_init.S | /*
* Memory Setup stuff - taken from blob memsetup.S
*
* Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) and
* Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
*
* Modified for the at91rm9200dk board by
* (C) Copyright 2004
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
*
*... |
andreafioraldi/qasan | 1,684 | qemu/roms/u-boot-sam460ex/arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S | /*
* Low-level initialization for EP93xx
*
* Copyright (C) 2009 Matthias Kaehlcke <matthias@kaehlcke.net>
*
* Copyright (C) 2006 Dominic Rath <Dominic.Rath@gmx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* mo... |
andreafioraldi/qasan | 1,246 | qemu/roms/u-boot-sam460ex/arch/blackfin/lib/outs.S | /*
* Implementation of outs{bwl} for BlackFin processors using zero overhead loops.
*
* Copyright 2005-2009 Analog Devices Inc.
* 2005 BuyWays BV
* Bas Vermeulen <bas@buyways.nl>
*
* Licensed under the GPL-2.
*/
#include <asm/linkage.h>
.align 2
ENTRY(_outsl)
P0 = R0; /* ... |
andreafioraldi/qasan | 3,089 | qemu/roms/u-boot-sam460ex/arch/blackfin/lib/__kgdb.S |
#include <asm/linkage.h>
/* save stack context for non-local goto
* int kgdb_setjmp(long *buf)
*/
ENTRY(_kgdb_setjmp)
[--SP] = p0; /* Save P0 */
p0 = r0;
r0 = [SP++]; /* Load P0 into R0 */
[p0 + 0x00] = r0; /* GP address registers */
[p0 + 0x04] = p1;
[p0 + 0x08] = p2;
[p0 + 0x0C] = p3;
[p0 + 0x10]... |
andreafioraldi/qasan | 2,850 | qemu/roms/u-boot-sam460ex/arch/blackfin/lib/memcpy.S | /*
* File: memcpy.S
*
* Copyright 2004-2007 Analog Devices Inc.
* Enter bugs at http://blackfin.uclinux.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 version 2 of the Lic... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.