중요 문제
이 문제는 DDR3 제품에 영향을 미칩니다.
RC8–RC15 필드에 대해 0이 아닌 값을 지정하는 경우 DDR3 RDIMM 제어 단어의 IP 생성이 실패하고 다음과 같은 메시지가 나타납니다. 오류:
Error: integer value too large to represent.
이 문제의 해결 방법은 파일의 코드를 uniphy_gen.tcl
수정하는 것입니다.
같이:
ip/altera/alt_mem_if/alt_mem_if_tcl_packages/gen/�
디렉터리에서uniphy_gen.tcl
편집기에서 파일을 엽니다.uniphy_gen.tcl
파일에서 다음 텍스트 주석 :
# Need to split the 64-bit RDIMM configuration word into
2 32-bit words for the sake of C-code�
- 텍스트 주석의 위치에서 다음을 바꿉니다 기존 코드:
if {([string compare -nocase "DDR3"] == 0)
&& } {
# Need to split the 64-bit RDIMM configuration word into 2 32-bit words
for the sake of C-code
set rdimm_config_dec [ expr 0x[get_parameter_value RDIMM_CONFIG]
]
set rdimm_config_high [ format "0x%X" [ expr >>
32 ] ]
set rdimm_config_low [ format "0x%X" [ expr & 0xFFFFFFFF
] ]
append sw_macros " -DRDIMM_CONFIG_WORD_LOW="
append sw_macros " -DRDIMM_CONFIG_WORD_HIGH="
}
를 다음 새 코드로 바꿉니다.
if {([string compare -nocase "DDR3"] == 0)
&& } {
# Need to split the 64-bit RDIMM configuration word into 2 32-bit words
for the sake of C-code
set rdimm_config_str [ get_parameter_value RDIMM_CONFIG ]
set rdimm_config_low "0x[ string range end-7 end
]"
# Handle two halves of 16-byte string independently
if {([string length ] > 8)} {
set rdimm_config_high "0x[ string range end-15
end-8 ]"
} else {
set rdimm_config_high "0x0"
}
append sw_macros " -DRDIMM_CONFIG_WORD_LOW="
append sw_macros " -DRDIMM_CONFIG_WORD_HIGH="
}
이 문제는 향후 버전에서 수정될 예정입니다.