想问一下,1GB的ddr已经正常运行,在配置2GB的DDR的时候,是否将Rules.make文件中的DDR_MEM=DDR_MEM_2048M就可以了!
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
The memory map of complete DVRRDK is controlled in <DVR_RDK>/dvr_rdk/mcfw/src_bios6/cfg/ti81<x>x/config_<xxxx>.bld
In this build configuration file, size of each section can be reconfigured. For example, in config_1G_256M.bld, DSP code size and DSP data size section can be changed by modifying the following entries. DSP_CODE_SIZE = 1*MB + 1*MB/2; DSP_DATA_SIZE = 13*MB;
The base addresses of each section are incremented based on the base address of previous section and the size of the previous section. For example, if sections are created in the numerical order, base address of Section 2 is calculated as below: <Start Addr of Sect 2> = <Start Addr of Sec 1> + <Size of Sect 1>