문서 ID: 000077235 콘텐츠 형태: 문제 해결 마지막 검토일: 2012-06-28

RC8RC15 0이 아닌 값으로 설정된 Stratix IV 또는 Stratix V에 대한 DDR3 RDIMM IP를 생성할 수 없음

환경

  • 인텔® Quartus® II 구독 에디션
  • BUILT IN - ARTICLE INTRO SECOND COMPONENT

    중요 문제

    설명

    이 문제는 DDR3 제품에 영향을 미칩니다.

    RC8–RC15 필드에 대해 0이 아닌 값을 지정하는 경우 DDR3 RDIMM 제어 단어의 IP 생성이 실패하고 다음과 같은 메시지가 나타납니다. 오류:

    Error: integer value too large to represent.

    해결 방법

    이 문제의 해결 방법은 파일의 코드를 uniphy_gen.tcl 수정하는 것입니다. 같이:

    1. ip/altera/alt_mem_if/alt_mem_if_tcl_packages/gen/� 디렉터리에서 uniphy_gen.tcl 편집기에서 파일을 엽니다.
    2. 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=" }

      이 문제는 향후 버전에서 수정될 예정입니다.

    관련 제품

    이 문서는 다음 항목에 적용됩니다. 2 제품

    Stratix® V FPGA
    Stratix® IV FPGA

    이 페이지의 콘텐츠는 원본 영어 콘텐츠에 대한 사람 번역 및 컴퓨터 번역의 조합으로 완성되었습니다. 이 콘텐츠는 편의와 일반적인 정보 제공을 위해서만 제공되었으며, 완전하거나 정확한 것으로 간주되어선 안 됩니다. 이 페이지의 영어 버전과 번역 간 모순이 있는 경우, 영어 버전이 우선적으로 적용됩니다. 이 페이지의 영어 버전을 확인하십시오.