mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +01:00 
			
		
		
		
	Move needed definitions (register descriptions etc.) from include/mpc512x.h into include/asm-ppc/immap_512x.h. Instead of using a #define'd register offset, use a function that provides the PATA controller's base address. All the rest of include/mpc512x.h are register offset definitions which can be eliminated by proper use of C structures. There are only a few register offsets remaining that are needed in cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h which is intended as a temporary workaround only. In a later patch this file will be removed, too, and then auto-generated from the respective C structs. Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: John Rigby <jcrigby@gmail.com>
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2004-2006 Freescale Semiconductor, Inc.
 | |
|  * Copyright (C) 2007-2009 DENX Software Engineering
 | |
|  *
 | |
|  * 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 2 of
 | |
|  * the License, or (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with this program; if not, write to the Free Software
 | |
|  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 | |
|  * MA 02111-1307 USA
 | |
|  *
 | |
|  * Derived from the MPC83xx code.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #include <common.h>
 | |
| #include <asm/io.h>
 | |
| #include <asm/processor.h>
 | |
| 
 | |
| DECLARE_GLOBAL_DATA_PTR;
 | |
| 
 | |
| /*
 | |
|  * Set up the memory map, initialize registers,
 | |
|  */
 | |
| void cpu_init_f (volatile immap_t * im)
 | |
| {
 | |
| 	u32 ips_div;
 | |
| 
 | |
| 	/* Pointer is writable since we allocated a register for it */
 | |
| 	gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
 | |
| 
 | |
| 	/* Clear initial global data */
 | |
| 	memset ((void *) gd, 0, sizeof (gd_t));
 | |
| 
 | |
| 	/* system performance tweaking */
 | |
| 
 | |
| #ifdef CONFIG_SYS_ACR_PIPE_DEP
 | |
| 	/* Arbiter pipeline depth */
 | |
| 	out_be32(&im->arbiter.acr,
 | |
| 		(im->arbiter.acr & ~ACR_PIPE_DEP) |
 | |
| 		(CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT)
 | |
| 	);
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_SYS_ACR_RPTCNT
 | |
| 	/* Arbiter repeat count */
 | |
| 	out_be32(im->arbiter.acr,
 | |
| 		(im->arbiter.acr & ~(ACR_RPTCNT)) |
 | |
| 		(CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT)
 | |
| 	);
 | |
| #endif
 | |
| 
 | |
| 	/* RSR - Reset Status Register - clear all status */
 | |
| 	gd->reset_status = im->reset.rsr;
 | |
| 	out_be32(&im->reset.rsr, ~RSR_RES);
 | |
| 
 | |
| 	/*
 | |
| 	 * RMR - Reset Mode Register - enable checkstop reset
 | |
| 	 */
 | |
| 	out_be32(&im->reset.rmr, RMR_CSRE & (1 << RMR_CSRE_SHIFT));
 | |
| 
 | |
| 	/* Set IPS-CSB divider: IPS = 1/2 CSB */
 | |
| 	ips_div = in_be32(&im->clk.scfr[0]);
 | |
| 	ips_div &= ~(SCFR1_IPS_DIV_MASK);
 | |
| 	ips_div |= SCFR1_IPS_DIV << SCFR1_IPS_DIV_SHIFT;
 | |
| 	out_be32(&im->clk.scfr[0], ips_div);
 | |
| 
 | |
| 	/*
 | |
| 	 * Enable Time Base/Decrementer
 | |
| 	 *
 | |
| 	 * NOTICE: TB needs to be enabled as early as possible in order to
 | |
| 	 * have udelay() working; if not enabled, usually leads to a hang, like
 | |
| 	 * during FLASH chip identification etc.
 | |
| 	 */
 | |
| 	setbits_be32(&im->sysconf.spcr, SPCR_TBEN);
 | |
| }
 | |
| 
 | |
| int cpu_init_r (void)
 | |
| {
 | |
| 	return 0;
 | |
| }
 |