レジスタ チップへのアクセスに、DDR3 シングルランク RDIMM が 1 つ、チップ セレクトが 2 つ必要です。ただし、下位ランクのチップ セレクトのみが機能的なチップ セレクトとして使用されます。SLOT0_FUNC_CS は、各スロットの機能チップ セレクトを記述します。DDR3 シングルランク RDIMM 以外の DIMM では、SLOT0_CONFIG は SLOT0_FUNC_CS と、SLOT1_CONFIG は SLOT1_FUNC_CS と同等です。
例 1: DDR3 RDIMM、シングルランク DIMM、シングル スロット システム
SLOT0_CONFIG = 8'b0000_0011 // describes CS0 and CS1 are connected to SLOT0.
SLOT1_CONFIG = 8'b0000_0000 // describes no DIMM is connected to SLOT1.
SLOT0_FUNC_CS = 8'b0000_0001 // describes CS0 is functional chip select. CS1 is not functional chip select and is only used for register chip access.
SLOT1_FUNC_CS = 8'b0000_0000 // describes there is no functional chip select in SLOT1.
SLOT0_ODD_CS = 8'b0000_0010 // describes CS1 bit corresponding to ODD functional chip select located in slot0.
SLOT1_ODD_CS = 8'b0000_0000 // describes there is no ODD functional chip select located in slot1.
例 2: DDR3 RDIMM、シングルランク DIMM、デュアル スロット システム
SLOT0_CONFIG = 8'b0000_0101 // describes CS0 and CS2 are connected to SLOT0.
SLOT1_CONFIG = 8'b0000_1010 // describes CS1 and CS3 are connected to SLOT1.
SLOT0_FUNC_CS = 8'b0000_0001 // describes CS0 is functional chip select. CS1 is not functional chip select and is only used for Register Chip access.
SLOT1_FUNC_CS = 8'b0000_0100 // describes CS2 is functional chip select. CS3 is not functional chip select and is only used for register chip access.
SLOT0_ODD_CS = 8'b0000_0010 // describes CS1 bit corresponding to ODD functional chip select located in slot0.
SLOT1_ODD_CS = 8'b0000_1000 // describes CS3 bit corresponding to ODD functional chip select located in slot1.