diff options
author | Dave Liu <daveliu@freescale.com> | 2009-03-14 12:48:30 +0800 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-03-30 13:33:50 -0500 |
commit | c360ceac0286159f94d9d1a9496fc9858c8d9bec (patch) | |
tree | fdd1868af478993fdb547171665c5c517ee6c071 /cpu/mpc8xxx/ddr/Makefile | |
parent | 6a8197836702991468cead5ead073f589e2623ad (diff) | |
download | u-boot-imx-c360ceac0286159f94d9d1a9496fc9858c8d9bec.zip u-boot-imx-c360ceac0286159f94d9d1a9496fc9858c8d9bec.tar.gz u-boot-imx-c360ceac0286159f94d9d1a9496fc9858c8d9bec.tar.bz2 |
fsl-ddr: add the DDR3 SPD infrastructure
- support mirrored DIMMs, not support register DIMMs
- test passed on P2020DS board with MT9JSF12872AY-1G1D1
- test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
Signed-off-by: Dave Liu <daveliu@freescale.com>
Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
Diffstat (limited to 'cpu/mpc8xxx/ddr/Makefile')
-rw-r--r-- | cpu/mpc8xxx/ddr/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/mpc8xxx/ddr/Makefile b/cpu/mpc8xxx/ddr/Makefile index b7f8d8c..cb7f856 100644 --- a/cpu/mpc8xxx/ddr/Makefile +++ b/cpu/mpc8xxx/ddr/Makefile @@ -18,6 +18,10 @@ COBJS-$(CONFIG_FSL_DDR2) += main.o util.o ctrl_regs.o options.o \ lc_common_dimm_params.o COBJS-$(CONFIG_FSL_DDR2) += ddr2_dimm_params.o +COBJS-$(CONFIG_FSL_DDR3) += main.o util.o ctrl_regs.o options.o \ + lc_common_dimm_params.o +COBJS-$(CONFIG_FSL_DDR3) += ddr3_dimm_params.o + SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |