diff options
| author | Matt Porter <mporter@ti.com> | 2013-03-15 10:07:03 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-24 12:49:11 -0400 | 
| commit | 3ba65f97cbedb39fb486f42f8daa9b9e0d36705a (patch) | |
| tree | 0349f033250c48a61c82a6c3bc5bf85ad220c6c1 /arch/arm/include | |
| parent | 81df2bab46d3bed319e21571c68db8e0a048bbfd (diff) | |
| download | olio-uboot-2014.01-3ba65f97cbedb39fb486f42f8daa9b9e0d36705a.tar.xz olio-uboot-2014.01-3ba65f97cbedb39fb486f42f8daa9b9e0d36705a.zip | |
am33xx: refactor emif4/ddr to support multiple EMIF instances
The AM33xx emif4/ddr support closely matches what is need to support
TI814x except that TI814x has two EMIF instances. Refactor all the
emif4 helper calls and the config_ddr() init function to use an
additional instance number argument.
Signed-off-by: Matt Porter <mporter@ti.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/include')
| -rw-r--r-- | arch/arm/include/asm/arch-am33xx/ddr_defs.h | 52 | ||||
| -rw-r--r-- | arch/arm/include/asm/arch-am33xx/hardware.h | 13 | 
2 files changed, 55 insertions, 10 deletions
| diff --git a/arch/arm/include/asm/arch-am33xx/ddr_defs.h b/arch/arm/include/asm/arch-am33xx/ddr_defs.h index 7ab3bafc9..55c61e659 100644 --- a/arch/arm/include/asm/arch-am33xx/ddr_defs.h +++ b/arch/arm/include/asm/arch-am33xx/ddr_defs.h @@ -103,17 +103,57 @@  /**   * Configure SDRAM   */ -void config_sdram(const struct emif_regs *regs); +void config_sdram(const struct emif_regs *regs, int nr);  /**   * Set SDRAM timings   */ -void set_sdram_timings(const struct emif_regs *regs); +void set_sdram_timings(const struct emif_regs *regs, int nr);  /**   * Configure DDR PHY   */ -void config_ddr_phy(const struct emif_regs *regs); +void config_ddr_phy(const struct emif_regs *regs, int nr); + +struct ddr_cmd_regs { +	unsigned int resv0[7]; +	unsigned int cm0csratio;	/* offset 0x01C */ +	unsigned int resv1[2]; +	unsigned int cm0dldiff;		/* offset 0x028 */ +	unsigned int cm0iclkout;	/* offset 0x02C */ +	unsigned int resv2[8]; +	unsigned int cm1csratio;	/* offset 0x050 */ +	unsigned int resv3[2]; +	unsigned int cm1dldiff;		/* offset 0x05C */ +	unsigned int cm1iclkout;	/* offset 0x060 */ +	unsigned int resv4[8]; +	unsigned int cm2csratio;	/* offset 0x084 */ +	unsigned int resv5[2]; +	unsigned int cm2dldiff;		/* offset 0x090 */ +	unsigned int cm2iclkout;	/* offset 0x094 */ +	unsigned int resv6[3]; +}; + +struct ddr_data_regs { +	unsigned int dt0rdsratio0;	/* offset 0x0C8 */ +	unsigned int resv1[4]; +	unsigned int dt0wdsratio0;	/* offset 0x0DC */ +	unsigned int resv2[4]; +	unsigned int dt0wiratio0;	/* offset 0x0F0 */ +	unsigned int resv3; +	unsigned int dt0wimode0;	/* offset 0x0F8 */ +	unsigned int dt0giratio0;	/* offset 0x0FC */ +	unsigned int resv4; +	unsigned int dt0gimode0;	/* offset 0x104 */ +	unsigned int dt0fwsratio0;	/* offset 0x108 */ +	unsigned int resv5[4]; +	unsigned int dt0dqoffset;	/* offset 0x11C */ +	unsigned int dt0wrsratio0;	/* offset 0x120 */ +	unsigned int resv6[4]; +	unsigned int dt0rdelays0;	/* offset 0x134 */ +	unsigned int dt0dldiff0;	/* offset 0x138 */ +	unsigned int resv7[12]; +};  /**   * This structure represents the DDR registers on AM33XX devices. @@ -194,12 +234,12 @@ struct ddr_data {  /**   * Configure DDR CMD control registers   */ -void config_cmd_ctrl(const struct cmd_control *cmd); +void config_cmd_ctrl(const struct cmd_control *cmd, int nr);  /**   * Configure DDR DATA registers   */ -void config_ddr_data(int data_macrono, const struct ddr_data *data); +void config_ddr_data(const struct ddr_data *data, int nr);  /**   * This structure represents the DDR io control on AM33XX devices. @@ -227,6 +267,6 @@ struct ddr_ctrl {  void config_ddr(unsigned int pll, unsigned int ioctrl,  		const struct ddr_data *data, const struct cmd_control *ctrl, -		const struct emif_regs *regs); +		const struct emif_regs *regs, int nr);  #endif  /* _DDR_DEFS_H */ diff --git a/arch/arm/include/asm/arch-am33xx/hardware.h b/arch/arm/include/asm/arch-am33xx/hardware.h index 7016e25a4..24a9b8d2d 100644 --- a/arch/arm/include/asm/arch-am33xx/hardware.h +++ b/arch/arm/include/asm/arch-am33xx/hardware.h @@ -3,7 +3,7 @@   *   * hardware specific header   * - * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/ + * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/   *   * This program is free software; you can redistribute it and/or   * modify it under the terms of the GNU General Public License as @@ -20,6 +20,11 @@  #define __AM33XX_HARDWARE_H  #include <asm/arch/omap.h> +#ifdef CONFIG_AM33XX +#include <asm/arch/hardware_am33xx.h> +#elif defined(CONFIG_TI814X) +#include <asm/arch/hardware_ti814x.h> +#endif  /* Module base addresses */  #define UART0_BASE			0x44E09000 @@ -66,13 +71,13 @@  #define PRM_DEVICE			0x44E00F00  /* VTP Base address */ -#define VTP0_CTRL_ADDR			0x44E10E0C +#define VTP1_CTRL_ADDR			0x48140E10  /* DDR Base address */  #define DDR_CTRL_ADDR			0x44E10E04  #define DDR_CONTROL_BASE_ADDR		0x44E11404 -#define DDR_PHY_BASE_ADDR		0x44E12000 -#define DDR_PHY_BASE_ADDR2		0x44E120A4 +#define DDR_PHY_CMD_ADDR2		0x47C0C800 +#define DDR_PHY_DATA_ADDR2		0x47C0C8C8  /* UART */  #define DEFAULT_UART_BASE		UART0_BASE |