diff options
Diffstat (limited to 'board/freescale')
| -rw-r--r-- | board/freescale/m5208evbe/m5208evbe.c | 28 | ||||
| -rw-r--r-- | board/freescale/m5253demo/m5253demo.c | 27 | ||||
| -rw-r--r-- | board/freescale/m5253evbe/m5253evbe.c | 28 | ||||
| -rw-r--r-- | board/freescale/m5272c3/m5272c3.c | 9 | ||||
| -rw-r--r-- | board/freescale/m5275evb/m5275evb.c | 50 | 
5 files changed, 79 insertions, 63 deletions
| diff --git a/board/freescale/m5208evbe/m5208evbe.c b/board/freescale/m5208evbe/m5208evbe.c index 5f99e2f24..355cfedfb 100644 --- a/board/freescale/m5208evbe/m5208evbe.c +++ b/board/freescale/m5208evbe/m5208evbe.c @@ -2,7 +2,7 @@   * (C) Copyright 2000-2003   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * - * Copyright (C) 2004-2008 Freescale Semiconductor, Inc. + * Copyright (C) 2004-2008, 2012 Freescale Semiconductor, Inc.   * TsiChung Liew (Tsi-Chung.Liew@freescale.com)   *   * See file CREDITS for list of people who contributed to this @@ -27,6 +27,7 @@  #include <config.h>  #include <common.h>  #include <asm/immap.h> +#include <asm/io.h>  DECLARE_GLOBAL_DATA_PTR; @@ -39,7 +40,7 @@ int checkboard(void)  phys_size_t initdram(int board_type)  { -	volatile sdram_t *sdram = (volatile sdram_t *)(MMAP_SDRAM); +	sdram_t *sdram = (sdram_t *)(MMAP_SDRAM);  	u32 dramsize, i;  	dramsize = CONFIG_SYS_SDRAM_SIZE * 0x100000; @@ -50,34 +51,35 @@ phys_size_t initdram(int board_type)  	}  	i--; -	sdram->cs0 = (CONFIG_SYS_SDRAM_BASE | i); +	out_be32(&sdram->cs0, CONFIG_SYS_SDRAM_BASE | i);  #ifdef CONFIG_SYS_SDRAM_BASE1 -	sdram->cs1 = (CONFIG_SYS_SDRAM_BASE | i); +	out_be32(&sdram->cs1, CONFIG_SYS_SDRAM_BASE | i);  #endif -	sdram->cfg1 = CONFIG_SYS_SDRAM_CFG1; -	sdram->cfg2 = CONFIG_SYS_SDRAM_CFG2; +	out_be32(&sdram->cfg1, CONFIG_SYS_SDRAM_CFG1); +	out_be32(&sdram->cfg2, CONFIG_SYS_SDRAM_CFG2);  	udelay(500);  	/* Issue PALL */ -	sdram->ctrl = (CONFIG_SYS_SDRAM_CTRL | 2); +	out_be32(&sdram->ctrl, CONFIG_SYS_SDRAM_CTRL | 2);  	asm("nop");  	/* Perform two refresh cycles */ -	sdram->ctrl = CONFIG_SYS_SDRAM_CTRL | 4; -	sdram->ctrl = CONFIG_SYS_SDRAM_CTRL | 4; +	out_be32(&sdram->ctrl, CONFIG_SYS_SDRAM_CTRL | 4); +	out_be32(&sdram->ctrl, CONFIG_SYS_SDRAM_CTRL | 4);  	asm("nop");  	/* Issue LEMR */ -	sdram->mode = CONFIG_SYS_SDRAM_MODE; +	out_be32(&sdram->mode, CONFIG_SYS_SDRAM_MODE);  	asm("nop"); -	sdram->mode = CONFIG_SYS_SDRAM_EMOD; +	out_be32(&sdram->mode, CONFIG_SYS_SDRAM_EMOD);  	asm("nop"); -	sdram->ctrl = (CONFIG_SYS_SDRAM_CTRL | 2); +	out_be32(&sdram->ctrl, CONFIG_SYS_SDRAM_CTRL | 2);  	asm("nop"); -	sdram->ctrl = (CONFIG_SYS_SDRAM_CTRL & ~0x80000000) | 0x10000F00; +	out_be32(&sdram->ctrl, +		(CONFIG_SYS_SDRAM_CTRL & ~0x80000000) | 0x10000F00);  	asm("nop");  	udelay(100); diff --git a/board/freescale/m5253demo/m5253demo.c b/board/freescale/m5253demo/m5253demo.c index 8ffb2cc04..052993da6 100644 --- a/board/freescale/m5253demo/m5253demo.c +++ b/board/freescale/m5253demo/m5253demo.c @@ -2,7 +2,7 @@   * (C) Copyright 2000-2003   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * - * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. + * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.   * Hayden Fraser (Hayden.Fraser@freescale.com)   *   * See file CREDITS for list of people who contributed to this @@ -109,7 +109,7 @@ int ide_preinit(void)  void ide_set_reset(int idereset)  { -	volatile atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR; +	atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;  	long period;  	/*  t1,  t2,  t3,  t4,  t5,  t6,  t9, tRD,  tA */  	int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35},	/* PIO 0 */ @@ -120,7 +120,8 @@ void ide_set_reset(int idereset)  	};  	if (idereset) { -		ata->cr = 0;	/* control reset */ +		/* control reset */ +		out_8(&ata->cr, 0);  		udelay(100);  	} else {  		mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND); @@ -129,17 +130,19 @@ void ide_set_reset(int idereset)  		period = 1000000000 / (CONFIG_SYS_CLK / 2);	/* period in ns */  		/*ata->ton = CALC_TIMING (180); */ -		ata->t1 = CALC_TIMING(piotms[2][0]); -		ata->t2w = CALC_TIMING(piotms[2][1]); -		ata->t2r = CALC_TIMING(piotms[2][1]); -		ata->ta = CALC_TIMING(piotms[2][8]); -		ata->trd = CALC_TIMING(piotms[2][7]); -		ata->t4 = CALC_TIMING(piotms[2][3]); -		ata->t9 = CALC_TIMING(piotms[2][6]); +		out_8(&ata->t1, CALC_TIMING(piotms[2][0])); +		out_8(&ata->t2w, CALC_TIMING(piotms[2][1])); +		out_8(&ata->t2r, CALC_TIMING(piotms[2][1])); +		out_8(&ata->ta, CALC_TIMING(piotms[2][8])); +		out_8(&ata->trd, CALC_TIMING(piotms[2][7])); +		out_8(&ata->t4, CALC_TIMING(piotms[2][3])); +		out_8(&ata->t9, CALC_TIMING(piotms[2][6])); -		ata->cr = 0x40;	/* IORDY enable */ +		/* IORDY enable */ +		out_8(&ata->cr, 0x40);  		udelay(2000); -		ata->cr |= 0x01;	/* IORDY enable */ +		/* IORDY enable */ +		setbits_8(&ata->cr, 0x01);  	}  }  #endif				/* CONFIG_CMD_IDE */ diff --git a/board/freescale/m5253evbe/m5253evbe.c b/board/freescale/m5253evbe/m5253evbe.c index ae69f67b4..658748b0d 100644 --- a/board/freescale/m5253evbe/m5253evbe.c +++ b/board/freescale/m5253evbe/m5253evbe.c @@ -2,7 +2,7 @@   * (C) Copyright 2000-2003   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * - * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. + * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.   * Hayden Fraser (Hayden.Fraser@freescale.com)   *   * See file CREDITS for list of people who contributed to this @@ -26,6 +26,7 @@  #include <common.h>  #include <asm/immap.h> +#include <asm/io.h>  int checkboard(void)  { @@ -101,7 +102,7 @@ int ide_preinit(void)  void ide_set_reset(int idereset)  { -	volatile atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR; +	atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;  	long period;  	/*  t1,  t2,  t3,  t4,  t5,  t6,  t9, tRD,  tA */  	int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35},	/* PIO 0 */ @@ -112,7 +113,8 @@ void ide_set_reset(int idereset)  	};  	if (idereset) { -		ata->cr = 0;	/* control reset */ +		/* control reset */ +		out_8(&ata->cr, 0);  		udelay(100);  	} else {  		mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND); @@ -121,17 +123,19 @@ void ide_set_reset(int idereset)  		period = 1000000000 / (CONFIG_SYS_CLK / 2);	/* period in ns */  		/*ata->ton = CALC_TIMING (180); */ -		ata->t1 = CALC_TIMING(piotms[2][0]); -		ata->t2w = CALC_TIMING(piotms[2][1]); -		ata->t2r = CALC_TIMING(piotms[2][1]); -		ata->ta = CALC_TIMING(piotms[2][8]); -		ata->trd = CALC_TIMING(piotms[2][7]); -		ata->t4 = CALC_TIMING(piotms[2][3]); -		ata->t9 = CALC_TIMING(piotms[2][6]); +		out_8(&ata->t1, CALC_TIMING(piotms[2][0])); +		out_8(&ata->t2w, CALC_TIMING(piotms[2][1])); +		out_8(&ata->t2r, CALC_TIMING(piotms[2][1])); +		out_8(&ata->ta, CALC_TIMING(piotms[2][8])); +		out_8(&ata->trd, CALC_TIMING(piotms[2][7])); +		out_8(&ata->t4, CALC_TIMING(piotms[2][3])); +		out_8(&ata->t9, CALC_TIMING(piotms[2][6])); -		ata->cr = 0x40;	/* IORDY enable */ +		/* IORDY enable */ +		out_8(&ata->cr, 0x40);  		udelay(2000); -		ata->cr |= 0x01;	/* IORDY enable */ +		/* IORDY enable */ +		setbits_8(&ata->cr, 0x01);  	}  }  #endif				/* CONFIG_CMD_IDE */ diff --git a/board/freescale/m5272c3/m5272c3.c b/board/freescale/m5272c3/m5272c3.c index 902ca3aac..c3160cef2 100644 --- a/board/freescale/m5272c3/m5272c3.c +++ b/board/freescale/m5272c3/m5272c3.c @@ -2,6 +2,8 @@   * (C) Copyright 2000-2003   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * + * Copyright (C) 2012 Freescale Semiconductor, Inc. All Rights Reserved. + *   * See file CREDITS for list of people who contributed to this   * project.   * @@ -23,6 +25,7 @@  #include <common.h>  #include <asm/immap.h> +#include <asm/io.h>  int checkboard (void) { @@ -32,10 +35,10 @@ int checkboard (void) {  	};  phys_size_t initdram (int board_type) { -	volatile sdramctrl_t * sdp = (sdramctrl_t *)(MMAP_SDRAM); +	sdramctrl_t * sdp = (sdramctrl_t *)(MMAP_SDRAM); -	sdp->sdram_sdtr = 0xf539; -	sdp->sdram_sdcr = 0x4211; +	out_be16(&sdp->sdram_sdtr, 0xf539); +	out_be16(&sdp->sdram_sdcr, 0x4211);  	/* Dummy write to start SDRAM */  	*((volatile unsigned long *)0) = 0; diff --git a/board/freescale/m5275evb/m5275evb.c b/board/freescale/m5275evb/m5275evb.c index 35c9b2018..1bbe5a330 100644 --- a/board/freescale/m5275evb/m5275evb.c +++ b/board/freescale/m5275evb/m5275evb.c @@ -4,6 +4,8 @@   *   * Copyright (C) 2005-2008 Arthur Shipkowski (art@videon-central.com)   * + * Copyright (C) 2012 Freescale Semiconductor, Inc. All Rights Reserved. + *   * See file CREDITS for list of people who contributed to this   * project.   * @@ -25,6 +27,7 @@  #include <common.h>  #include <asm/immap.h> +#include <asm/io.h>  #define PERIOD		13	/* system bus period in ns */  #define SDRAM_TREFI	7800	/* in ns */ @@ -38,67 +41,68 @@ int checkboard(void)  phys_size_t initdram(int board_type)  { -	volatile sdramctrl_t *sdp = (sdramctrl_t *)(MMAP_SDRAM); -	volatile gpio_t *gpio_reg = (gpio_t *)(MMAP_GPIO); +	sdramctrl_t *sdp = (sdramctrl_t *)(MMAP_SDRAM); +	gpio_t *gpio_reg = (gpio_t *)(MMAP_GPIO); -	gpio_reg->par_sdram = 0x3FF; /* Enable SDRAM */ +	/* Enable SDRAM */ +	out_be16(&gpio_reg->par_sdram, 0x3FF);  	/* Set up chip select */ -	sdp->sdbar0 = CONFIG_SYS_SDRAM_BASE; -	sdp->sdbmr0 = MCF_SDRAMC_SDMRn_BAM_32M | MCF_SDRAMC_SDMRn_V; +	out_be32(&sdp->sdbar0, CONFIG_SYS_SDRAM_BASE); +	out_be32(&sdp->sdbmr0, MCF_SDRAMC_SDMRn_BAM_32M | MCF_SDRAMC_SDMRn_V);  	/* Set up timing */ -	sdp->sdcfg1 = 0x83711630; -	sdp->sdcfg2 = 0x46770000; +	out_be32(&sdp->sdcfg1, 0x83711630); +	out_be32(&sdp->sdcfg2, 0x46770000);  	/* Enable clock */ -	sdp->sdcr = MCF_SDRAMC_SDCR_MODE_EN | MCF_SDRAMC_SDCR_CKE; +	out_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN | MCF_SDRAMC_SDCR_CKE);  	/* Set precharge */ -	sdp->sdcr |= MCF_SDRAMC_SDCR_IPALL; +	setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);  	/* Dummy write to start SDRAM */  	*((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;  	/* Send LEMR */ -	sdp->sdmr = MCF_SDRAMC_SDMR_BNKAD_LEMR -			| MCF_SDRAMC_SDMR_AD(0x0) -			| MCF_SDRAMC_SDMR_CMD; +	setbits_be32(&sdp->sdmr, +		MCF_SDRAMC_SDMR_BNKAD_LEMR | MCF_SDRAMC_SDMR_AD(0x0) | +		MCF_SDRAMC_SDMR_CMD);  	*((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;  	/* Send LMR */ -	sdp->sdmr = 0x058d0000; +	out_be32(&sdp->sdmr, 0x058d0000);  	*((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;  	/* Stop sending commands */ -	sdp->sdmr &= ~(MCF_SDRAMC_SDMR_CMD); +	clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD);  	/* Set precharge */ -	sdp->sdcr |= MCF_SDRAMC_SDCR_IPALL; +	setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);  	*((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;  	/* Stop manual precharge, send 2 IREF */ -	sdp->sdcr &= ~(MCF_SDRAMC_SDCR_IPALL); -	sdp->sdcr |= MCF_SDRAMC_SDCR_IREF; +	clrbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL); +	setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IREF);  	*((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;  	*((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696; -	/* Write mode register, clear reset DLL */ -	sdp->sdmr = 0x018d0000; + +	out_be32(&sdp->sdmr, 0x018d0000);  	*((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;  	/* Stop sending commands */ -	sdp->sdmr &= ~(MCF_SDRAMC_SDMR_CMD); -	sdp->sdcr &= ~(MCF_SDRAMC_SDCR_MODE_EN); +	clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD); +	clrbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN);  	/* Turn on auto refresh, lock SDMR */ -	sdp->sdcr = +	out_be32(&sdp->sdcr,  		MCF_SDRAMC_SDCR_CKE  		| MCF_SDRAMC_SDCR_REF  		| MCF_SDRAMC_SDCR_MUX(1)  		/* 1 added to round up */  		| MCF_SDRAMC_SDCR_RCNT((SDRAM_TREFI/(PERIOD*64)) - 1 + 1) -		| MCF_SDRAMC_SDCR_DQS_OE(0x3); +		| MCF_SDRAMC_SDCR_DQS_OE(0x3));  	return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;  }; |