mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	- remove trailing white space, trailing empty lines, C++ comments, etc.
  - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
* Patches by Kenneth Johansson, 25 Jun 2003:
  - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)
		
	
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			768 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			768 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
/*
 | 
						|
 * init.S: Stubs for U-Boot initialization
 | 
						|
 *
 | 
						|
 * Copyright 2002 Mind NV
 | 
						|
 *
 | 
						|
 * http://www.mind.be/
 | 
						|
 *
 | 
						|
 * Author : Peter De Schrijver (p2@mind.be)
 | 
						|
 *
 | 
						|
 * This software may be used and distributed according to the terms of
 | 
						|
 * the GNU General Public License (GPL) version 2, incorporated herein by
 | 
						|
 * reference. Drivers based on or derived from this code fall under the GPL
 | 
						|
 * and must retain the authorship, copyright and this license notice. This
 | 
						|
 * file is not a complete program and may only be used when the entire
 | 
						|
 * program is licensed under the GPL.
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#include <ppc4xx.h>
 | 
						|
 | 
						|
#include <ppc_asm.tmpl>
 | 
						|
#include <ppc_defs.h>
 | 
						|
 | 
						|
#include <asm/cache.h>
 | 
						|
#include <asm/mmu.h>
 | 
						|
 | 
						|
 | 
						|
	.globl	ext_bus_cntlr_init
 | 
						|
ext_bus_cntlr_init:
 | 
						|
	blr
 | 
						|
 | 
						|
	.globl  sdram_init
 | 
						|
sdram_init:
 | 
						|
	blr
 |