Use the sdram initialization file and make the following changes:
#SDRAM bases address
mem [CCSR 0x20100] = 0x11000000
#MMU for SDRAM
reg ${CAM_GROUP}L2MMU_CAM5 = 0x400001C0FC0800001100000011000001
Also, in your uboot you need to have:
#define CONFIG_SYS_TEXT_BASE 0x11000000
#define CONFIG_RESET_VECTOR_ADDRESS 0x1107fffc
#define CONFIG_SYS_RAMBOOT
The CodeWarrior will copy the uboot elf to the SRAM area first, then u-boot initialize DDR controller for example, then relocates itself to DDR RAM.
Adrian