diff options
Diffstat (limited to 'board/freescale')
98 files changed, 2418 insertions, 175 deletions
| diff --git a/board/freescale/b4860qds/ddr.c b/board/freescale/b4860qds/ddr.c index 2d1492313..187c3b3eb 100644 --- a/board/freescale/b4860qds/ddr.c +++ b/board/freescale/b4860qds/ddr.c @@ -9,11 +9,11 @@  #include <common.h>  #include <i2c.h>  #include <hwconfig.h> +#include <fsl_ddr.h>  #include <asm/mmu.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/fsl_law.h> -#include <../arch/powerpc/cpu/mpc8xxx/ddr/ddr.h>  DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/bsc9131rdb/ddr.c b/board/freescale/bsc9131rdb/ddr.c index a9e92f2ae..339c57625 100644 --- a/board/freescale/bsc9131rdb/ddr.c +++ b/board/freescale/bsc9131rdb/ddr.c @@ -8,8 +8,8 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/processor.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/io.h>  #include <asm/fsl_law.h> diff --git a/board/freescale/bsc9131rdb/spl_minimal.c b/board/freescale/bsc9131rdb/spl_minimal.c index dd5ea95e3..bd8560b55 100644 --- a/board/freescale/bsc9131rdb/spl_minimal.c +++ b/board/freescale/bsc9131rdb/spl_minimal.c @@ -10,7 +10,7 @@  #include <nand.h>  #include <linux/compiler.h>  #include <asm/fsl_law.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/global_data.h>  DECLARE_GLOBAL_DATA_PTR; @@ -20,7 +20,8 @@ DECLARE_GLOBAL_DATA_PTR;   */  static void sdram_init(void)  { -	ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC8xxx_DDR_ADDR; +	struct ccsr_ddr __iomem *ddr = +		(struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DDR_ADDR;  	__raw_writel(CONFIG_SYS_DDR_CS0_BNDS, &ddr->cs0_bnds);  	__raw_writel(CONFIG_SYS_DDR_CS0_CONFIG, &ddr->cs0_config); diff --git a/board/freescale/bsc9132qds/bsc9132qds.c b/board/freescale/bsc9132qds/bsc9132qds.c index a895e4e29..937728006 100644 --- a/board/freescale/bsc9132qds/bsc9132qds.c +++ b/board/freescale/bsc9132qds/bsc9132qds.c @@ -17,10 +17,10 @@  #include <tsec.h>  #include <mmc.h>  #include <netdev.h> -#include <asm/fsl_ifc.h> +#include <fsl_ifc.h>  #include <hwconfig.h>  #include <i2c.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #ifdef CONFIG_PCI  #include <pci.h> @@ -133,16 +133,16 @@ void dsp_ddr_configure(void)  	 *copy the ddr controller settings from PowerPC side DDR controller  	 *to the DSP DDR controller as connected DDR memories are similar.  	 */ -	ccsr_ddr_t __iomem *pa_ddr = -			(ccsr_ddr_t __iomem *)CONFIG_SYS_MPC8xxx_DDR_ADDR; -	ccsr_ddr_t temp_ddr; -	ccsr_ddr_t __iomem *dsp_ddr = -			(ccsr_ddr_t __iomem *)CONFIG_SYS_FSL_DSP_CCSR_DDR_ADDR; +	struct ccsr_ddr __iomem *pa_ddr = +			(struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DDR_ADDR; +	struct ccsr_ddr temp_ddr; +	struct ccsr_ddr __iomem *dsp_ddr = +			(struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DSP_CCSR_DDR_ADDR; -	memcpy(&temp_ddr, pa_ddr, sizeof(ccsr_ddr_t)); +	memcpy(&temp_ddr, pa_ddr, sizeof(struct ccsr_ddr));  	temp_ddr.cs0_bnds = CONFIG_SYS_DDR1_CS0_BNDS;  	temp_ddr.sdram_cfg &= ~SDRAM_CFG_MEM_EN; -	memcpy(dsp_ddr, &temp_ddr, sizeof(ccsr_ddr_t)); +	memcpy(dsp_ddr, &temp_ddr, sizeof(struct ccsr_ddr));  	dsp_ddr->sdram_cfg |= SDRAM_CFG_MEM_EN;  } diff --git a/board/freescale/bsc9132qds/ddr.c b/board/freescale/bsc9132qds/ddr.c index b3130be86..43f163a2c 100644 --- a/board/freescale/bsc9132qds/ddr.c +++ b/board/freescale/bsc9132qds/ddr.c @@ -8,8 +8,8 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/processor.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/io.h>  #include <asm/fsl_law.h> diff --git a/board/freescale/bsc9132qds/spl_minimal.c b/board/freescale/bsc9132qds/spl_minimal.c index 2bf0a0cfa..8f7143192 100644 --- a/board/freescale/bsc9132qds/spl_minimal.c +++ b/board/freescale/bsc9132qds/spl_minimal.c @@ -10,14 +10,15 @@  #include <nand.h>  #include <linux/compiler.h>  #include <asm/fsl_law.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/global_data.h>  DECLARE_GLOBAL_DATA_PTR;  static void sdram_init(void)  { -	ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC8xxx_DDR_ADDR; +	struct ccsr_ddr __iomem *ddr = +		(struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DDR_ADDR;  #if CONFIG_DDR_CLK_FREQ == 100000000  	__raw_writel(CONFIG_SYS_DDR_CS0_BNDS, &ddr->cs0_bnds);  	__raw_writel(CONFIG_SYS_DDR_CS0_CONFIG, &ddr->cs0_config); diff --git a/board/freescale/c29xpcie/c29xpcie.c b/board/freescale/c29xpcie/c29xpcie.c index 48c4b308b..f964d6185 100644 --- a/board/freescale/c29xpcie/c29xpcie.c +++ b/board/freescale/c29xpcie/c29xpcie.c @@ -18,7 +18,7 @@  #include <mmc.h>  #include <netdev.h>  #include <pci.h> -#include <asm/fsl_ifc.h> +#include <fsl_ifc.h>  #include <asm/fsl_pci.h>  #include "cpld.h" diff --git a/board/freescale/c29xpcie/ddr.c b/board/freescale/c29xpcie/ddr.c index 57a9b610e..968655c1b 100644 --- a/board/freescale/c29xpcie/ddr.c +++ b/board/freescale/c29xpcie/ddr.c @@ -6,8 +6,8 @@  #include <common.h>  #include <asm/fsl_law.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include "cpld.h" diff --git a/board/freescale/corenet_ds/ddr.c b/board/freescale/corenet_ds/ddr.c index 18e2ff617..e7e893a1a 100644 --- a/board/freescale/corenet_ds/ddr.c +++ b/board/freescale/corenet_ds/ddr.c @@ -10,8 +10,8 @@  #include <i2c.h>  #include <hwconfig.h>  #include <asm/mmu.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/fsl_law.h>  DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/corenet_ds/eth_p4080.c b/board/freescale/corenet_ds/eth_p4080.c index e5beb5517..5cbec7f5f 100644 --- a/board/freescale/corenet_ds/eth_p4080.c +++ b/board/freescale/corenet_ds/eth_p4080.c @@ -12,7 +12,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_law.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <asm/fsl_portals.h>  #include <asm/fsl_liodn.h> diff --git a/board/freescale/corenet_ds/p3041ds_ddr.c b/board/freescale/corenet_ds/p3041ds_ddr.c index 5a8ed94b0..4dead9c04 100644 --- a/board/freescale/corenet_ds/p3041ds_ddr.c +++ b/board/freescale/corenet_ds/p3041ds_ddr.c @@ -7,7 +7,7 @@   */  #include <common.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  fixed_ddr_parm_t fixed_ddr_parm_0[] = {  	{0, 0, NULL} diff --git a/board/freescale/corenet_ds/p4080ds_ddr.c b/board/freescale/corenet_ds/p4080ds_ddr.c index 844e1d736..d572a5fbe 100644 --- a/board/freescale/corenet_ds/p4080ds_ddr.c +++ b/board/freescale/corenet_ds/p4080ds_ddr.c @@ -7,7 +7,7 @@   */  #include <common.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #define CONFIG_SYS_DDR_TIMING_3_1200	0x01030000  #define CONFIG_SYS_DDR_TIMING_0_1200	0xCC550104 diff --git a/board/freescale/corenet_ds/p5020ds_ddr.c b/board/freescale/corenet_ds/p5020ds_ddr.c index e65de364d..9aaf6db99 100644 --- a/board/freescale/corenet_ds/p5020ds_ddr.c +++ b/board/freescale/corenet_ds/p5020ds_ddr.c @@ -7,7 +7,7 @@   */  #include <common.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  fixed_ddr_parm_t fixed_ddr_parm_0[] = {  	{0, 0, NULL} diff --git a/board/freescale/corenet_ds/p5040ds_ddr.c b/board/freescale/corenet_ds/p5040ds_ddr.c index e65de364d..9aaf6db99 100644 --- a/board/freescale/corenet_ds/p5040ds_ddr.c +++ b/board/freescale/corenet_ds/p5040ds_ddr.c @@ -7,7 +7,7 @@   */  #include <common.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  fixed_ddr_parm_t fixed_ddr_parm_0[] = {  	{0, 0, NULL} diff --git a/board/freescale/m52277evb/config.mk b/board/freescale/m52277evb/config.mk deleted file mode 100644 index 0ffb0a204..000000000 --- a/board/freescale/m52277evb/config.mk +++ /dev/null @@ -1,11 +0,0 @@ -# -# (C) Copyright 2000-2003 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# Coldfire contribution by Bernhard Kuhn <bkuhn@metrowerks.com> -# -# SPDX-License-Identifier:	GPL-2.0+ -# - -sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp - -PLATFORM_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) diff --git a/board/freescale/m52277evb/u-boot.lds b/board/freescale/m52277evb/u-boot.lds index f3337a384..70121d924 100644 --- a/board/freescale/m52277evb/u-boot.lds +++ b/board/freescale/m52277evb/u-boot.lds @@ -13,8 +13,8 @@ SECTIONS    .text      :    {      arch/m68k/cpu/mcf5227x/start.o	(.text*) -    arch/m68k/cpu/mcf5227x/libmcf5227x.o	(.text*) -    arch/m68k/lib/libm68k.o		(.text*) +    arch/m68k/cpu/mcf5227x/built-in.o	(.text*) +    arch/m68k/lib/built-in.o		(.text*)      *(.text*)    } diff --git a/board/freescale/m5235evb/config.mk b/board/freescale/m5235evb/config.mk deleted file mode 100644 index 9ab4582bf..000000000 --- a/board/freescale/m5235evb/config.mk +++ /dev/null @@ -1,12 +0,0 @@ -# -# (C) Copyright 2000-2003 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# Coldfire contribution by Bernhard Kuhn <bkuhn@metrowerks.com> -# -# SPDX-License-Identifier:	GPL-2.0+ -# - -/*CONFIG_SYS_TEXT_BASE = 0xFFC00000*/ -sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp - -PLATFORM_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) diff --git a/board/freescale/m53017evb/u-boot.lds b/board/freescale/m53017evb/u-boot.lds index ef21299ea..de8d09bf6 100644 --- a/board/freescale/m53017evb/u-boot.lds +++ b/board/freescale/m53017evb/u-boot.lds @@ -12,9 +12,9 @@ SECTIONS    /* Read-only sections, merged into text segment: */    .text      :    { -    arch/m68k/cpu/mcf532x/start.o		(.text*) -    arch/m68k/cpu/mcf532x/libmcf532x.o	(.text*) -    arch/m68k/lib/libm68k.o		(.text*) +    arch/m68k/cpu/mcf532x/start.o	(.text*) +    arch/m68k/cpu/mcf532x/built-in.o	(.text*) +    arch/m68k/lib/built-in.o		(.text*)      . = DEFINED(env_offset) ? env_offset : .;      common/env_embedded.o	(.text*) diff --git a/board/freescale/m54451evb/config.mk b/board/freescale/m54451evb/config.mk deleted file mode 100644 index 0ffb0a204..000000000 --- a/board/freescale/m54451evb/config.mk +++ /dev/null @@ -1,11 +0,0 @@ -# -# (C) Copyright 2000-2003 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# Coldfire contribution by Bernhard Kuhn <bkuhn@metrowerks.com> -# -# SPDX-License-Identifier:	GPL-2.0+ -# - -sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp - -PLATFORM_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) diff --git a/board/freescale/m54455evb/config.mk b/board/freescale/m54455evb/config.mk deleted file mode 100644 index 0ffb0a204..000000000 --- a/board/freescale/m54455evb/config.mk +++ /dev/null @@ -1,11 +0,0 @@ -# -# (C) Copyright 2000-2003 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# Coldfire contribution by Bernhard Kuhn <bkuhn@metrowerks.com> -# -# SPDX-License-Identifier:	GPL-2.0+ -# - -sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp - -PLATFORM_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) diff --git a/board/freescale/mpc8349emds/Makefile b/board/freescale/mpc8349emds/Makefile index 23880f52f..5c315f9f6 100644 --- a/board/freescale/mpc8349emds/Makefile +++ b/board/freescale/mpc8349emds/Makefile @@ -7,4 +7,4 @@  obj-y += mpc8349emds.o  obj-$(CONFIG_PCI) += pci.o -obj-$(CONFIG_FSL_DDR2) += ddr.o +obj-$(CONFIG_SYS_FSL_DDR2) += ddr.o diff --git a/board/freescale/mpc8349emds/ddr.c b/board/freescale/mpc8349emds/ddr.c index 3d257d0fb..aae003d12 100644 --- a/board/freescale/mpc8349emds/ddr.c +++ b/board/freescale/mpc8349emds/ddr.c @@ -6,8 +6,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  struct board_specific_parameters {  	u32 n_ranks; diff --git a/board/freescale/mpc8349emds/mpc8349emds.c b/board/freescale/mpc8349emds/mpc8349emds.c index ec4848729..d9092201a 100644 --- a/board/freescale/mpc8349emds/mpc8349emds.c +++ b/board/freescale/mpc8349emds/mpc8349emds.c @@ -12,8 +12,8 @@  #include <i2c.h>  #include <spi.h>  #include <miiphy.h> -#ifdef CONFIG_FSL_DDR2 -#include <asm/fsl_ddr_sdram.h> +#ifdef CONFIG_SYS_FSL_DDR2 +#include <fsl_ddr_sdram.h>  #else  #include <spd_sdram.h>  #endif @@ -57,7 +57,7 @@ phys_size_t initdram (int board_type)  	/* DDR SDRAM - Main SODIMM */  	im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR;  #if defined(CONFIG_SPD_EEPROM) -#ifndef CONFIG_FSL_DDR2 +#ifndef CONFIG_SYS_FSL_DDR2  	msize = spd_sdram() * 1024 * 1024;  #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)  	ddr_enable_ecc(msize); diff --git a/board/freescale/mpc8536ds/ddr.c b/board/freescale/mpc8536ds/ddr.c index d10370c9f..ebe3ba460 100644 --- a/board/freescale/mpc8536ds/ddr.c +++ b/board/freescale/mpc8536ds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8536ds/mpc8536ds.c b/board/freescale/mpc8536ds/mpc8536ds.c index 5daab692c..467f4f201 100644 --- a/board/freescale/mpc8536ds/mpc8536ds.c +++ b/board/freescale/mpc8536ds/mpc8536ds.c @@ -12,7 +12,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/io.h>  #include <asm/fsl_serdes.h>  #include <spd.h> @@ -90,7 +90,7 @@ int checkboard (void)  phys_size_t fixed_sdram (void)  {  	volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; -	volatile ccsr_ddr_t *ddr= &immap->im_ddr; +	struct ccsr_ddr __iomem *ddr = &immap->im_ddr;  	uint d_init;  	ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; diff --git a/board/freescale/mpc8540ads/ddr.c b/board/freescale/mpc8540ads/ddr.c index 9e7981527..41d4cfe73 100644 --- a/board/freescale/mpc8540ads/ddr.c +++ b/board/freescale/mpc8540ads/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8540ads/mpc8540ads.c b/board/freescale/mpc8540ads/mpc8540ads.c index 175eefcc6..93288c7e9 100644 --- a/board/freescale/mpc8540ads/mpc8540ads.c +++ b/board/freescale/mpc8540ads/mpc8540ads.c @@ -14,7 +14,7 @@  #include <asm/processor.h>  #include <asm/mmu.h>  #include <asm/immap_85xx.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <libfdt.h>  #include <fdt_support.h> @@ -168,7 +168,8 @@ void lbc_sdram_init(void)  phys_size_t fixed_sdram(void)  {    #ifndef CONFIG_SYS_RAMBOOT -	volatile ccsr_ddr_t *ddr= (void *)(CONFIG_SYS_MPC8xxx_DDR_ADDR); +	struct ccsr_ddr __iomem *ddr = +		(struct ccsr_ddr __iomem *)(CONFIG_SYS_FSL_DDR_ADDR);  	ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;  	ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; diff --git a/board/freescale/mpc8541cds/ddr.c b/board/freescale/mpc8541cds/ddr.c index 78d73b0ea..d2ac6c4ad 100644 --- a/board/freescale/mpc8541cds/ddr.c +++ b/board/freescale/mpc8541cds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8541cds/mpc8541cds.c b/board/freescale/mpc8541cds/mpc8541cds.c index 8115e5c69..7b264dddd 100644 --- a/board/freescale/mpc8541cds/mpc8541cds.c +++ b/board/freescale/mpc8541cds/mpc8541cds.c @@ -11,7 +11,7 @@  #include <asm/processor.h>  #include <asm/mmu.h>  #include <asm/immap_85xx.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <ioports.h>  #include <spd_sdram.h>  #include <libfdt.h> diff --git a/board/freescale/mpc8544ds/ddr.c b/board/freescale/mpc8544ds/ddr.c index 6cf9bc1d7..aa30cabb0 100644 --- a/board/freescale/mpc8544ds/ddr.c +++ b/board/freescale/mpc8544ds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8544ds/mpc8544ds.c b/board/freescale/mpc8544ds/mpc8544ds.c index dfd8fa652..1b33db6f3 100644 --- a/board/freescale/mpc8544ds/mpc8544ds.c +++ b/board/freescale/mpc8544ds/mpc8544ds.c @@ -11,7 +11,7 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <asm/io.h>  #include <miiphy.h> diff --git a/board/freescale/mpc8548cds/ddr.c b/board/freescale/mpc8548cds/ddr.c index 996ffe206..b31ea3432 100644 --- a/board/freescale/mpc8548cds/ddr.c +++ b/board/freescale/mpc8548cds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8548cds/mpc8548cds.c b/board/freescale/mpc8548cds/mpc8548cds.c index 51e4bb5dc..ca9b43c6b 100644 --- a/board/freescale/mpc8548cds/mpc8548cds.c +++ b/board/freescale/mpc8548cds/mpc8548cds.c @@ -12,7 +12,7 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <miiphy.h>  #include <libfdt.h> diff --git a/board/freescale/mpc8555cds/ddr.c b/board/freescale/mpc8555cds/ddr.c index 78d73b0ea..d2ac6c4ad 100644 --- a/board/freescale/mpc8555cds/ddr.c +++ b/board/freescale/mpc8555cds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8555cds/mpc8555cds.c b/board/freescale/mpc8555cds/mpc8555cds.c index e2093d1bb..de5f5669e 100644 --- a/board/freescale/mpc8555cds/mpc8555cds.c +++ b/board/freescale/mpc8555cds/mpc8555cds.c @@ -9,7 +9,7 @@  #include <asm/processor.h>  #include <asm/mmu.h>  #include <asm/immap_85xx.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <ioports.h>  #include <spd_sdram.h>  #include <libfdt.h> diff --git a/board/freescale/mpc8560ads/ddr.c b/board/freescale/mpc8560ads/ddr.c index 9e7981527..41d4cfe73 100644 --- a/board/freescale/mpc8560ads/ddr.c +++ b/board/freescale/mpc8560ads/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8560ads/mpc8560ads.c b/board/freescale/mpc8560ads/mpc8560ads.c index 90a2522cb..7104e3315 100644 --- a/board/freescale/mpc8560ads/mpc8560ads.c +++ b/board/freescale/mpc8560ads/mpc8560ads.c @@ -14,7 +14,7 @@  #include <asm/processor.h>  #include <asm/mmu.h>  #include <asm/immap_85xx.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <ioports.h>  #include <spd_sdram.h>  #include <miiphy.h> @@ -373,7 +373,7 @@ void lbc_sdram_init(void)  phys_size_t fixed_sdram(void)  {    #ifndef CONFIG_SYS_RAMBOOT -	volatile ccsr_ddr_t *ddr= (void *)(CONFIG_SYS_MPC8xxx_DDR_ADDR); +	volatile ccsr_ddr_t *ddr = (void *)(CONFIG_SYS_FSL_DDR_ADDR);  	ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;  	ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; diff --git a/board/freescale/mpc8568mds/ddr.c b/board/freescale/mpc8568mds/ddr.c index b1f4f1f84..6db92ef2d 100644 --- a/board/freescale/mpc8568mds/ddr.c +++ b/board/freescale/mpc8568mds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8568mds/mpc8568mds.c b/board/freescale/mpc8568mds/mpc8568mds.c index ae80697b3..a8fdcb5f9 100644 --- a/board/freescale/mpc8568mds/mpc8568mds.c +++ b/board/freescale/mpc8568mds/mpc8568mds.c @@ -12,7 +12,7 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <spd_sdram.h>  #include <i2c.h> diff --git a/board/freescale/mpc8569mds/ddr.c b/board/freescale/mpc8569mds/ddr.c index 68f686b7e..ef404b1d6 100644 --- a/board/freescale/mpc8569mds/ddr.c +++ b/board/freescale/mpc8569mds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8569mds/mpc8569mds.c b/board/freescale/mpc8569mds/mpc8569mds.c index c928a964f..cb55e1c98 100644 --- a/board/freescale/mpc8569mds/mpc8569mds.c +++ b/board/freescale/mpc8569mds/mpc8569mds.c @@ -14,7 +14,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <asm/io.h>  #include <spd_sdram.h> @@ -231,7 +231,8 @@ int checkboard (void)  #if !defined(CONFIG_SPD_EEPROM)  phys_size_t fixed_sdram(void)  { -	volatile ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC8xxx_DDR_ADDR; +	struct ccsr_ddr __iomem *ddr = +		(struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DDR_ADDR;  	uint d_init;  	out_be32(&ddr->cs0_bnds, CONFIG_SYS_DDR_CS0_BNDS); diff --git a/board/freescale/mpc8572ds/ddr.c b/board/freescale/mpc8572ds/ddr.c index 52e4f4224..2bfc1a170 100644 --- a/board/freescale/mpc8572ds/ddr.c +++ b/board/freescale/mpc8572ds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  struct board_specific_parameters {  	u32 n_ranks; diff --git a/board/freescale/mpc8572ds/mpc8572ds.c b/board/freescale/mpc8572ds/mpc8572ds.c index 657df6a71..56863222c 100644 --- a/board/freescale/mpc8572ds/mpc8572ds.c +++ b/board/freescale/mpc8572ds/mpc8572ds.c @@ -12,7 +12,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/io.h>  #include <asm/fsl_serdes.h>  #include <miiphy.h> @@ -62,7 +62,7 @@ int checkboard (void)  phys_size_t fixed_sdram (void)  {  	volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; -	volatile ccsr_ddr_t *ddr= &immap->im_ddr; +	struct ccsr_ddr __iomem *ddr = &immap->im_ddr;  	uint d_init;  	ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; diff --git a/board/freescale/mpc8610hpcd/Makefile b/board/freescale/mpc8610hpcd/Makefile index 933ea179b..2613004f8 100644 --- a/board/freescale/mpc8610hpcd/Makefile +++ b/board/freescale/mpc8610hpcd/Makefile @@ -4,6 +4,6 @@  #  obj-y	+= mpc8610hpcd.o -obj-$(CONFIG_FSL_DDR2) += ddr.o +obj-$(CONFIG_SYS_FSL_DDR2) += ddr.o  obj-y	+= law.o  obj-$(CONFIG_FSL_DIU_FB)	+= mpc8610hpcd_diu.o diff --git a/board/freescale/mpc8610hpcd/ddr.c b/board/freescale/mpc8610hpcd/ddr.c index 6cf9bc1d7..aa30cabb0 100644 --- a/board/freescale/mpc8610hpcd/ddr.c +++ b/board/freescale/mpc8610hpcd/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/mpc8610hpcd/mpc8610hpcd.c b/board/freescale/mpc8610hpcd/mpc8610hpcd.c index ffdcf2444..d8740ddac 100644 --- a/board/freescale/mpc8610hpcd/mpc8610hpcd.c +++ b/board/freescale/mpc8610hpcd/mpc8610hpcd.c @@ -10,7 +10,7 @@  #include <asm/processor.h>  #include <asm/immap_86xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <i2c.h>  #include <asm/io.h> @@ -143,7 +143,7 @@ phys_size_t fixed_sdram(void)  {  #if !defined(CONFIG_SYS_RAMBOOT)  	volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; -	volatile ccsr_ddr_t *ddr = &immap->im_ddr1; +	struct ccsr_ddr __iomem *ddr = &immap->im_ddr1;  	uint d_init;  	ddr->cs0_bnds = 0x0000001f; diff --git a/board/freescale/mpc8641hpcn/Makefile b/board/freescale/mpc8641hpcn/Makefile index 8d53af822..86c70bcb9 100644 --- a/board/freescale/mpc8641hpcn/Makefile +++ b/board/freescale/mpc8641hpcn/Makefile @@ -7,4 +7,4 @@  obj-y	+= mpc8641hpcn.o  obj-y	+= law.o -obj-$(CONFIG_FSL_DDR2) += ddr.o +obj-$(CONFIG_SYS_FSL_DDR2) += ddr.o diff --git a/board/freescale/mpc8641hpcn/ddr.c b/board/freescale/mpc8641hpcn/ddr.c index 651652a77..7cd039565 100644 --- a/board/freescale/mpc8641hpcn/ddr.c +++ b/board/freescale/mpc8641hpcn/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  struct board_specific_parameters {  	u32 n_ranks; diff --git a/board/freescale/mpc8641hpcn/mpc8641hpcn.c b/board/freescale/mpc8641hpcn/mpc8641hpcn.c index 46a543ebc..a58b5f9cd 100644 --- a/board/freescale/mpc8641hpcn/mpc8641hpcn.c +++ b/board/freescale/mpc8641hpcn/mpc8641hpcn.c @@ -9,7 +9,7 @@  #include <asm/processor.h>  #include <asm/immap_86xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <asm/io.h>  #include <libfdt.h> @@ -64,7 +64,7 @@ fixed_sdram(void)  {  #if !defined(CONFIG_SYS_RAMBOOT)  	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR; -	volatile ccsr_ddr_t *ddr = &immap->im_ddr1; +	struct ccsr_ddr __iomem *ddr = &immap->im_ddr1;  	ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;  	ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; diff --git a/board/freescale/mx31ads/u-boot.lds b/board/freescale/mx31ads/u-boot.lds index 6cfca2dab..1cca176c3 100644 --- a/board/freescale/mx31ads/u-boot.lds +++ b/board/freescale/mx31ads/u-boot.lds @@ -22,11 +22,11 @@ SECTIONS  	  /* WARNING - the following is hand-optimized to fit within	*/  	  /* the sector layout of our flash chips!	XXX FIXME XXX	*/ -	  arch/arm/cpu/arm1136/start.o			(.text*) -	  board/freescale/mx31ads/libmx31ads.o	(.text*) -	  arch/arm/lib/libarm.o			(.text*) -	  net/libnet.o				(.text*) -	  drivers/mtd/libmtd.o			(.text*) +	  arch/arm/cpu/arm1136/start.o		(.text*) +	  board/freescale/mx31ads/built-in.o	(.text*) +	  arch/arm/lib/built-in.o		(.text*) +	  net/built-in.o			(.text*) +	  drivers/mtd/built-in.o		(.text*)  	  . = DEFINED(env_offset) ? env_offset : .;  	  common/env_embedded.o(.text*) diff --git a/board/freescale/p1010rdb/README b/board/freescale/p1010rdb/README.P1010RDB-PA index 7f18aaa1b..158a1b315 100644 --- a/board/freescale/p1010rdb/README +++ b/board/freescale/p1010rdb/README.P1010RDB-PA @@ -204,5 +204,5 @@ Place uImage, p1010rdb.dtb and rootfs files in the TFTP disk area.  	=> bootm 1000000 3000000 2000000 -Please contact your local field applications engineer or sales representative -to obtain related documents, such as P1010-RDB User Guide for details. +For more details, please refer to P1010RDB User Guide and access website +www.freescale.com diff --git a/board/freescale/p1010rdb/README.P1010RDB-PB b/board/freescale/p1010rdb/README.P1010RDB-PB new file mode 100644 index 000000000..cf459b339 --- /dev/null +++ b/board/freescale/p1010rdb/README.P1010RDB-PB @@ -0,0 +1,188 @@ +Overview +========= +The P1010RDB-PB is a Freescale Reference Design Board that hosts the P1010 SoC. +P1010RDB-PB is a variation of previous P1010RDB-PA board. + +The P1010 is a cost-effective, low-power, highly integrated host processor +based on a Power Architecture e500v2 core (maximum core frequency 1GHz),that +addresses the requirements of several routing, gateways, storage, consumer, +and industrial applications. Applications of interest include the main CPUs and +I/O processors in network attached storage (NAS), the voice over IP (VoIP) +router/gateway, and wireless LAN (WLAN) and industrial controllers. + +The P1010RDB-PB board features are as following: +Memory subsystem: +	- 1G bytes unbuffered DDR3 SDRAM discrete devices (32-bit bus) +	- 32M bytes NOR flash single-chip memory +	- 2G bytes NAND flash memory +	- 16M bytes SPI memory +	- 256K bit M24256 I2C EEPROM +	- I2C Board EEPROM 128x8 bit memory +	- SD/MMC connector to interface with the SD memory card +Interfaces: +	- Three 10/100/1000 BaseT Ethernet ports (One RGMII and two SGMII) +	- PCIe 2.0: two x1 mini-PCIe slots +	- SATA 2.0: two SATA interfaces +	- USB 2.0: one USB interface +	- FlexCAN: two FlexCAN interfaces (revision 2.0B) +	- UART: one USB-to-Serial interface +	- TDM: 2 FXS ports connected via an external SLIC to the TDM interface. +	       1 FXO port connected via a relay to FXS for switchover to POTS + +Board connectors: +	- Mini-ITX power supply connector +	- JTAG/COP for debugging + +POR: support critical POR setting changed via switch on board +PCB: 6-layer routing (4-layer signals, 2-layer power and ground) + +Physical Memory Map on P1010RDB +=============================== +Address Start   Address End   Memory type	Attributes +0x0000_0000	0x3fff_ffff   DDR		1G Cacheable +0xa000_0000	0xdfff_ffff   PCI Express Mem	1G non-cacheable +0xee00_0000	0xefff_ffff   NOR Flash		32M non-cacheable +0xffc2_0000	0xffc5_ffff   PCI IO range	256K non-cacheable +0xffa0_0000	0xffaf_ffff   NAND Flash	1M cacheable +0xffb0_0000	0xffbf_ffff   Board CPLD	1M non-cacheable +0xffd0_0000	0xffd0_3fff   L1 for Stack	16K Cacheable TLB0 +0xffe0_0000	0xffef_ffff   CCSR		1M non-cacheable + + +Serial Port Configuration on P1010RDB +===================================== +Configure the serial port of the attached computer with the following values: +	-Data rate: 115200 bps +	-Number of data bits: 8 +	-Parity: None +	-Number of Stop bits: 1 +	-Flow Control: Hardware/None + + +P1010RDB-PB default DIP-switch settings +======================================= +SW1[1:8]= 10101010 +SW2[1:8]= 11011000 +SW3[1:8]= 10010000 +SW4[1:4]= 1010 +SW5[1:8]= 11111010 + + +P1010RDB-PB boot mode settings via DIP-switch +============================================= +SW4[1:4]= 1111 and SW3[3:4]= 00 for 16bit NOR boot +SW4[1:4]= 1010 and SW3[3:4]= 01 for 8bit NAND boot +SW4[1:4]= 0110 and SW3[3:4]= 00 for SPI boot +SW4[1:4]= 0111 and SW3[3:4]= 10 for SD boot +Note: 1 stands for 'on', 0 stands for 'off' + + +Switch P1010RDB-PB boot mode via software without setting DIP-switch +==================================================================== +=> run boot_bank0    (boot from NOR bank0) +=> run boot_bank1    (boot from NOR bank1) +=> run boot_nand     (boot from NAND flash) +=> run boot_spi      (boot from SPI flash) +=> run boot_sd       (boot from SD card) + + +Frequency combination support on P1010RDB-PB +============================================= +SW1[4:7] SW5[1] SW5[5:8] SW2[2] Core(MHz) Platform(MHz) DDR(MT/s) +0101      1      1010     0       800       400		800 +1001      1      1010     0       800       400		667 +1010      1      1100     0       667       333		667 +1000      0      1010     0       533       266		667 +0101      1      1010     1       1000      400		800 +1001      1      1010     1       1000      400		667 + + +Setting of pin mux +================== +Since pins multiplexing, TDM and CAN are muxed with SPI flash. +SDHC is muxed with IFC. IFC and SPI flash are enabled by default. + +To enable TDM: +=> setenv hwconfig fsl_p1010mux:tdm_can=tdm +=> save;reset + +To enable FlexCAN: +=> setenv hwconfig fsl_p1010mux:tdm_can=can +=> save;reset + +To enable SDHC in case of NOR/NAND/SPI boot +   a) For temporary use case in runtime without reboot system +      run 'mux sdhc' in u-boot to validate SDHC with invalidating IFC. + +   b) For long-term use case +      set 'esdhc' in hwconfig and save it. + +To enable IFC in case of SD boot +   a) For temporary use case in runtime without reboot system +      run 'mux ifc' in u-boot to validate IFC with invalidating SDHC. + +   b) For long-term use case +      set 'ifc' in hwconfig and save it. + + +Build images for different boot mode +==================================== +First setup cross compile environment on build host +   $ export ARCH=powerpc +   $ export CROSS_COMPILE=<your-compiler-path>/powerpc-linux-gnu- + +1. For NOR boot +   $ make P1010RDB-PB_NOR + +2. For NAND boot +   $ make P1010RDB-PB_NAND + +3. For SPI boot +   $ make P1010RDB-PB_SPIFLASH + +4. For SD boot +   $ make P1010RDB-PB_SDCARD + + +Steps to program images to flash for different boot mode +======================================================== +1. NOR boot +   => tftp 1000000 u-boot.bin +   For bank0 +   => pro off all;era eff80000 efffffff;cp.b 1000000 eff80000 $filesize +   set SW1[8]=0, SW4[1:4]= 1111 and SW3[3:4]= 00, then power on the board + +   For bank1 +   => pro off all;era eef80000 eeffffff;cp.b 1000000 eef80000 $filesize +   set SW1[8]=1, SW4[1:4]= 1111 and SW3[3:4]= 00, then power on the board + +2. NAND boot +   => tftp 1000000 u-boot-nand.bin +   => nand erase 0 $filesize; nand write $loadaddr 0 $filesize +   Set SW4[1:4]= 1010 and SW3[3:4]= 01, then power on the board + +3. SPI boot +   1)  cat p1010rdb-config-header.bin u-boot.bin > u-boot-spi-combined.bin +   2)  =>  tftp 1000000 u-boot-spi-combined.bin +   3)  =>  sf probe 0; sf erase 0 100000; sf write 1000000 0 100000 +   set SW4[1:4]= 0110 and SW3[3:4]= 00, then power on the board + +4. SD boot +   1)	cat p1010rdb-config-header.bin u-boot.bin > u-boot-sd-combined.bin +   2)	=> tftp 1000000 u-boot-sd-combined.bin +   3)	=> mux sdhc +   4)	=> mmc write 1000000 0 1050 +   set SW4[1:4]= 0111 and SW3[3:4]= 10, then power on the board + + +Boot Linux from network using TFTP on P1010RDB-PB +================================================= +Place uImage, p1010rdb.dtb and rootfs files in the TFTP download path. +	=> tftp 1000000 uImage +	=> tftp 2000000 p1010rdb.dtb +	=> tftp 3000000 rootfs.ext2.gz.uboot.p1010rdb +	=> bootm 1000000 3000000 2000000 + + +For more details, please refer to P1010RDB-PB User Guide and access website +www.freescale.com and Freescale QorIQ SDK Infocenter document. diff --git a/board/freescale/p1010rdb/ddr.c b/board/freescale/p1010rdb/ddr.c index ab1b41d83..b0d95ea00 100644 --- a/board/freescale/p1010rdb/ddr.c +++ b/board/freescale/p1010rdb/ddr.c @@ -8,8 +8,8 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/processor.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/io.h>  #include <asm/fsl_law.h> diff --git a/board/freescale/p1010rdb/p1010rdb.c b/board/freescale/p1010rdb/p1010rdb.c index e940d2275..62caf676c 100644 --- a/board/freescale/p1010rdb/p1010rdb.c +++ b/board/freescale/p1010rdb/p1010rdb.c @@ -19,7 +19,7 @@  #include <netdev.h>  #include <pci.h>  #include <asm/fsl_serdes.h> -#include <asm/fsl_ifc.h> +#include <fsl_ifc.h>  #include <asm/fsl_pci.h>  #include <hwconfig.h>  #include <i2c.h> diff --git a/board/freescale/p1010rdb/spl_minimal.c b/board/freescale/p1010rdb/spl_minimal.c index d0e712eb3..39a5a0f37 100644 --- a/board/freescale/p1010rdb/spl_minimal.c +++ b/board/freescale/p1010rdb/spl_minimal.c @@ -10,7 +10,7 @@  #include <nand.h>  #include <asm/mmu.h>  #include <asm/immap_85xx.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_law.h>  #include <asm/global_data.h> @@ -19,7 +19,8 @@ DECLARE_GLOBAL_DATA_PTR;  void sdram_init(void)  { -	ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC8xxx_DDR_ADDR; +	struct ccsr_ddr __iomem *ddr = +		(struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DDR_ADDR;  	ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;  	u32 ddr_ratio;  	unsigned long ddr_freq_mhz; diff --git a/board/freescale/p1022ds/ddr.c b/board/freescale/p1022ds/ddr.c index 94d2c2b0d..09212bcee 100644 --- a/board/freescale/p1022ds/ddr.c +++ b/board/freescale/p1022ds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  struct board_specific_parameters {  	u32 n_ranks; diff --git a/board/freescale/p1022ds/p1022ds.c b/board/freescale/p1022ds/p1022ds.c index 3d1951cdb..ba789a4da 100644 --- a/board/freescale/p1022ds/p1022ds.c +++ b/board/freescale/p1022ds/p1022ds.c @@ -14,7 +14,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <asm/io.h>  #include <libfdt.h> diff --git a/board/freescale/p1022ds/spl_minimal.c b/board/freescale/p1022ds/spl_minimal.c index 8b3439684..6c7e1ac3c 100644 --- a/board/freescale/p1022ds/spl_minimal.c +++ b/board/freescale/p1022ds/spl_minimal.c @@ -9,7 +9,7 @@  #include <asm/io.h>  #include <nand.h>  #include <asm/fsl_law.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  const static u32 sysclk_tbl[] = { diff --git a/board/freescale/p1023rdb/ddr.c b/board/freescale/p1023rdb/ddr.c index 9fb61fdab..d587df527 100644 --- a/board/freescale/p1023rdb/ddr.c +++ b/board/freescale/p1023rdb/ddr.c @@ -8,8 +8,8 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/processor.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/io.h>  #include <asm/fsl_law.h> diff --git a/board/freescale/p1023rdb/p1023rdb.c b/board/freescale/p1023rdb/p1023rdb.c index b52b09206..d2d4f8390 100644 --- a/board/freescale/p1023rdb/p1023rdb.c +++ b/board/freescale/p1023rdb/p1023rdb.c @@ -16,7 +16,7 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_portals.h>  #include <libfdt.h>  #include <fdt_support.h> diff --git a/board/freescale/p1023rds/p1023rds.c b/board/freescale/p1023rds/p1023rds.c index 7c54b65c1..d8c87458e 100644 --- a/board/freescale/p1023rds/p1023rds.c +++ b/board/freescale/p1023rds/p1023rds.c @@ -16,7 +16,7 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_portals.h>  #include <libfdt.h>  #include <fdt_support.h> @@ -58,7 +58,8 @@ int checkboard(void)  phys_size_t fixed_sdram(void)  {  #ifndef CONFIG_SYS_RAMBOOT -	ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC8xxx_DDR_ADDR; +	struct ccsr_ddr __iomem *ddr = +		(struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DDR_ADDR;  	set_next_law(0, LAW_SIZE_2G, LAW_TRGT_IF_DDR_1); diff --git a/board/freescale/p1_p2_rdb/ddr.c b/board/freescale/p1_p2_rdb/ddr.c index 5bee22e63..17d3beac3 100644 --- a/board/freescale/p1_p2_rdb/ddr.c +++ b/board/freescale/p1_p2_rdb/ddr.c @@ -8,7 +8,7 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/processor.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/io.h>  #include <asm/fsl_law.h> diff --git a/board/freescale/p1_p2_rdb_pc/ddr.c b/board/freescale/p1_p2_rdb_pc/ddr.c index 81cc0930b..946d5032e 100644 --- a/board/freescale/p1_p2_rdb_pc/ddr.c +++ b/board/freescale/p1_p2_rdb_pc/ddr.c @@ -10,8 +10,8 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/processor.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/io.h>  #include <asm/fsl_law.h> diff --git a/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c b/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c index 50553dacd..966abb24a 100644 --- a/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c +++ b/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c @@ -14,7 +14,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/io.h>  #include <asm/fsl_law.h>  #include <asm/fsl_lbc.h> diff --git a/board/freescale/p1_p2_rdb_pc/spl_minimal.c b/board/freescale/p1_p2_rdb_pc/spl_minimal.c index adfa7b1e0..92437bc78 100644 --- a/board/freescale/p1_p2_rdb_pc/spl_minimal.c +++ b/board/freescale/p1_p2_rdb_pc/spl_minimal.c @@ -10,7 +10,7 @@  #include <nand.h>  #include <linux/compiler.h>  #include <asm/fsl_law.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/global_data.h>  DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/p1_twr/ddr.c b/board/freescale/p1_twr/ddr.c index 67f69d79b..a2ce75a40 100644 --- a/board/freescale/p1_twr/ddr.c +++ b/board/freescale/p1_twr/ddr.c @@ -8,8 +8,8 @@  #include <asm/mmu.h>  #include <asm/immap_85xx.h>  #include <asm/processor.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/io.h>  #include <asm/fsl_law.h> diff --git a/board/freescale/p1_twr/p1_twr.c b/board/freescale/p1_twr/p1_twr.c index ea8db6fc0..0e0d0587d 100644 --- a/board/freescale/p1_twr/p1_twr.c +++ b/board/freescale/p1_twr/p1_twr.c @@ -14,7 +14,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/io.h>  #include <asm/fsl_law.h>  #include <asm/fsl_lbc.h> diff --git a/board/freescale/p2020come/ddr.c b/board/freescale/p2020come/ddr.c index da804771f..b642e1255 100644 --- a/board/freescale/p2020come/ddr.c +++ b/board/freescale/p2020come/ddr.c @@ -5,8 +5,8 @@   */  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  void fsl_ddr_board_options(memctl_options_t *popts,  				dimm_params_t *pdimm, diff --git a/board/freescale/p2020ds/ddr.c b/board/freescale/p2020ds/ddr.c index b12141f29..debe70b18 100644 --- a/board/freescale/p2020ds/ddr.c +++ b/board/freescale/p2020ds/ddr.c @@ -8,8 +8,8 @@  #include <common.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  struct board_specific_parameters {  	u32 n_ranks; @@ -37,7 +37,7 @@ static const struct board_specific_parameters dimm0[] = {  	 *   num|  hi|  clk| cpo|wrdata|2T  	 * ranks| mhz|adjst|    | delay|  	 */ -#ifdef CONFIG_FSL_DDR2 +#ifdef CONFIG_SYS_FSL_DDR2  	{2,  549,    4,   0x1f,    2,  0},  	{2,  680,    4,   0x1f,    3,  0},  	{2,  850,    4,   0x1f,    4,  0}, diff --git a/board/freescale/p2020ds/p2020ds.c b/board/freescale/p2020ds/p2020ds.c index 58a42231a..a0cf92703 100644 --- a/board/freescale/p2020ds/p2020ds.c +++ b/board/freescale/p2020ds/p2020ds.c @@ -12,7 +12,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_pci.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/io.h>  #include <asm/fsl_serdes.h>  #include <miiphy.h> @@ -68,7 +68,8 @@ int checkboard(void)  phys_size_t fixed_sdram(void)  { -	volatile ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC8xxx_DDR_ADDR; +	struct ccsr_ddr __iomem *ddr = +		(struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DDR_ADDR;  	uint d_init;  	ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; diff --git a/board/freescale/p2041rdb/ddr.c b/board/freescale/p2041rdb/ddr.c index cc1bfae39..b8bbcdf2a 100644 --- a/board/freescale/p2041rdb/ddr.c +++ b/board/freescale/p2041rdb/ddr.c @@ -10,8 +10,8 @@  #include <i2c.h>  #include <hwconfig.h>  #include <asm/mmu.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/fsl_law.h>  struct board_specific_parameters { diff --git a/board/freescale/t1040qds/Makefile b/board/freescale/t1040qds/Makefile index a2dba6ff1..93af9eb6a 100644 --- a/board/freescale/t1040qds/Makefile +++ b/board/freescale/t1040qds/Makefile @@ -4,7 +4,7 @@  # SPDX-License-Identifier:	GPL-2.0+  # -obj-y	+= $(BOARD).o +obj-y	+= t1040qds.o  obj-y	+= ddr.o  obj-$(CONFIG_PCI)     += pci.o  obj-y	+= law.o diff --git a/board/freescale/t1040qds/ddr.c b/board/freescale/t1040qds/ddr.c index 4fd17da16..da89a36b9 100644 --- a/board/freescale/t1040qds/ddr.c +++ b/board/freescale/t1040qds/ddr.c @@ -8,8 +8,8 @@  #include <i2c.h>  #include <hwconfig.h>  #include <asm/mmu.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/fsl_law.h>  #include "ddr.h" diff --git a/board/freescale/t1040qds/t1040_pbi.cfg b/board/freescale/t1040qds/t1040_pbi.cfg new file mode 100644 index 000000000..624398a25 --- /dev/null +++ b/board/freescale/t1040qds/t1040_pbi.cfg @@ -0,0 +1,27 @@ +#PBI commands +#Initialize CPC1 +09010000 00200400 +09138000 00000000 +091380c0 00000100 +#Configure CPC1 as 512KB SRAM +09010100 00000000 +09010104 fffc0007 +09010f00 08000000 +09010000 80000000 +#Configure LAW for CPC1 +09000cf0 00000000 +09000cf4 fffc0000 +09000cf8 81000011 +#Configure alternate space +09000010 00000000 +09000014 ff000000 +09000018 81000000 +#Configure SPI controller +09110000 80000403 +09110020 2d170008 +09110024 00100008 +09110028 00100008 +0911002c 00100008 +#Flush PBL data +09138000 00000000 +091380c0 00000000 diff --git a/board/freescale/t1040qds/t1040_rcw.cfg b/board/freescale/t1040qds/t1040_rcw.cfg new file mode 100644 index 000000000..0d0dfa5a4 --- /dev/null +++ b/board/freescale/t1040qds/t1040_rcw.cfg @@ -0,0 +1,7 @@ +#PBL preamble and RCW header +aa55aa55 010e0100 +# serdes protocol 0x66 +0a10000c 0c000000 00000000 00000000 +66000002 00000000 fc027000 01000000 +00000000 00000000 00000000 00030810 +00000000 03fc500f 00000000 00000000 diff --git a/board/freescale/t104xrdb/Makefile b/board/freescale/t104xrdb/Makefile new file mode 100644 index 000000000..76c0c94b0 --- /dev/null +++ b/board/freescale/t104xrdb/Makefile @@ -0,0 +1,12 @@ +# +# Copyright 2013 Freescale Semiconductor, Inc. +# +# SPDX-License-Identifier:	GPL-2.0+ +# + + +obj-y	+= t104xrdb.o +obj-y	+= ddr.o +obj-$(CONFIG_PCI)	+= pci.o +obj-y	+= law.o +obj-y	+= tlb.o diff --git a/board/freescale/t104xrdb/README b/board/freescale/t104xrdb/README new file mode 100644 index 000000000..2cd8219c8 --- /dev/null +++ b/board/freescale/t104xrdb/README @@ -0,0 +1,200 @@ +Overview +-------- +The T1040RDB is a Freescale reference board that hosts the T1040 SoC +(and variants). Variants inclued T1042 presonality of T1040, in which +case T1040RDB can also be called T1042RDB. + +The T1042RDB_PI is a Freescale reference board that hosts the T1042 SoC. +(a personality of T1040 SoC). The board is similar to T1040RDB but is +designed specially with low power features targeted for Printing Image Market. + +T1040 SoC Overview +------------------ +The QorIQ T1040/T1042 processor support four integrated 64-bit e5500 PA +processor cores with high-performance data path acceleration architecture +and network peripheral interfaces required for networking & telecommunications. + +The T1040/T1042 SoC includes the following function and features: + + - Four e5500 cores, each with a private 256 KB L2 cache + - 256 KB shared L3 CoreNet platform cache (CPC) + - Interconnect CoreNet platform + - 32-/64-bit DDR3L/DDR4 SDRAM memory controller with ECC and interleaving +   support + - Data Path Acceleration Architecture (DPAA) incorporating acceleration + for the following functions: +    -  Packet parsing, classification, and distribution +    -  Queue management for scheduling, packet sequencing, and congestion +       management +    -  Cryptography Acceleration (SEC 5.0) +    - RegEx Pattern Matching Acceleration (PME 2.2) +    - IEEE Std 1588 support +    - Hardware buffer management for buffer allocation and deallocation + - Ethernet interfaces +    - Integrated 8-port Gigabit Ethernet switch (T1040 only) +    - Four 1 Gbps Ethernet controllers + - Two RGMII interfaces or one RGMII and one MII interfaces + - High speed peripheral interfaces +   - Four PCI Express 2.0 controllers running at up to 5 GHz +   - Two SATA controllers supporting 1.5 and 3.0 Gb/s operation +   - Upto two QSGMII interface +   - Upto six SGMII interface supporting 1000 Mbps +   - One SGMII interface supporting upto 2500 Mbps + - Additional peripheral interfaces +   - Two USB 2.0 controllers with integrated PHY +   - SD/eSDHC/eMMC +   - eSPI controller +   - Four I2C controllers +   - Four UARTs +   - Four GPIO controllers +   - Integrated flash controller (IFC) +   - LCD and HDMI interface (DIU) with 12 bit dual data rate +   - TDM interface + - Multicore programmable interrupt controller (PIC) + - Two 8-channel DMA engines + - Single source clocking implementation + - Deep Sleep power implementaion (wakeup from GPIO/Timer/Ethernet/USB) + +T1040 SoC Personalities +------------------------- + +T1022 Personality: +T1022 is a reduced personality of T1040 with less core/clusters. + +T1042 Personality: +T1042 is a reduced personality of T1040 without Integrated 8-port Gigabit +Ethernet switch. Rest of the blocks are same as T1040 + + +T1040RDB board Overview +------------------------- + - SERDES Connections, 8 lanes information: +	1: None +	2: SGMII +	3: QSGMII +	4: QSGMII +	5: PCIe1 x1 slot +	6: mini PCIe connector +	7: mini PCIe connector +	8: SATA connector + - DDR Controller +     - Supports rates of up to 1600 MHz data-rate +     - Supports one DDR3LP UDIMM/RDIMMs, of single-, dual- or quad-rank types. + - IFC/Local Bus +     - NAND flash: 1GB 8-bit NAND flash +     - NOR: 128MB 16-bit NOR Flash + - Ethernet +     - Two on-board RGMII 10/100/1G ethernet ports. + - CPLD + - Clocks +     - System and DDR clock (SYSCLK, “DDRCLK”) +     - SERDES clocks + - Power Supplies + - USB +     - Supports two USB 2.0 ports with integrated PHYs +     - Two type A ports with 5V@1.5A per port. + - SDHC +     - SDHC/SDXC connector + - SPI +    -  On-board 64MB SPI flash + - Other IO +    - Two Serial ports +    - Four I2C ports + +T1042RDB_PI board Overview +------------------------- + - SERDES Connections, 8 lanes information: +	1, 2, 3, 4 : PCIe x4 slot +	5: mini PCIe connector +	6: mini PCIe connector +	7: NA +	8: SATA connector + - DDR Controller +     - Supports rates of up to 1600 MHz data-rate +     - Supports one DDR3LP UDIMM/RDIMMs, of single-, dual- or quad-rank types. + - IFC/Local Bus +     - NAND flash: 1GB 8-bit NAND flash +     - NOR: 128MB 16-bit NOR Flash + - Ethernet +     - Two on-board RGMII 10/100/1G ethernet ports. + - CPLD + - Clocks +     - System and DDR clock (SYSCLK, “DDRCLK”) +     - SERDES clocks + - Video +     - DIU supports video at up to 1280x1024x32bpp + - Power Supplies + - USB +     - Supports two USB 2.0 ports with integrated PHYs +     - Two type A ports with 5V@1.5A per port. + - SDHC +     - SDHC/SDXC connector + - SPI +    -  On-board 64MB SPI flash + - Other IO +    - Two Serial ports +    - Four I2C ports + +Memory map +----------- +The addresses in brackets are physical addresses. + +Start Address  End Address      Description                     Size +0xF_FFDF_0000  0xF_FFDF_0FFF    IFC - CPLD                      4KB +0xF_FF80_0000  0xF_FF80_FFFF    IFC - NAND Flash                64KB +0xF_FE00_0000  0xF_FEFF_FFFF    CCSRBAR                         16MB +0xF_F803_0000  0xF_F803_FFFF    PCI Express 4 I/O Space         64KB +0xF_F802_0000  0xF_F802_FFFF    PCI Express 3 I/O Space	        64KB +0xF_F801_0000  0xF_F801_FFFF    PCI Express 2 I/O Space         64KB +0xF_F800_0000  0xF_F800_FFFF    PCI Express 1 I/O Space	        64KB +0xF_F600_0000  0xF_F7FF_FFFF    Queue manager software portal   32MB +0xF_F400_0000  0xF_F5FF_FFFF    Buffer manager software portal  32MB +0xF_E800_0000  0xF_EFFF_FFFF    IFC - NOR Flash                 128MB +0xF_0000_0000  0xF_003F_FFFF    DCSR                            4MB +0xC_3000_0000  0xC_3FFF_FFFF    PCI Express 4 Mem Space         256MB +0xC_2000_0000  0xC_2FFF_FFFF    PCI Express 3 Mem Space         256MB +0xC_1000_0000  0xC_1FFF_FFFF    PCI Express 2 Mem Space         256MB +0xC_0000_0000  0xC_0FFF_FFFF    PCI Express 1 Mem Space         256MB +0x0_0000_0000  0x0_ffff_ffff    DDR                             2GB + + +NOR Flash memory Map +--------------------- + Start          End             Definition                       Size +0xEFF80000      0xEFFFFFFF      u-boot (current bank)            512KB +0xEFF60000      0xEFF7FFFF      u-boot env (current bank)        128KB +0xEFF40000      0xEFF5FFFF      FMAN Ucode (current bank)        128KB +0xED300000      0xEFF3FFFF      rootfs (alt bank)                44MB + 256KB +0xEC800000      0xEC8FFFF       Hardware device tree (alt bank)  1MB +0xEC020000      0xEC7FFFFF      Linux.uImage (alt bank)          7MB + 875KB +0xEC000000      0xEC01FFFF      RCW (alt bank)                   128KB +0xEBF80000      0xEBFFFFFF      u-boot (alt bank)                512KB +0xEBF60000      0xEBF7FFFF      u-boot env (alt bank)            128KB +0xEBF40000      0xEBF5FFFF      FMAN ucode (alt bank)            128KB +0xE9300000      0xEBF3FFFF      rootfs (current bank)            44MB + 256KB +0xE8800000      0xE88FFFFF      Hardware device tree (cur bank)  11MB + 512KB +0xE8020000      0xE86FFFFF      Linux.uImage (current bank)      7MB + 875KB +0xE8000000      0xE801FFFF      RCW (current bank)               128KB + + +Various Software configurations/environment variables/commands +-------------------------------------------------------------- +The below commands apply to the board + +1. U-boot environment variable hwconfig +   The default hwconfig is: +	hwconfig=fsl_ddr:ctlr_intlv=null,bank_intlv=cs0_cs1;usb1: +					dr_mode=host,phy_type=utmi +   Note: For USB gadget set "dr_mode=peripheral" + +2. FMAN Ucode versions +   fsl_fman_ucode_t1040.bin + +3. Switching to alternate bank +   Commands for switching to alternate bank. + +	1. To change from vbank0 to vbank4 +		=> qixis_reset altbank (it will boot using vbank4) + +	2.To change from vbank4 to vbank0 +		=> qixis reset (it will boot using vbank0) diff --git a/board/freescale/t104xrdb/ddr.c b/board/freescale/t104xrdb/ddr.c new file mode 100644 index 000000000..9009afa3a --- /dev/null +++ b/board/freescale/t104xrdb/ddr.c @@ -0,0 +1,132 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#include <common.h> +#include <i2c.h> +#include <hwconfig.h> +#include <asm/mmu.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h> +#include <asm/fsl_law.h> +#include "ddr.h" + +DECLARE_GLOBAL_DATA_PTR; + +int fsl_ddr_get_dimm_params(dimm_params_t *pdimm, +		unsigned int controller_number, +		unsigned int dimm_number) +{ +	const char dimm_model[] = "RAW timing DDR"; + +	if ((controller_number == 0) && (dimm_number == 0)) { +		memcpy(pdimm, &ddr_raw_timing, sizeof(dimm_params_t)); +		memset(pdimm->mpart, 0, sizeof(pdimm->mpart)); +		memcpy(pdimm->mpart, dimm_model, sizeof(dimm_model) - 1); +	} + +	return 0; +} + +void fsl_ddr_board_options(memctl_options_t *popts, +				dimm_params_t *pdimm, +				unsigned int ctrl_num) +{ +	const struct board_specific_parameters *pbsp, *pbsp_highest = NULL; +	ulong ddr_freq; + +	if (ctrl_num > 1) { +		printf("Not supported controller number %d\n", ctrl_num); +		return; +	} +	if (!pdimm->n_ranks) +		return; + +	pbsp = udimms[0]; + +	/* Get clk_adjust, cpo, write_data_delay,2t, according to the board ddr +	 * freqency and n_banks specified in board_specific_parameters table. +	 */ +	ddr_freq = get_ddr_freq(0) / 1000000; +	while (pbsp->datarate_mhz_high) { +		if (pbsp->n_ranks == pdimm->n_ranks && +		    (pdimm->rank_density >> 30) >= pbsp->rank_gb) { +			if (ddr_freq <= pbsp->datarate_mhz_high) { +				popts->cpo_override = pbsp->cpo; +				popts->write_data_delay = +					pbsp->write_data_delay; +				popts->clk_adjust = pbsp->clk_adjust; +				popts->wrlvl_start = pbsp->wrlvl_start; +				popts->wrlvl_ctl_2 = pbsp->wrlvl_ctl_2; +				popts->wrlvl_ctl_3 = pbsp->wrlvl_ctl_3; +				popts->twot_en = pbsp->force_2t; +				goto found; +			} +			pbsp_highest = pbsp; +		} +		pbsp++; +	} + +	if (pbsp_highest) { +		printf("Error: board specific timing not found\n"); +		printf("for data rate %lu MT/s\n", ddr_freq); +		printf("Trying to use the highest speed (%u) parameters\n", +		       pbsp_highest->datarate_mhz_high); +		popts->cpo_override = pbsp_highest->cpo; +		popts->write_data_delay = pbsp_highest->write_data_delay; +		popts->clk_adjust = pbsp_highest->clk_adjust; +		popts->wrlvl_start = pbsp_highest->wrlvl_start; +		popts->wrlvl_ctl_2 = pbsp->wrlvl_ctl_2; +		popts->wrlvl_ctl_3 = pbsp->wrlvl_ctl_3; +		popts->twot_en = pbsp_highest->force_2t; +	} else { +		panic("DIMM is not supported by this board"); +	} +found: +	debug("Found timing match: n_ranks %d, data rate %d, rank_gb %d\n" +		"\tclk_adjust %d, wrlvl_start %d, wrlvl_ctrl_2 0x%x, " +		"wrlvl_ctrl_3 0x%x\n", +		pbsp->n_ranks, pbsp->datarate_mhz_high, pbsp->rank_gb, +		pbsp->clk_adjust, pbsp->wrlvl_start, pbsp->wrlvl_ctl_2, +		pbsp->wrlvl_ctl_3); + +	/* +	 * Factors to consider for half-strength driver enable: +	 *	- number of DIMMs installed +	 */ +	popts->half_strength_driver_enable = 0; +	/* +	 * Write leveling override +	 */ +	popts->wrlvl_override = 1; +	popts->wrlvl_sample = 0xf; + +	/* +	 * rtt and rtt_wr override +	 */ +	popts->rtt_override = 0; + +	/* Enable ZQ calibration */ +	popts->zq_en = 1; + +	/* DHC_EN =1, ODT = 75 Ohm */ +	popts->ddr_cdr1 = DDR_CDR1_DHC_EN | DDR_CDR1_ODT(DDR_CDR_ODT_75ohm); +	popts->ddr_cdr2 = DDR_CDR2_ODT(DDR_CDR_ODT_75ohm); +} + +phys_size_t initdram(int board_type) +{ +	phys_size_t dram_size; + +	puts("Initializing....using SPD\n"); + +	dram_size = fsl_ddr_sdram(); + +	dram_size = setup_ddr_tlbs(dram_size / 0x100000); +	dram_size *= 0x100000; + +	puts("    DDR: "); +	return dram_size; +} diff --git a/board/freescale/t104xrdb/ddr.h b/board/freescale/t104xrdb/ddr.h new file mode 100644 index 000000000..9276b596a --- /dev/null +++ b/board/freescale/t104xrdb/ddr.h @@ -0,0 +1,76 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#ifndef __DDR_H__ +#define __DDR_H__ + +dimm_params_t ddr_raw_timing = { +	.n_ranks = 2, +	.rank_density = 2147483648u, +	.capacity = 4294967296u, +	.primary_sdram_width = 64, +	.ec_sdram_width = 8, +	.registered_dimm = 0, +	.mirrored_dimm = 1, +	.n_row_addr = 15, +	.n_col_addr = 10, +	.n_banks_per_sdram_device = 8, +	.edc_config = 2,	/* ECC */ +	.burst_lengths_bitmask = 0x0c, + +	.tckmin_x_ps = 1071, +	.caslat_x = 0x2fe << 4,	/* 5,6,7,8,9,10,11,13 */ +	.taa_ps = 13910, +	.twr_ps = 15000, +	.trcd_ps = 13910, +	.trrd_ps = 6000, +	.trp_ps = 13910, +	.tras_ps = 34000, +	.trc_ps = 48910, +	.trfc_ps = 260000, +	.twtr_ps = 7500, +	.trtp_ps = 7500, +	.refresh_rate_ps = 7800000, +	.tfaw_ps = 35000, +}; + +struct board_specific_parameters { +	u32 n_ranks; +	u32 datarate_mhz_high; +	u32 rank_gb; +	u32 clk_adjust; +	u32 wrlvl_start; +	u32 wrlvl_ctl_2; +	u32 wrlvl_ctl_3; +	u32 cpo; +	u32 write_data_delay; +	u32 force_2t; +}; + +/* + * These tables contain all valid speeds we want to override with board + * specific parameters. datarate_mhz_high values need to be in ascending order + * for each n_ranks group. + */ + +static const struct board_specific_parameters udimm0[] = { +	/* +	 * memory controller 0 +	 *   num|  hi| rank|  clk| wrlvl |   wrlvl   |  wrlvl | cpo  |wrdata|2T +	 * ranks| mhz| GB  |adjst| start |   ctl2    |  ctl3  |      |delay | +	 */ +	{2,  1066, 4, 8,     4, 0x05070609, 0x08090a08,   0xff,    2,  0}, +	{2,  1350, 4, 4,     8, 0x0809090b, 0x0c0c0d0a,   0xff,    2,  0}, +	{2,  1350, 0, 5,     7, 0x0709090b, 0x0c0c0d09,   0xff,    2,  0}, +	{2,  1666, 4, 4,     8, 0x080a0a0d, 0x0d10100b,   0xff,    2,  0}, +	{2,  1666, 0, 5,     7, 0x080a0a0c, 0x0d0d0e0a,   0xff,    2,  0}, +	{} +}; + +static const struct board_specific_parameters *udimms[] = { +	udimm0, +}; +#endif diff --git a/board/freescale/t104xrdb/law.c b/board/freescale/t104xrdb/law.c new file mode 100644 index 000000000..2362d4324 --- /dev/null +++ b/board/freescale/t104xrdb/law.c @@ -0,0 +1,32 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#include <common.h> +#include <asm/fsl_law.h> +#include <asm/mmu.h> + +struct law_entry law_table[] = { +#ifndef CONFIG_SYS_NO_FLASH +	SET_LAW(CONFIG_SYS_FLASH_BASE_PHYS, LAW_SIZE_256M, LAW_TRGT_IF_IFC), +#endif +#ifdef CONFIG_SYS_BMAN_MEM_PHYS +	SET_LAW(CONFIG_SYS_BMAN_MEM_PHYS, LAW_SIZE_32M, LAW_TRGT_IF_BMAN), +#endif +#ifdef CONFIG_SYS_QMAN_MEM_PHYS +	SET_LAW(CONFIG_SYS_QMAN_MEM_PHYS, LAW_SIZE_32M, LAW_TRGT_IF_QMAN), +#endif +#ifdef CONFIG_SYS_CPLD_BASE_PHYS +	SET_LAW(CONFIG_SYS_CPLD_BASE_PHYS, LAW_SIZE_128K, LAW_TRGT_IF_IFC), +#endif +#ifdef CONFIG_SYS_DCSRBAR_PHYS +	SET_LAW(CONFIG_SYS_DCSRBAR_PHYS, LAW_SIZE_4M, LAW_TRGT_IF_DCSR), +#endif +#ifdef CONFIG_SYS_NAND_BASE_PHYS +	SET_LAW(CONFIG_SYS_NAND_BASE_PHYS, LAW_SIZE_64K, LAW_TRGT_IF_IFC), +#endif +}; + +int num_law_entries = ARRAY_SIZE(law_table); diff --git a/board/freescale/t104xrdb/pci.c b/board/freescale/t104xrdb/pci.c new file mode 100644 index 000000000..c53e3b76a --- /dev/null +++ b/board/freescale/t104xrdb/pci.c @@ -0,0 +1,23 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#include <common.h> +#include <command.h> +#include <pci.h> +#include <asm/fsl_pci.h> +#include <libfdt.h> +#include <fdt_support.h> +#include <asm/fsl_serdes.h> + +void pci_init_board(void) +{ +	fsl_pcie_init_board(0); +} + +void pci_of_setup(void *blob, bd_t *bd) +{ +	FT_FSL_PCI_SETUP; +} diff --git a/board/freescale/t104xrdb/t104xrdb.c b/board/freescale/t104xrdb/t104xrdb.c new file mode 100644 index 000000000..6e29d6410 --- /dev/null +++ b/board/freescale/t104xrdb/t104xrdb.c @@ -0,0 +1,93 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#include <common.h> +#include <command.h> +#include <netdev.h> +#include <linux/compiler.h> +#include <asm/mmu.h> +#include <asm/processor.h> +#include <asm/cache.h> +#include <asm/immap_85xx.h> +#include <asm/fsl_law.h> +#include <asm/fsl_serdes.h> +#include <asm/fsl_portals.h> +#include <asm/fsl_liodn.h> +#include <fm_eth.h> + +#include "t104xrdb.h" + +DECLARE_GLOBAL_DATA_PTR; + +int checkboard(void) +{ +	struct cpu_type *cpu = gd->arch.cpu; + +	printf("Board: %sRDB\n", cpu->name); +	return 0; +} + +int board_early_init_r(void) +{ +#ifdef CONFIG_SYS_FLASH_BASE +	const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; +	const u8 flash_esel = find_tlb_idx((void *)flashbase, 1); + +	/* +	 * Remap Boot flash region to caching-inhibited +	 * so that flash can be erased properly. +	 */ + +	/* Flush d-cache and invalidate i-cache of any FLASH data */ +	flush_dcache(); +	invalidate_icache(); + +	/* invalidate existing TLB entry for flash */ +	disable_tlb(flash_esel); + +	set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, +		MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		0, flash_esel, BOOKE_PAGESZ_256M, 1); +#endif +	set_liodns(); +#ifdef CONFIG_SYS_DPAA_QBMAN +	setup_portals(); +#endif + +	return 0; +} + +int misc_init_r(void) +{ +	return 0; +} + +void ft_board_setup(void *blob, bd_t *bd) +{ +	phys_addr_t base; +	phys_size_t size; + +	ft_cpu_setup(blob, bd); + +	base = getenv_bootm_low(); +	size = getenv_bootm_size(); + +	fdt_fixup_memory(blob, (u64)base, (u64)size); + +#ifdef CONFIG_PCI +	pci_of_setup(blob, bd); +#endif + +	fdt_fixup_liodn(blob); + +#ifdef CONFIG_HAS_FSL_DR_USB +	fdt_fixup_dr_usb(blob, bd); +#endif + +#ifdef CONFIG_SYS_DPAA_FMAN +	fdt_fixup_fman_ethernet(blob); +#endif +} diff --git a/board/freescale/t104xrdb/t104xrdb.h b/board/freescale/t104xrdb/t104xrdb.h new file mode 100644 index 000000000..e7cc0c7b5 --- /dev/null +++ b/board/freescale/t104xrdb/t104xrdb.h @@ -0,0 +1,13 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#ifndef __T104x_RDB_H__ +#define __T104x_RDB_H__ + +void fdt_fixup_board_enet(void *blob); +void pci_of_setup(void *blob, bd_t *bd); + +#endif diff --git a/board/freescale/t104xrdb/tlb.c b/board/freescale/t104xrdb/tlb.c new file mode 100644 index 000000000..84f97a41e --- /dev/null +++ b/board/freescale/t104xrdb/tlb.c @@ -0,0 +1,107 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#include <common.h> +#include <asm/mmu.h> + +struct fsl_e_tlb_entry tlb_table[] = { +	/* TLB 0 - for temp stack in cache */ +	SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR, +		      CONFIG_SYS_INIT_RAM_ADDR_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 0, BOOKE_PAGESZ_4K, 0), +	SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024, +		      CONFIG_SYS_INIT_RAM_ADDR_PHYS + 4 * 1024, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 0, BOOKE_PAGESZ_4K, 0), +	SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024, +		      CONFIG_SYS_INIT_RAM_ADDR_PHYS + 8 * 1024, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 0, BOOKE_PAGESZ_4K, 0), +	SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024, +		      CONFIG_SYS_INIT_RAM_ADDR_PHYS + 12 * 1024, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 0, BOOKE_PAGESZ_4K, 0), + +	/* TLB 1 */ +	/* *I*** - Covers boot page */ +#if defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SYS_INIT_L3_ADDR) +	/* +	 * *I*G - L3SRAM. When L3 is used as 256K SRAM, the address of the +	 * SRAM is at 0xfffc0000, it covered the 0xfffff000. +	 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_INIT_L3_ADDR, CONFIG_SYS_INIT_L3_ADDR, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 0, BOOKE_PAGESZ_256K, 1), +#else +	SET_TLB_ENTRY(1, 0xfffff000, 0xfffff000, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 0, BOOKE_PAGESZ_4K, 1), +#endif + +	/* *I*G* - CCSRBAR */ +	SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 1, BOOKE_PAGESZ_16M, 1), + +	/* *I*G* - Flash, localbus */ +	/* This will be changed to *I*G* after relocation to RAM. */ +	SET_TLB_ENTRY(1, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE_PHYS, +		      MAS3_SX|MAS3_SR, MAS2_W|MAS2_G, +		      0, 2, BOOKE_PAGESZ_256M, 1), + +	/* *I*G* - PCI */ +	SET_TLB_ENTRY(1, CONFIG_SYS_PCIE1_MEM_VIRT, CONFIG_SYS_PCIE1_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 3, BOOKE_PAGESZ_1G, 1), + +	/* *I*G* - PCI I/O */ +	SET_TLB_ENTRY(1, CONFIG_SYS_PCIE1_IO_VIRT, CONFIG_SYS_PCIE1_IO_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 4, BOOKE_PAGESZ_256K, 1), + +	/* Bman/Qman */ +#ifdef CONFIG_SYS_BMAN_MEM_PHYS +	SET_TLB_ENTRY(1, CONFIG_SYS_BMAN_MEM_BASE, CONFIG_SYS_BMAN_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 5, BOOKE_PAGESZ_16M, 1), +	SET_TLB_ENTRY(1, CONFIG_SYS_BMAN_MEM_BASE + 0x01000000, +		      CONFIG_SYS_BMAN_MEM_PHYS + 0x01000000, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 6, BOOKE_PAGESZ_16M, 1), +#endif +#ifdef CONFIG_SYS_QMAN_MEM_PHYS +	SET_TLB_ENTRY(1, CONFIG_SYS_QMAN_MEM_BASE, CONFIG_SYS_QMAN_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 7, BOOKE_PAGESZ_16M, 1), +	SET_TLB_ENTRY(1, CONFIG_SYS_QMAN_MEM_BASE + 0x01000000, +		      CONFIG_SYS_QMAN_MEM_PHYS + 0x01000000, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 8, BOOKE_PAGESZ_16M, 1), +#endif +#ifdef CONFIG_SYS_DCSRBAR_PHYS +	SET_TLB_ENTRY(1, CONFIG_SYS_DCSRBAR, CONFIG_SYS_DCSRBAR_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 9, BOOKE_PAGESZ_4M, 1), +#endif +#ifdef CONFIG_SYS_NAND_BASE +	/* +	 * *I*G - NAND +	 * entry 14 and 15 has been used hard coded, they will be disabled +	 * in cpu_init_f, so we use entry 16 for nand. +	 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_NAND_BASE, CONFIG_SYS_NAND_BASE_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 10, BOOKE_PAGESZ_64K, 1), +#endif +#ifdef CONFIG_SYS_CPLD_BASE +	SET_TLB_ENTRY(1, CONFIG_SYS_CPLD_BASE, CONFIG_SYS_CPLD_BASE_PHYS, +		      MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 11, BOOKE_PAGESZ_256K, 1), +#endif +}; + +int num_tlb_entries = ARRAY_SIZE(tlb_table); diff --git a/board/freescale/t2080qds/Makefile b/board/freescale/t2080qds/Makefile new file mode 100644 index 000000000..0b8747b87 --- /dev/null +++ b/board/freescale/t2080qds/Makefile @@ -0,0 +1,12 @@ +# +# Copyright 2013 Freescale Semiconductor, Inc. +# +# SPDX-License-Identifier:      GPL-2.0+ +# + +obj-$(CONFIG_T2080QDS) += t2080qds.o +obj-$(CONFIG_T2080QDS) += eth_t2080qds.o +obj-$(CONFIG_PCI)      += pci.o +obj-y   += ddr.o +obj-y   += law.o +obj-y   += tlb.o diff --git a/board/freescale/t2080qds/ddr.c b/board/freescale/t2080qds/ddr.c new file mode 100644 index 000000000..5db5d2162 --- /dev/null +++ b/board/freescale/t2080qds/ddr.c @@ -0,0 +1,127 @@ +/* + * Copyright 2013 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 + * Version 2 or later as published by the Free Software Foundation. + */ + +#include <common.h> +#include <i2c.h> +#include <hwconfig.h> +#include <asm/mmu.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h> +#include <asm/fsl_law.h> +#include "ddr.h" + +DECLARE_GLOBAL_DATA_PTR; + +void fsl_ddr_board_options(memctl_options_t *popts, +				dimm_params_t *pdimm, +				unsigned int ctrl_num) +{ +	const struct board_specific_parameters *pbsp, *pbsp_highest = NULL; +	ulong ddr_freq; + +	if (ctrl_num > 2) { +		printf("Not supported controller number %d\n", ctrl_num); +		return; +	} +	if (!pdimm->n_ranks) +		return; + +	/* +	 * we use identical timing for all slots. If needed, change the code +	 * to  pbsp = rdimms[ctrl_num] or pbsp = udimms[ctrl_num]; +	 */ +	if (popts->registered_dimm_en) +		pbsp = rdimms[0]; +	else +		pbsp = udimms[0]; + + +	/* Get clk_adjust, cpo, write_data_delay,2T, according to the board ddr +	 * freqency and n_banks specified in board_specific_parameters table. +	 */ +	ddr_freq = get_ddr_freq(0) / 1000000; +	while (pbsp->datarate_mhz_high) { +		if (pbsp->n_ranks == pdimm->n_ranks && +		    (pdimm->rank_density >> 30) >= pbsp->rank_gb) { +			if (ddr_freq <= pbsp->datarate_mhz_high) { +				popts->cpo_override = pbsp->cpo; +				popts->write_data_delay = +					pbsp->write_data_delay; +				popts->clk_adjust = pbsp->clk_adjust; +				popts->wrlvl_start = pbsp->wrlvl_start; +				popts->wrlvl_ctl_2 = pbsp->wrlvl_ctl_2; +				popts->wrlvl_ctl_3 = pbsp->wrlvl_ctl_3; +				popts->twot_en = pbsp->force_2t; +				goto found; +			} +			pbsp_highest = pbsp; +		} +		pbsp++; +	} + +	if (pbsp_highest) { +		printf("Error: board specific timing not found"); +		printf("for data rate %lu MT/s\n", ddr_freq); +		printf("Trying to use the highest speed (%u) parameters\n", +		       pbsp_highest->datarate_mhz_high); +		popts->cpo_override = pbsp_highest->cpo; +		popts->write_data_delay = pbsp_highest->write_data_delay; +		popts->clk_adjust = pbsp_highest->clk_adjust; +		popts->wrlvl_start = pbsp_highest->wrlvl_start; +		popts->wrlvl_ctl_2 = pbsp->wrlvl_ctl_2; +		popts->wrlvl_ctl_3 = pbsp->wrlvl_ctl_3; +		popts->twot_en = pbsp_highest->force_2t; +	} else { +		panic("DIMM is not supported by this board"); +	} +found: +	debug("Found timing match: n_ranks %d, data rate %d, rank_gb %d\n" +		"\tclk_adjust %d, wrlvl_start %d, wrlvl_ctrl_2 0x%x, " +		"wrlvl_ctrl_3 0x%x\n", +		pbsp->n_ranks, pbsp->datarate_mhz_high, pbsp->rank_gb, +		pbsp->clk_adjust, pbsp->wrlvl_start, pbsp->wrlvl_ctl_2, +		pbsp->wrlvl_ctl_3); + +	/* +	 * Factors to consider for half-strength driver enable: +	 *	- number of DIMMs installed +	 */ +	popts->half_strength_driver_enable = 0; +	/* +	 * Write leveling override +	 */ +	popts->wrlvl_override = 1; +	popts->wrlvl_sample = 0xf; + +	/* +	 * Rtt and Rtt_WR override +	 */ +	popts->rtt_override = 0; + +	/* Enable ZQ calibration */ +	popts->zq_en = 1; + +	/* DHC_EN =1, ODT = 75 Ohm */ +	popts->ddr_cdr1 = DDR_CDR1_DHC_EN | DDR_CDR1_ODT(DDR_CDR_ODT_75ohm); +	popts->ddr_cdr2 = DDR_CDR2_ODT(DDR_CDR_ODT_75ohm); +} + +phys_size_t initdram(int board_type) +{ +	phys_size_t dram_size; + +	puts("Initializing....using SPD\n"); + +	dram_size = fsl_ddr_sdram(); + +	dram_size = setup_ddr_tlbs(dram_size / 0x100000); +	dram_size *= 0x100000; + +	puts("    DDR: "); +	return dram_size; +} diff --git a/board/freescale/t2080qds/ddr.h b/board/freescale/t2080qds/ddr.h new file mode 100644 index 000000000..964eaada1 --- /dev/null +++ b/board/freescale/t2080qds/ddr.h @@ -0,0 +1,85 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:     GPL-2.0+ + */ + +#ifndef __DDR_H__ +#define __DDR_H__ +struct board_specific_parameters { +	u32 n_ranks; +	u32 datarate_mhz_high; +	u32 rank_gb; +	u32 clk_adjust; +	u32 wrlvl_start; +	u32 wrlvl_ctl_2; +	u32 wrlvl_ctl_3; +	u32 cpo; +	u32 write_data_delay; +	u32 force_2t; +}; + +/* + * These tables contain all valid speeds we want to override with board + * specific parameters. datarate_mhz_high values need to be in ascending order + * for each n_ranks group. + */ + +static const struct board_specific_parameters udimm0[] = { +	/* +	 * memory controller 0 +	 *   num|  hi| rank|  clk| wrlvl |   wrlvl   |  wrlvl | cpo  |wrdata|2T +	 * ranks| mhz| GB  |adjst| start |   ctl2    |  ctl3  |      |delay | +	 */ +	{2,  1350, 4, 4,     8, 0x0809090b, 0x0c0c0d0a,   0xff,    2,  0}, +	{2,  1350, 0, 5,     7, 0x0709090b, 0x0c0c0d09,   0xff,    2,  0}, +	{2,  1666, 4, 4,     8, 0x080a0a0d, 0x0d10100b,   0xff,    2,  0}, +	{2,  1666, 0, 5,     7, 0x080a0a0c, 0x0d0d0e0a,   0xff,    2,  0}, +	{2,  1900, 0, 4,     8, 0x090a0b0e, 0x0f11120c,   0xff,    2,  0}, +	{2,  2140, 0, 4,     8, 0x090a0b0e, 0x0f11120c,   0xff,    2,  0}, +	{1,  1350, 0, 5,     8, 0x0809090b, 0x0c0c0d0a,   0xff,    2,  0}, +	{1,  1700, 0, 5,     8, 0x080a0a0c, 0x0c0d0e0a,   0xff,    2,  0}, +	{1,  1800, 2, 5,     6, 0x06070709, 0x110a0b08,   0xff,    2,  0}, +	{1,  1866, 2, 4,     6, 0x06060708, 0x09090a07,   0xff,    2,  0}, +	{1,  1900, 2, 4,     6, 0x06060708, 0x09090a07,   0xff,    2,  0}, +	{1,  2000, 2, 4,     8, 0x090a0b0d, 0x0e0f110b,   0xff,    2,  0}, +	{1,  2133, 2, 4,     8, 0x090a0b0d, 0x0e0f110b,   0xff,    2,  0}, +	{} +}; + +static const struct board_specific_parameters rdimm0[] = { +	/* +	 * memory controller 0 +	 *   num|  hi| rank|  clk| wrlvl |   wrlvl   |  wrlvl | cpo  |wrdata|2T +	 * ranks| mhz| GB  |adjst| start |   ctl2    |  ctl3  |      |delay | +	 */ +	{4,  1350, 0, 5,     9, 0x08070605, 0x06070806,   0xff,    2,  0}, +	{4,  1666, 0, 5,    11, 0x0a080706, 0x07090906,   0xff,    2,  0}, +	{4,  2140, 0, 5,    12, 0x0b090807, 0x080a0b07,   0xff,    2,  0}, +	{2,  1350, 0, 5,     9, 0x08070605, 0x06070806,   0xff,    2,  0}, +	{2,  1666, 0, 5,    11, 0x0a090806, 0x08090a06,   0xff,    2,  0}, +	{2,  2140, 0, 5,    12, 0x0b090807, 0x080a0b07,   0xff,    2,  0}, +	{1,  1350, 0, 5,     9, 0x08070605, 0x06070806,   0xff,    2,  0}, +	{1,  1666, 0, 5,    11, 0x0a090806, 0x08090a06,   0xff,    2,  0}, +	{1,  2140, 0, 4,    12, 0x0b090807, 0x080a0b07,   0xff,    2,  0}, +	{} +}; + +/* + * The three slots have slightly different timing. The center values are good + * for all slots. We use identical speed tables for them. In future use, if + * DIMMs require separated tables, make more entries as needed. + */ +static const struct board_specific_parameters *udimms[] = { +	udimm0, +}; + +/* + * The three slots have slightly different timing. See comments above. + */ +static const struct board_specific_parameters *rdimms[] = { +	rdimm0, +}; + + +#endif diff --git a/board/freescale/t2080qds/eth_t2080qds.c b/board/freescale/t2080qds/eth_t2080qds.c new file mode 100644 index 000000000..3613f9398 --- /dev/null +++ b/board/freescale/t2080qds/eth_t2080qds.c @@ -0,0 +1,511 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * Shengzhou Liu <Shengzhou.Liu@freescale.com> + * + * SPDX-License-Identifier:     GPL-2.0+ + */ + +#include <common.h> +#include <command.h> +#include <netdev.h> +#include <asm/mmu.h> +#include <asm/processor.h> +#include <asm/immap_85xx.h> +#include <asm/fsl_law.h> +#include <asm/fsl_serdes.h> +#include <asm/fsl_portals.h> +#include <asm/fsl_liodn.h> +#include <malloc.h> +#include <fm_eth.h> +#include <fsl_mdio.h> +#include <miiphy.h> +#include <phy.h> +#include <asm/fsl_dtsec.h> +#include <asm/fsl_serdes.h> +#include "../common/qixis.h" +#include "../common/fman.h" +#include "t2080qds_qixis.h" + +#define EMI_NONE	0xFFFFFFFF +#define EMI1_RGMII1	0 +#define EMI1_RGMII2     1 +#define EMI1_SLOT1	2 +#define EMI1_SLOT2	6 +#define EMI1_SLOT3	3 +#define EMI1_SLOT4	4 +#define EMI1_SLOT5	5 +#define EMI2		7 + +static int mdio_mux[NUM_FM_PORTS]; + +static const char * const mdio_names[] = { +	"T2080QDS_MDIO_RGMII1", +	"T2080QDS_MDIO_RGMII2", +	"T2080QDS_MDIO_SLOT1", +	"T2080QDS_MDIO_SLOT3", +	"T2080QDS_MDIO_SLOT4", +	"T2080QDS_MDIO_SLOT5", +	"T2080QDS_MDIO_SLOT2", +	"T2080QDS_MDIO_10GC", +}; + +/* Map SerDes1 8 lanes to default slot, will be initialized dynamically */ +static u8 lane_to_slot[] = {3, 3, 3, 3, 1, 1, 1, 1}; + +static const char *T2080qds_mdio_name_for_muxval(u8 muxval) +{ +	return mdio_names[muxval]; +} + +struct mii_dev *mii_dev_for_muxval(u8 muxval) +{ +	struct mii_dev *bus; +	const char *name = T2080qds_mdio_name_for_muxval(muxval); + +	if (!name) { +		printf("No bus for muxval %x\n", muxval); +		return NULL; +	} + +	bus = miiphy_get_dev_by_name(name); + +	if (!bus) { +		printf("No bus by name %s\n", name); +		return NULL; +	} + +	return bus; +} + +struct T2080qds_mdio { +	u8 muxval; +	struct mii_dev *realbus; +}; + +static void T2080qds_mux_mdio(u8 muxval) +{ +	u8 brdcfg4; +	if (muxval < 7) { +		brdcfg4 = QIXIS_READ(brdcfg[4]); +		brdcfg4 &= ~BRDCFG4_EMISEL_MASK; +		brdcfg4 |= (muxval << BRDCFG4_EMISEL_SHIFT); +		QIXIS_WRITE(brdcfg[4], brdcfg4); +	} +} + +static int T2080qds_mdio_read(struct mii_dev *bus, int addr, int devad, +				int regnum) +{ +	struct T2080qds_mdio *priv = bus->priv; + +	T2080qds_mux_mdio(priv->muxval); + +	return priv->realbus->read(priv->realbus, addr, devad, regnum); +} + +static int T2080qds_mdio_write(struct mii_dev *bus, int addr, int devad, +				int regnum, u16 value) +{ +	struct T2080qds_mdio *priv = bus->priv; + +	T2080qds_mux_mdio(priv->muxval); + +	return priv->realbus->write(priv->realbus, addr, devad, regnum, value); +} + +static int T2080qds_mdio_reset(struct mii_dev *bus) +{ +	struct T2080qds_mdio *priv = bus->priv; + +	return priv->realbus->reset(priv->realbus); +} + +static int T2080qds_mdio_init(char *realbusname, u8 muxval) +{ +	struct T2080qds_mdio *pmdio; +	struct mii_dev *bus = mdio_alloc(); + +	if (!bus) { +		printf("Failed to allocate T2080QDS MDIO bus\n"); +		return -1; +	} + +	pmdio = malloc(sizeof(*pmdio)); +	if (!pmdio) { +		printf("Failed to allocate T2080QDS private data\n"); +		free(bus); +		return -1; +	} + +	bus->read = T2080qds_mdio_read; +	bus->write = T2080qds_mdio_write; +	bus->reset = T2080qds_mdio_reset; +	sprintf(bus->name, T2080qds_mdio_name_for_muxval(muxval)); + +	pmdio->realbus = miiphy_get_dev_by_name(realbusname); + +	if (!pmdio->realbus) { +		printf("No bus with name %s\n", realbusname); +		free(bus); +		free(pmdio); +		return -1; +	} + +	pmdio->muxval = muxval; +	bus->priv = pmdio; + +	return mdio_register(bus); +} + +void board_ft_fman_fixup_port(void *fdt, char *compat, phys_addr_t addr, +				enum fm_port port, int offset) +{ +	int phy; +	char alias[20]; +	struct fixed_link f_link; +	ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); +	u32 srds_s1 = in_be32(&gur->rcwsr[4]) & +				FSL_CORENET2_RCWSR4_SRDS1_PRTCL; + +	srds_s1 >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT; + +	if (fm_info_get_enet_if(port) == PHY_INTERFACE_MODE_SGMII) { +		phy = fm_info_get_phy_address(port); +		switch (port) { +		case FM1_DTSEC1: +		case FM1_DTSEC2: +		case FM1_DTSEC9: +		case FM1_DTSEC10: +			sprintf(alias, "phy_sgmii_s3_%x", phy); +			fdt_set_phy_handle(fdt, compat, addr, alias); +			fdt_status_okay_by_alias(fdt, "emi1_slot3"); +			break; +		case FM1_DTSEC5: +		case FM1_DTSEC6: +			if (mdio_mux[port] == EMI1_SLOT1) { +				sprintf(alias, "phy_sgmii_s1_%x", phy); +				fdt_set_phy_handle(fdt, compat, addr, alias); +				fdt_status_okay_by_alias(fdt, "emi1_slot1"); +			} else if (mdio_mux[port] == EMI1_SLOT2) { +				sprintf(alias, "phy_sgmii_s2_%x", phy); +				fdt_set_phy_handle(fdt, compat, addr, alias); +				fdt_status_okay_by_alias(fdt, "emi1_slot2"); +			} +			break; +		default: +			break; +		} + +	} else if (fm_info_get_enet_if(port) == PHY_INTERFACE_MODE_XGMII) { +		switch (srds_s1) { +		case 0x66: /* XFI interface */ +		case 0x6b: +		case 0x6c: +		case 0x6d: +		case 0x71: +			f_link.phy_id = port; +			f_link.duplex = 1; +			f_link.link_speed = 10000; +			f_link.pause = 0; +			f_link.asym_pause = 0; +			/* no PHY for XFI */ +			fdt_delprop(fdt, offset, "phy-handle"); +			fdt_setprop(fdt, offset, "fixed-link", &f_link, +				    sizeof(f_link)); +			break; +		default: +			break; +		} +	} +} + +void fdt_fixup_board_enet(void *fdt) +{ +	return; +} + +/* + * This function reads RCW to check if Serdes1{E,F,G,H} is configured + * as slot 1/2/3 and update the lane_to_slot[] array accordingly + */ +static void initialize_lane_to_slot(void) +{ +	ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); +	u32 srds_s1 = in_be32(&gur->rcwsr[4]) & +				FSL_CORENET2_RCWSR4_SRDS1_PRTCL; + +	srds_s1 >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT; + +	switch (srds_s1) { +	case 0x51: +	case 0x5f: +	case 0x65: +	case 0x6b: +	case 0x71: +		lane_to_slot[5] = 2; +		lane_to_slot[6] = 2; +		lane_to_slot[7] = 2; +		break; +	case 0xa6: +	case 0x8e: +	case 0x8f: +	case 0x82: +	case 0x83: +	case 0xd3: +	case 0xd9: +	case 0xcb: +		lane_to_slot[6] = 2; +		lane_to_slot[7] = 2; +		break; +	case 0xda: +		lane_to_slot[4] = 3; +		lane_to_slot[5] = 3; +		lane_to_slot[6] = 3; +		lane_to_slot[7] = 3; +		break; +	default: +		break; +	} +} + +int board_eth_init(bd_t *bis) +{ +#if defined(CONFIG_FMAN_ENET) +	int i, idx, lane, slot, interface; +	struct memac_mdio_info dtsec_mdio_info; +	struct memac_mdio_info tgec_mdio_info; +	ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); +	u32 rcwsr13 = in_be32(&gur->rcwsr[13]); +	u32 srds_s1; + +	srds_s1 = in_be32(&gur->rcwsr[4]) & +					FSL_CORENET2_RCWSR4_SRDS1_PRTCL; +	srds_s1 >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT; + +	initialize_lane_to_slot(); + +	/* Initialize the mdio_mux array so we can recognize empty elements */ +	for (i = 0; i < NUM_FM_PORTS; i++) +		mdio_mux[i] = EMI_NONE; + +	dtsec_mdio_info.regs = +		(struct memac_mdio_controller *)CONFIG_SYS_FM1_DTSEC_MDIO_ADDR; + +	dtsec_mdio_info.name = DEFAULT_FM_MDIO_NAME; + +	/* Register the 1G MDIO bus */ +	fm_memac_mdio_init(bis, &dtsec_mdio_info); + +	tgec_mdio_info.regs = +		(struct memac_mdio_controller *)CONFIG_SYS_FM1_TGEC_MDIO_ADDR; +	tgec_mdio_info.name = DEFAULT_FM_TGEC_MDIO_NAME; + +	/* Register the 10G MDIO bus */ +	fm_memac_mdio_init(bis, &tgec_mdio_info); + +	/* Register the muxing front-ends to the MDIO buses */ +	T2080qds_mdio_init(DEFAULT_FM_MDIO_NAME, EMI1_RGMII1); +	T2080qds_mdio_init(DEFAULT_FM_MDIO_NAME, EMI1_RGMII2); +	T2080qds_mdio_init(DEFAULT_FM_MDIO_NAME, EMI1_SLOT1); +	T2080qds_mdio_init(DEFAULT_FM_MDIO_NAME, EMI1_SLOT2); +	T2080qds_mdio_init(DEFAULT_FM_MDIO_NAME, EMI1_SLOT3); +	T2080qds_mdio_init(DEFAULT_FM_MDIO_NAME, EMI1_SLOT4); +	T2080qds_mdio_init(DEFAULT_FM_MDIO_NAME, EMI1_SLOT5); +	T2080qds_mdio_init(DEFAULT_FM_TGEC_MDIO_NAME, EMI2); + +	/* Set the two on-board RGMII PHY address */ +	fm_info_set_phy_address(FM1_DTSEC3, RGMII_PHY1_ADDR); +	if ((rcwsr13 & FSL_CORENET_RCWSR13_EC2) == +			FSL_CORENET_RCWSR13_EC2_DTSEC4_RGMII) +		fm_info_set_phy_address(FM1_DTSEC4, RGMII_PHY2_ADDR); +	else +		fm_info_set_phy_address(FM1_DTSEC10, RGMII_PHY2_ADDR); + +	switch (srds_s1) { +	case 0x1c: +	case 0x95: +	case 0xa2: +	case 0x94: +		/* SGMII in Slot3 */ +		fm_info_set_phy_address(FM1_DTSEC9, SGMII_CARD_PORT1_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC10, SGMII_CARD_PORT2_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC1, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC2, SGMII_CARD_PORT4_PHY_ADDR); +		/* SGMII in Slot2 */ +		fm_info_set_phy_address(FM1_DTSEC5, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC6, SGMII_CARD_PORT4_PHY_ADDR); +		break; +	case 0x51: +	case 0x5f: +	case 0x65: +		/* XAUI/HiGig in Slot3 */ +		fm_info_set_phy_address(FM1_10GEC1, FM1_10GEC1_PHY_ADDR); +		/* SGMII in Slot2 */ +		fm_info_set_phy_address(FM1_DTSEC5, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC6, SGMII_CARD_PORT4_PHY_ADDR); +		break; +	case 0x66: +		/* +		 * XFI does not need a PHY to work, but to avoid U-boot use +		 * default PHY address which is zero to a MAC when it found +		 * a MAC has no PHY address, we give a PHY address to XFI +		 * MAC, and should not use a real XAUI PHY address, since +		 * MDIO can access it successfully, and then MDIO thinks +		 * the XAUI card is used for the XFI MAC, which will cause +		 * error. +		 */ +		fm_info_set_phy_address(FM1_10GEC1, 4); +		fm_info_set_phy_address(FM1_10GEC2, 5); +		fm_info_set_phy_address(FM1_10GEC3, 6); +		fm_info_set_phy_address(FM1_10GEC4, 7); +		break; +	case 0x6b: +		fm_info_set_phy_address(FM1_10GEC1, 4); +		fm_info_set_phy_address(FM1_10GEC2, 5); +		fm_info_set_phy_address(FM1_10GEC3, 6); +		fm_info_set_phy_address(FM1_10GEC4, 7); +		/* SGMII in Slot2 */ +		fm_info_set_phy_address(FM1_DTSEC5, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC6, SGMII_CARD_PORT2_PHY_ADDR); +		break; +	case 0x6c: +	case 0x6d: +		/* SGMII in Slot3 */ +		fm_info_set_phy_address(FM1_DTSEC1, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC2, SGMII_CARD_PORT2_PHY_ADDR); +		break; +	case 0x71: +		/* SGMII in Slot3 */ +		fm_info_set_phy_address(FM1_DTSEC1, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC2, SGMII_CARD_PORT4_PHY_ADDR); +		/* SGMII in Slot2 */ +		fm_info_set_phy_address(FM1_DTSEC5, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC6, SGMII_CARD_PORT2_PHY_ADDR); +		break; +	case 0xa6: +	case 0x8e: +	case 0x8f: +	case 0x82: +	case 0x83: +		/* SGMII in Slot3 */ +		fm_info_set_phy_address(FM1_DTSEC9, SGMII_CARD_PORT1_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC10, SGMII_CARD_PORT2_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC1, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC2, SGMII_CARD_PORT4_PHY_ADDR); +		/* SGMII in Slot2 */ +		fm_info_set_phy_address(FM1_DTSEC5, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC6, SGMII_CARD_PORT2_PHY_ADDR); +		break; +	case 0xa4: +	case 0x96: +	case 0x8a: +		/* SGMII in Slot3 */ +		fm_info_set_phy_address(FM1_DTSEC9, SGMII_CARD_PORT1_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC10, SGMII_CARD_PORT2_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC1, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC2, SGMII_CARD_PORT4_PHY_ADDR); +		break; +	case 0xd9: +	case 0xd3: +	case 0xcb: +		/* SGMII in Slot3 */ +		fm_info_set_phy_address(FM1_DTSEC10, SGMII_CARD_PORT2_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC1, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC2, SGMII_CARD_PORT4_PHY_ADDR); +		/* SGMII in Slot2 */ +		fm_info_set_phy_address(FM1_DTSEC5, SGMII_CARD_PORT3_PHY_ADDR); +		fm_info_set_phy_address(FM1_DTSEC6, SGMII_CARD_PORT2_PHY_ADDR); +		break; +	default: +		puts("Invalid SerDes1 protocol for T2080QDS\n"); +		break; +	} + +	for (i = FM1_DTSEC1; i < FM1_DTSEC1 + CONFIG_SYS_NUM_FM1_DTSEC; i++) { +		idx = i - FM1_DTSEC1; +		interface = fm_info_get_enet_if(i); +		switch (interface) { +		case PHY_INTERFACE_MODE_SGMII: +			lane = serdes_get_first_lane(FSL_SRDS_1, +					SGMII_FM1_DTSEC1 + idx); +			if (lane < 0) +				break; +			slot = lane_to_slot[lane]; +			debug("FM1@DTSEC%u expects SGMII in slot %u\n", +			      idx + 1, slot); +			if (QIXIS_READ(present2) & (1 << (slot - 1))) +				fm_disable_port(i); + +			switch (slot) { +			case 1: +				mdio_mux[i] = EMI1_SLOT1; +				fm_info_set_mdio(i, mii_dev_for_muxval( +						 mdio_mux[i])); +				break; +			case 2: +				mdio_mux[i] = EMI1_SLOT2; +				fm_info_set_mdio(i, mii_dev_for_muxval( +						 mdio_mux[i])); +				break; +			}; +			break; +		case PHY_INTERFACE_MODE_RGMII: +			if (i == FM1_DTSEC3) +				mdio_mux[i] = EMI1_RGMII1; +			else if (i == FM1_DTSEC4 || FM1_DTSEC10) +				mdio_mux[i] = EMI1_RGMII2; +			fm_info_set_mdio(i, mii_dev_for_muxval(mdio_mux[i])); +			break; +		default: +			break; +		} +	} + +	for (i = FM1_10GEC1; i < FM1_10GEC1 + CONFIG_SYS_NUM_FM1_10GEC; i++) { +		idx = i - FM1_10GEC1; +		switch (fm_info_get_enet_if(i)) { +		case PHY_INTERFACE_MODE_XGMII: +			if (srds_s1 == 0x51) { +				lane = serdes_get_first_lane(FSL_SRDS_1, +						XAUI_FM1_MAC9 + idx); +			} else if ((srds_s1 == 0x5f) || (srds_s1 == 0x65)) { +				lane = serdes_get_first_lane(FSL_SRDS_1, +						HIGIG_FM1_MAC9 + idx); +			} else { +				if (i == FM1_10GEC1 || i == FM1_10GEC2) +					lane = serdes_get_first_lane(FSL_SRDS_1, +						XFI_FM1_MAC9 + idx); +				else +					lane = serdes_get_first_lane(FSL_SRDS_1, +						XFI_FM1_MAC1 + idx); +			} + +			if (lane < 0) +				break; +			mdio_mux[i] = EMI2; +			fm_info_set_mdio(i, mii_dev_for_muxval(mdio_mux[i])); + +			if ((srds_s1 == 0x66) || (srds_s1 == 0x6b) || +			    (srds_s1 == 0x6c) || (srds_s1 == 0x6d) || +			    (srds_s1 == 0x71)) { +				/* As XFI is in cage intead of a slot, so +				 * ensure doesn't disable the corresponding port +				 */ +				break; +			} + +			slot = lane_to_slot[lane]; +			if (QIXIS_READ(present2) & (1 << (slot - 1))) +				fm_disable_port(i); +			break; +		default: +			break; +		} +	} + +	cpu_eth_init(bis); +#endif /* CONFIG_FMAN_ENET */ + +	return pci_eth_init(bis); +} diff --git a/board/freescale/t2080qds/law.c b/board/freescale/t2080qds/law.c new file mode 100644 index 000000000..74e2a53a8 --- /dev/null +++ b/board/freescale/t2080qds/law.c @@ -0,0 +1,34 @@ +/* + * Copyright 2008-2012 Freescale Semiconductor, Inc. + * + * (C) Copyright 2000 + * Wolfgang Denk, DENX Software Engineering, wd@denx.de. + * + * SPDX-License-Identifier:     GPL-2.0+ + */ + +#include <common.h> +#include <asm/fsl_law.h> +#include <asm/mmu.h> + +struct law_entry law_table[] = { +	SET_LAW(CONFIG_SYS_FLASH_BASE_PHYS, LAW_SIZE_256M, LAW_TRGT_IF_IFC), +#ifdef CONFIG_SYS_BMAN_MEM_PHYS +	SET_LAW(CONFIG_SYS_BMAN_MEM_PHYS, LAW_SIZE_32M, LAW_TRGT_IF_BMAN), +#endif +#ifdef CONFIG_SYS_QMAN_MEM_PHYS +	SET_LAW(CONFIG_SYS_QMAN_MEM_PHYS, LAW_SIZE_32M, LAW_TRGT_IF_QMAN), +#endif +#ifdef QIXIS_BASE_PHYS +	SET_LAW(QIXIS_BASE_PHYS, LAW_SIZE_4K, LAW_TRGT_IF_IFC), +#endif +#ifdef CONFIG_SYS_DCSRBAR_PHYS +	/* Limit DCSR to 32M to access NPC Trace Buffer */ +	SET_LAW(CONFIG_SYS_DCSRBAR_PHYS, LAW_SIZE_32M, LAW_TRGT_IF_DCSR), +#endif +#ifdef CONFIG_SYS_NAND_BASE_PHYS +	SET_LAW(CONFIG_SYS_NAND_BASE_PHYS, LAW_SIZE_1M, LAW_TRGT_IF_IFC), +#endif +}; + +int num_law_entries = ARRAY_SIZE(law_table); diff --git a/board/freescale/t2080qds/pci.c b/board/freescale/t2080qds/pci.c new file mode 100644 index 000000000..84a89dad4 --- /dev/null +++ b/board/freescale/t2080qds/pci.c @@ -0,0 +1,23 @@ +/* + * Copyright 2007-2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#include <common.h> +#include <command.h> +#include <pci.h> +#include <asm/fsl_pci.h> +#include <libfdt.h> +#include <fdt_support.h> +#include <asm/fsl_serdes.h> + +void pci_init_board(void) +{ +	fsl_pcie_init_board(0); +} + +void pci_of_setup(void *blob, bd_t *bd) +{ +	FT_FSL_PCI_SETUP; +} diff --git a/board/freescale/t2080qds/t2080_pbi.cfg b/board/freescale/t2080qds/t2080_pbi.cfg new file mode 100644 index 000000000..e200d926f --- /dev/null +++ b/board/freescale/t2080qds/t2080_pbi.cfg @@ -0,0 +1,41 @@ +# +# Copyright 2013 Freescale Semiconductor, Inc. +# +# SPDX-License-Identifier:      GPL-2.0+ +# +# Refer doc/README.pblimage for more details about how-to configure +# and create PBL boot image +# + +#PBI commands +#Initialize CPC1 +09010000 00200400 +09138000 00000000 +091380c0 00000100 +#512KB SRAM +09010100 00000000 +09010104 fff80009 +09010f00 08000000 +#enable CPC1 +09010000 80000000 +#Configure LAW for CPC1 +09000d00 00000000 +09000d04 fff80000 +09000d08 81000012 +#Initialize eSPI controller, default configuration is slow for eSPI to +#load data, this configuration comes from u-boot eSPI driver. +09110000 80000403 +09110020 2d170008 +09110024 00100008 +09110028 00100008 +0911002c 00100008 +#Errata for slowing down the MDC clock to make it <= 2.5 MHZ +094fc030 00008148 +094fd030 00008148 +#Configure alternate space +09000010 00000000 +09000014 ff000000 +09000018 81000000 +#Flush PBL data +09138000 00000000 +091380c0 00000000 diff --git a/board/freescale/t2080qds/t2080_rcw.cfg b/board/freescale/t2080qds/t2080_rcw.cfg new file mode 100644 index 000000000..c2ad0fda5 --- /dev/null +++ b/board/freescale/t2080qds/t2080_rcw.cfg @@ -0,0 +1,8 @@ +#PBL preamble and RCW header +aa55aa55 010e0100 +#SerDes Protocol: 0x66_0x16 +#Core/DDR: 1533Mhz/2133MT/s +12100017 15000000 00000000 00000000 +66160002 00008400 e8104000 c1000000 +00000000 00000000 00000000 000307fc +00000000 00000000 00000000 00000004 diff --git a/board/freescale/t2080qds/t2080qds.c b/board/freescale/t2080qds/t2080qds.c new file mode 100644 index 000000000..cac32fe73 --- /dev/null +++ b/board/freescale/t2080qds/t2080qds.c @@ -0,0 +1,324 @@ +/* + * Copyright 2009-2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:     GPL-2.0+ + */ + +#include <common.h> +#include <command.h> +#include <i2c.h> +#include <netdev.h> +#include <linux/compiler.h> +#include <asm/mmu.h> +#include <asm/processor.h> +#include <asm/immap_85xx.h> +#include <asm/fsl_law.h> +#include <asm/fsl_serdes.h> +#include <asm/fsl_portals.h> +#include <asm/fsl_liodn.h> +#include <fm_eth.h> + +#include "../common/qixis.h" +#include "../common/vsc3316_3308.h" +#include "t2080qds.h" +#include "t2080qds_qixis.h" + +DECLARE_GLOBAL_DATA_PTR; + +int checkboard(void) +{ +	char buf[64]; +	u8 sw; +	struct cpu_type *cpu = gd->arch.cpu; +	static const char *freq[4] = { +		"100.00MHZ(from 8T49N222A)", "125.00MHz", +		"156.25MHZ", "100.00MHz" +	}; + +	printf("Board: %sQDS, ", cpu->name); +	sw = QIXIS_READ(arch); +	printf("Sys ID: 0x%02x, Board Arch: V%d, ", QIXIS_READ(id), sw >> 4); +	printf("Board Version: %c, boot from ", (sw & 0xf) + 'A' - 1); + +	sw = QIXIS_READ(brdcfg[0]); +	sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT; + +	if (sw < 0x8) +		printf("vBank%d\n", sw); +	else if (sw == 0x8) +		puts("Promjet\n"); +	else if (sw == 0x9) +		puts("NAND\n"); +	else +		printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH); + +	printf("FPGA: v%d (%s), build %d", (int)QIXIS_READ(scver), +	       qixis_read_tag(buf), (int)qixis_read_minor()); +	/* the timestamp string contains "\n" at the end */ +	printf(" on %s", qixis_read_time(buf)); + +	puts("SERDES Reference Clocks:\n"); +	sw = QIXIS_READ(brdcfg[2]); +	printf("SD1_CLK1=%s, SD1_CLK2=%s\n", freq[sw >> 6], +	       freq[(sw >> 4) & 0x3]); +	printf("SD2_CLK1=%s, SD2_CLK2=%s\n", freq[(sw & 0xf) >> 2], +	       freq[sw & 0x3]); + +	return 0; +} + +int select_i2c_ch_pca9547(u8 ch) +{ +	int ret; + +	ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1); +	if (ret) { +		puts("PCA: failed to select proper channel\n"); +		return ret; +	} + +	return 0; +} + +int brd_mux_lane_to_slot(void) +{ +	ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); +	u32 srds_prtcl_s1, srds_prtcl_s2; + +	srds_prtcl_s1 = in_be32(&gur->rcwsr[4]) & +				FSL_CORENET2_RCWSR4_SRDS1_PRTCL; +	srds_prtcl_s1 >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT; +	srds_prtcl_s2 = in_be32(&gur->rcwsr[4]) & +				FSL_CORENET2_RCWSR4_SRDS2_PRTCL; +	srds_prtcl_s2 >>= FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT; + +	switch (srds_prtcl_s1) { +	case 0: +		/* SerDes1 is not enabled */ +		break; +	case 0x1c: +	case 0x95: +	case 0xa2: +	case 0x94: +		/* SD1(A:D) => SLOT3 SGMII +		 * SD1(G:H) => SLOT1 SGMII +		 */ +		QIXIS_WRITE(brdcfg[12], 0x58); +		break; +	case 0x51: +		/* SD1(A:D) => SLOT3 XAUI +		 * SD1(E)   => SLOT1 PCIe4 +		 * SD1(F:H) => SLOT2 SGMII +		 */ +		QIXIS_WRITE(brdcfg[12], 0x15); +		break; +	case 0x66: +	case 0x67: +		/* SD1(A:D) => XFI cage +		 * SD1(E:H) => SLOT1 PCIe4 +		 */ +		QIXIS_WRITE(brdcfg[12], 0xfe); +		break; +	case 0x6b: +		/* SD1(A:D) => XFI cage +		 * SD1(E)   => SLOT1 PCIe4 +		 * SD1(F:H) => SLOT2 SGMII +		 */ +		QIXIS_WRITE(brdcfg[12], 0xf1); +		break; +	case 0x6c: +	case 0x6d: +		/* SD1(A:B) => XFI cage +		 * SD1(C:D) => SLOT3 SGMII +		 * SD1(E:H) => SLOT1 PCIe4 +		 */ +		QIXIS_WRITE(brdcfg[12], 0xda); +		break; +	default: +		printf("WARNING: unsupported for SerDes1 Protocol %d\n", +		       srds_prtcl_s1); +		return -1; +	} + +	switch (srds_prtcl_s2) { +	case 0: +		/* SerDes2 is not enabled */ +		break; +	case 0x01: +	case 0x02: +		/* SD2(A:H) => SLOT4 PCIe1 */ +		QIXIS_WRITE(brdcfg[13], 0x20); +		break; +	case 0x15: +	case 0x16: +		/* +		 * SD2(A:D) => SLOT4 PCIe1 +		 * SD2(E:F) => SLOT5 PCIe2 +		 * SD2(G:H) => SATA1,SATA2 +		 */ +		QIXIS_WRITE(brdcfg[13], 0xb0); +		break; +	case 0x18: +		/* +		 * SD2(A:D) => SLOT4 PCIe1 +		 * SD2(E:F) => SLOT5 Aurora +		 * SD2(G:H) => SATA1,SATA2 +		 */ +		QIXIS_WRITE(brdcfg[13], 0x70); +		break; +	case 0x1f: +		/* +		 * SD2(A:D) => SLOT4 PCIe1 +		 * SD2(E:H) => SLOT5 PCIe2 +		 */ +		QIXIS_WRITE(brdcfg[13], 0xa0); +		break; +	case 0x29: +	case 0x2d: +	case 0x2e: +		/* +		 * SD2(A:D) => SLOT4 SRIO2 +		 * SD2(E:H) => SLOT5 SRIO1 +		 */ +		QIXIS_WRITE(brdcfg[13], 0x50); +		break; +	default: +		printf("WARNING: unsupported for SerDes2 Protocol %d\n", +		       srds_prtcl_s2); +		return -1; +	} +	return 0; +} + +int board_early_init_r(void) +{ +	const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; +	const u8 flash_esel = find_tlb_idx((void *)flashbase, 1); + +	/* +	 * Remap Boot flash + PROMJET region to caching-inhibited +	 * so that flash can be erased properly. +	 */ + +	/* Flush d-cache and invalidate i-cache of any FLASH data */ +	flush_dcache(); +	invalidate_icache(); + +	/* invalidate existing TLB entry for flash + promjet */ +	disable_tlb(flash_esel); + +	set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, +		MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		0, flash_esel, BOOKE_PAGESZ_256M, 1); + +	set_liodns(); +#ifdef CONFIG_SYS_DPAA_QBMAN +	setup_portals(); +#endif + +	/* Disable remote I2C connection to qixis fpga */ +	QIXIS_WRITE(brdcfg[5], QIXIS_READ(brdcfg[5]) & ~BRDCFG5_IRE); + +	brd_mux_lane_to_slot(); +	select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT); + +	return 0; +} + +unsigned long get_board_sys_clk(void) +{ +	u8 sysclk_conf = QIXIS_READ(brdcfg[1]); +#ifdef CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT +	/* use accurate clock measurement */ +	int freq = QIXIS_READ(clk_freq[0]) << 8 | QIXIS_READ(clk_freq[1]); +	int base = QIXIS_READ(clk_base[0]) << 8 | QIXIS_READ(clk_base[1]); +	u32 val; + +	val =  freq * base; +	if (val) { +		debug("SYS Clock measurement is: %d\n", val); +		return val; +	} else { +		printf("Warning: SYS clock measurement is invalid, "); +		printf("using value from brdcfg1.\n"); +	} +#endif + +	switch (sysclk_conf & 0x0F) { +	case QIXIS_SYSCLK_83: +		return 83333333; +	case QIXIS_SYSCLK_100: +		return 100000000; +	case QIXIS_SYSCLK_125: +		return 125000000; +	case QIXIS_SYSCLK_133: +		return 133333333; +	case QIXIS_SYSCLK_150: +		return 150000000; +	case QIXIS_SYSCLK_160: +		return 160000000; +	case QIXIS_SYSCLK_166: +		return 166666666; +	} +	return 66666666; +} + +unsigned long get_board_ddr_clk(void) +{ +	u8 ddrclk_conf = QIXIS_READ(brdcfg[1]); +#ifdef CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT +	/* use accurate clock measurement */ +	int freq = QIXIS_READ(clk_freq[2]) << 8 | QIXIS_READ(clk_freq[3]); +	int base = QIXIS_READ(clk_base[0]) << 8 | QIXIS_READ(clk_base[1]); +	u32 val; + +	val =  freq * base; +	if (val) { +		debug("DDR Clock measurement is: %d\n", val); +		return val; +	} else { +		printf("Warning: DDR clock measurement is invalid, "); +		printf("using value from brdcfg1.\n"); +	} +#endif + +	switch ((ddrclk_conf & 0x30) >> 4) { +	case QIXIS_DDRCLK_100: +		return 100000000; +	case QIXIS_DDRCLK_125: +		return 125000000; +	case QIXIS_DDRCLK_133: +		return 133333333; +	} +	return 66666666; +} + +int misc_init_r(void) +{ +	return 0; +} + +void ft_board_setup(void *blob, bd_t *bd) +{ +	phys_addr_t base; +	phys_size_t size; + +	ft_cpu_setup(blob, bd); + +	base = getenv_bootm_low(); +	size = getenv_bootm_size(); + +	fdt_fixup_memory(blob, (u64)base, (u64)size); + +#ifdef CONFIG_PCI +	pci_of_setup(blob, bd); +#endif + +	fdt_fixup_liodn(blob); +	fdt_fixup_dr_usb(blob, bd); + +#ifdef CONFIG_SYS_DPAA_FMAN +	fdt_fixup_fman_ethernet(blob); +	fdt_fixup_board_enet(blob); +#endif +} diff --git a/board/freescale/t2080qds/t2080qds.h b/board/freescale/t2080qds/t2080qds.h new file mode 100644 index 000000000..39fcef28c --- /dev/null +++ b/board/freescale/t2080qds/t2080qds.h @@ -0,0 +1,13 @@ +/* + * Copyright 2011-2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:	GPL-2.0+ + */ + +#ifndef __CORENET_DS_H__ +#define __CORENET_DS_H__ + +void fdt_fixup_board_enet(void *blob); +void pci_of_setup(void *blob, bd_t *bd); + +#endif diff --git a/board/freescale/t2080qds/t2080qds_qixis.h b/board/freescale/t2080qds/t2080qds_qixis.h new file mode 100644 index 000000000..fc83da707 --- /dev/null +++ b/board/freescale/t2080qds/t2080qds_qixis.h @@ -0,0 +1,47 @@ +/* + * Copyright 2013 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier:     GPL-2.0+ + */ + +#ifndef __T2080QDS_QIXIS_H__ +#define __T2080QDS_QIXIS_H__ + +/* Definitions of QIXIS Registers for T2080QDS */ + +#define QIXIS_SRDS1CLK_122		0x5a +#define QIXIS_SRDS1CLK_125		0x5e + + +/* BRDCFG4[4:7]] select EC1 and EC2 as a pair */ +#define BRDCFG4_EMISEL_MASK             0xE0 +#define BRDCFG4_EMISEL_SHIFT            5 + +/* SYSCLK */ +#define QIXIS_SYSCLK_66                 0x0 +#define QIXIS_SYSCLK_83                 0x1 +#define QIXIS_SYSCLK_100                0x2 +#define QIXIS_SYSCLK_125                0x3 +#define QIXIS_SYSCLK_133                0x4 +#define QIXIS_SYSCLK_150                0x5 +#define QIXIS_SYSCLK_160                0x6 +#define QIXIS_SYSCLK_166                0x7 + +/* DDRCLK */ +#define QIXIS_DDRCLK_66                 0x0 +#define QIXIS_DDRCLK_100                0x1 +#define QIXIS_DDRCLK_125                0x2 +#define QIXIS_DDRCLK_133                0x3 + +#define BRDCFG5_IRE                     0x20    /* i2c Remote i2c1 enable */ + +#define BRDCFG12_SD3EN_MASK             0x20 +#define BRDCFG12_SD3MX_MASK             0x08 +#define BRDCFG12_SD3MX_SLOT5            0x08 +#define BRDCFG12_SD3MX_SLOT6            0x00 +#define BRDCFG12_SD4EN_MASK             0x04 +#define BRDCFG12_SD4MX_MASK             0x03 +#define BRDCFG12_SD4MX_SLOT7            0x02 +#define BRDCFG12_SD4MX_SLOT8            0x01 +#define BRDCFG12_SD4MX_AURO_SATA        0x00 +#endif diff --git a/board/freescale/t2080qds/tlb.c b/board/freescale/t2080qds/tlb.c new file mode 100644 index 000000000..62cd11033 --- /dev/null +++ b/board/freescale/t2080qds/tlb.c @@ -0,0 +1,146 @@ +/* + * Copyright 2008-2013 Freescale Semiconductor, Inc. + * + * (C) Copyright 2000 + * Wolfgang Denk, DENX Software Engineering, wd@denx.de. + * + * SPDX-License-Identifier:     GPL-2.0+ + */ + +#include <common.h> +#include <asm/mmu.h> + +struct fsl_e_tlb_entry tlb_table[] = { +	/* TLB 0 - for temp stack in cache */ +	SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR, +		      CONFIG_SYS_INIT_RAM_ADDR_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 0, BOOKE_PAGESZ_4K, 0), +	SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024, +		      CONFIG_SYS_INIT_RAM_ADDR_PHYS + 4 * 1024, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 0, BOOKE_PAGESZ_4K, 0), +	SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024, +		      CONFIG_SYS_INIT_RAM_ADDR_PHYS + 8 * 1024, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 0, BOOKE_PAGESZ_4K, 0), +	SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024, +		      CONFIG_SYS_INIT_RAM_ADDR_PHYS + 12 * 1024, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 0, BOOKE_PAGESZ_4K, 0), + +	/* TLB 1 */ +	/* *I*** - Covers boot page */ +#if defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SYS_INIT_L3_ADDR) +	/* +	 * *I*G - L3SRAM. When L3 is used as 1M SRAM, the address of the +	 * SRAM is at 0xfff00000, it covered the 0xfffff000. +	 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_INIT_L3_ADDR, CONFIG_SYS_INIT_L3_ADDR, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 0, BOOKE_PAGESZ_1M, 1), +#elif defined(CONFIG_SRIO_PCIE_BOOT_SLAVE) +	/* +	 * SRIO_PCIE_BOOT-SLAVE. When slave boot, the address of the +	 * space is at 0xfff00000, it covered the 0xfffff000. +	 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR, +		      CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_W|MAS2_G, +		      0, 0, BOOKE_PAGESZ_1M, 1), +#else +	SET_TLB_ENTRY(1, 0xfffff000, 0xfffff000, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 0, BOOKE_PAGESZ_4K, 1), +#endif + +	/* *I*G* - CCSRBAR */ +	SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 1, BOOKE_PAGESZ_16M, 1), + +	/* *I*G* - Flash, localbus */ +	/* This will be changed to *I*G* after relocation to RAM. */ +	SET_TLB_ENTRY(1, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE_PHYS, +		      MAS3_SX|MAS3_SR, MAS2_W|MAS2_G, +		      0, 2, BOOKE_PAGESZ_256M, 1), + +	/* *I*G* - PCIe 1, 0x80000000 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_PCIE1_MEM_VIRT, CONFIG_SYS_PCIE1_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 3, BOOKE_PAGESZ_512M, 1), + +	/* *I*G* - PCIe 2, 0xa0000000 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_PCIE2_MEM_VIRT, CONFIG_SYS_PCIE2_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 4, BOOKE_PAGESZ_256M, 1), + +	/* *I*G* - PCIe 3, 0xb0000000 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_PCIE3_MEM_VIRT, CONFIG_SYS_PCIE3_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 5, BOOKE_PAGESZ_256M, 1), + + +	/* *I*G* - PCIe 4, 0xc0000000 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_PCIE4_MEM_VIRT, CONFIG_SYS_PCIE4_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 6, BOOKE_PAGESZ_256M, 1), + +	/* *I*G* - PCI I/O */ +	SET_TLB_ENTRY(1, CONFIG_SYS_PCIE1_IO_VIRT, CONFIG_SYS_PCIE1_IO_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 7, BOOKE_PAGESZ_256K, 1), + +	/* Bman/Qman */ +#ifdef CONFIG_SYS_BMAN_MEM_PHYS +	SET_TLB_ENTRY(1, CONFIG_SYS_BMAN_MEM_BASE, CONFIG_SYS_BMAN_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 9, BOOKE_PAGESZ_16M, 1), +	SET_TLB_ENTRY(1, CONFIG_SYS_BMAN_MEM_BASE + 0x01000000, +		      CONFIG_SYS_BMAN_MEM_PHYS + 0x01000000, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 10, BOOKE_PAGESZ_16M, 1), +#endif +#ifdef CONFIG_SYS_QMAN_MEM_PHYS +	SET_TLB_ENTRY(1, CONFIG_SYS_QMAN_MEM_BASE, CONFIG_SYS_QMAN_MEM_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, 0, +		      0, 11, BOOKE_PAGESZ_16M, 1), +	SET_TLB_ENTRY(1, CONFIG_SYS_QMAN_MEM_BASE + 0x01000000, +		      CONFIG_SYS_QMAN_MEM_PHYS + 0x01000000, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 12, BOOKE_PAGESZ_16M, 1), +#endif +#ifdef CONFIG_SYS_DCSRBAR_PHYS +	SET_TLB_ENTRY(1, CONFIG_SYS_DCSRBAR, CONFIG_SYS_DCSRBAR_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 13, BOOKE_PAGESZ_32M, 1), +#endif +#ifdef CONFIG_SYS_NAND_BASE +	/* +	 * *I*G - NAND +	 * entry 14 and 15 has been used hard coded, they will be disabled +	 * in cpu_init_f, so we use entry 16 for nand. +	 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_NAND_BASE, CONFIG_SYS_NAND_BASE_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 16, BOOKE_PAGESZ_64K, 1), +#endif +#ifdef QIXIS_BASE_PHYS +	SET_TLB_ENTRY(1, QIXIS_BASE, QIXIS_BASE_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, +		      0, 17, BOOKE_PAGESZ_4K, 1), +#endif +#ifdef CONFIG_SRIO_PCIE_BOOT_SLAVE +	/* +	 * SRIO_PCIE_BOOT-SLAVE. 1M space from 0xffe00000 for +	 * fetching ucode and ENV from master +	 */ +	SET_TLB_ENTRY(1, CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR, +		      CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR_PHYS, +		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_G, +		      0, 18, BOOKE_PAGESZ_1M, 1), +#endif + +}; + +int num_tlb_entries = ARRAY_SIZE(tlb_table); diff --git a/board/freescale/t4qds/ddr.c b/board/freescale/t4qds/ddr.c index d70c31051..7586cc3c4 100644 --- a/board/freescale/t4qds/ddr.c +++ b/board/freescale/t4qds/ddr.c @@ -10,8 +10,8 @@  #include <i2c.h>  #include <hwconfig.h>  #include <asm/mmu.h> -#include <asm/fsl_ddr_sdram.h> -#include <asm/fsl_ddr_dimm_params.h> +#include <fsl_ddr_sdram.h> +#include <fsl_ddr_dimm_params.h>  #include <asm/fsl_law.h>  #include "ddr.h" diff --git a/board/freescale/t4qds/eth.c b/board/freescale/t4qds/eth.c index b5f488bcb..24cf90743 100644 --- a/board/freescale/t4qds/eth.c +++ b/board/freescale/t4qds/eth.c @@ -12,7 +12,7 @@  #include <asm/cache.h>  #include <asm/immap_85xx.h>  #include <asm/fsl_law.h> -#include <asm/fsl_ddr_sdram.h> +#include <fsl_ddr_sdram.h>  #include <asm/fsl_serdes.h>  #include <asm/fsl_portals.h>  #include <asm/fsl_liodn.h> |