いずれの DIMM 構成でも、各スロットに 8 ビットの番号を使用してロジック チップ セレクトが物理的なスロットにマッピングされます。各ビットは、スロット内のロジック チップ セレクト コネクティビティに対応します。
例 1: デュアルランク DIMM、デュアル スロット システム (合計 4 つのランク)
SLOT0_CONFIG = 8'b0000_0011 // describes CS0 and CS1 are connected to SLOT0.
SLOT1_CONFIG = 8'b0000_1100 // describes CS2 and CS3 are connected to SLOT1.
SLOT0_FUNC_CS = 8'b0000_0011 // describes CS0 and CS1 in SLOT0 are functional chip select.
SLOT1_FUNC_CS = 8'b0000_1100 // describes CS2 and CS3 in SLOT1 are functional chip select.
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.
例 2: シングル ランク DIMM、デュアル スロット システム (合計 2 つのランク)
SLOT0_CONFIG = 8'b0000_0001 // describes CS0 is connected to SLOT0.
SLOT1_CONFIG = 8'b0000_0010 // describes CS1 is connected to SLOT1.
SLOT0_FUNC_CS = 8'b0000_0001 // describes CS0 in SLOT0 is functional chip select.
SLOT1_FUNC_CS = 8'b0000_0010 // describes CS1 in SLOT1 is functional chip select.
SLOT0_ODD_CS = 8'b0000_0000 // describes there is no ODD functional chip select located in slot0.
SLOT1_ODD_CS = 8'b0000_0000 // describes there is no ODD functional chip select located in slot1.