ALIX and AMD Geode LX
This paper contains research about Geode LX CAR and whole effort to implement
EARLY_CBMEM_INIT
in coreboot for PC Engines ALIX platforms.
Table of Contents
List of abbreviations
SDM
- Software Developer ManualMTRR
- Memory Type Range RegisterMSR
- Model Specific RegisterCAR
- Cache-as-RAMUC
- Strong UncacheableUC-
- UncacheableWC
- Write CombiningWT
- Write ThroughWB
- Write BackWP
- Write ProtectedSMM
- System Management ModeDMM
- Debug Management Mode
Memory initialisation
Current ALIX platforms support in coreboot (state at the day of writing this
document) lets user build a firmware capable to boot the platform without
issues. However... With coreboot 4.7 version, new standards has been introduced
which every platform must meet to be supported (to stay in the main branch). One
of these standards (requirements) is EARLY_CBMEM_INIT
to be used by platform.
EARLY_CBMEM_INIT
allows to save log to cbmem early in romstage, but that's not
all about it. To get all benefits of EARLY_CBMEM_INIT
, the main memory need to
be initialised and addressable in romstage. Unfortunately ALIX platforms
initialize memory in ramstage, which breaks the model proposed by coreboot
project.
In order to achieve the goal (move platform to EARLY_CBMEM_INIT
), deeper
understading of caching, memory initialisation and CAR is needed. Below
sections describes steps needed to reach the goal.
Memory types and caching policies
Intel SDM is a good source of knowledge about caching and memory types. Detialed description is available in Intel SDM vol 3A Section 11.3.
In brief Intel describes 6 memory types which are used in Intel's hardware:
UC
- System memory locations are not cached. All reads and writes appear on the system bus and are executed in program order without reordering.UC-
- Has same characteristics as the strong uncacheable (UC) memory type, except that this memory type can be overridden by programming the MTRRs for the WC memory typeWC
- System memory locations are not cached (as with uncacheable memory) and coherency is not enforced by the processor’s bus coherency protocol. Speculative reads are allowed. Writes may be delayed and combined in the write combining buffer (WC buffer) to reduce memory accesses. If the WC buffer is partially filled, the writes may be delayed until the next occurrence of a serializing eventWT
- Writes and reads to and from system memory are cached. Reads come from cache lines on cache hits; read misses cause cache fills. Speculative reads are allowed. All writes are written to a cache line (when possible) and through to system memory. When writing through to memory, invalid cache lines are never filled, and valid cache lines are either filled or invalidated. Write combining is allowed.WB
- Writes and reads to and from system memory are cached. Reads come from cache lines on cache hits; read misses cause cache fills. Speculative reads are allowed. Write misses cause cache line fills, and writes are performed entirely in the cache, when possible. Write combining is allowed. The write-back memory type reduces bus traffic by eliminating many unnecessary writes to system memory. Writes to a cache line are not immediately forwarded to system memory; instead, they are accumulated in the cache. The modified cache lines are written to system memory later, when a write-back operation is performed.WP
- Reads come from cache lines when possible, and read misses cause cache fills. Writes are propagated to the system bus and cause corresponding cache lines on all processors on the bus to be invalidated. Speculative reads are allowed.
Section 11.2 describes the terms cache line fill
, cache hit
and write hit
.
MTRRS
MTRRs are registers responsible for setting memory type for given address ranges of physical memory. They are divided into two groups:
- fixed MTRRs
- variable MTRRs
MTRR availability if identified by bit 12 in EDX register after issuing CPUID
instruction. Additional information about MTRRs are stored in IA32_MTRRCAP
MSR
which is read-only. It defines variable MTRRs count, fixed MTRRs count etc.
All MTRRs and IA32_MTRRCAP
are described in Section 11.11 in Intel SDM vol 3A
and subsequent subsections.
Fixed MTRRs
Fixed MTRR allows to set memory type for region handled by corresponding MTRR. There are 3 types of fixed MTRRs based on address range covered:
- Register
IA32_MTRR_FIX64K_00000
— Maps the 512-KByte address range from 0H to 7FFFFH. This range is divided into eight 64-KByte sub-ranges - Registers
IA32_MTRR_FIX16K_80000
andIA32_MTRR_FIX16K_A0000
— Maps the two 128-KByte address ranges from 80000H to BFFFFH. This range is divided into sixteen 16-KByte sub-ranges, 8 ranges per register. - Registers
IA32_MTRR_FIX4K_C0000
throughIA32_MTRR_FIX4K_F8000
— Maps eight 32-KByte address ranges from C0000H to FFFFFH. This range is divided into sixty-four 4-KByte sub-ranges, 8 ranges per register.
These registers can set memory type only for a fixed
address range.
Variable MTRRs
IA32_MTRRCAP
MSR contains number of variable ranges supported by CPU (this
number is also an upper limit of variable MTRRs). These MTRRs allow to define
not only memory type, but also the address range it will be applied to.
The range is defined by programming BASE and MASK registers.
NOTE: all MTRRS must be consistent across all CPUs in multi-processor systems.
Geode LX MTRRs
Geode LX registers does not have typical MTRRs as described in Intel SDM. Do not be surprised, it is quite old processor and created by AMD. It is obvious that registers will differ. However there is a set of MSRs which serve the same purpose as MTRRs.
The equivalents of fixed MTRRs are described below.
RCONF_A0_BF_MSR
- is a regions configuration register for address range between 0xA0000 and 0xBFFFF (128 KByte). This range is divided into eight 16-KByte sub-ranges. Equivalent ofIA32_MTRR_FIX16K_A0000
RCONF_C0_DF_MSR
- same as above for range 0xC0000 and 0xDFFFF (128 KByte). There is no equivalent in Intel SDM (Intel's implementation for range 0xC0000 - 0xDFFFF is programmed viaIA32_MTRR_FIX4K_xxxxx
which are 32=KByte address range registers with eight 4-Kbyte subranges)RCONF_E0_FF_MSR
- same as above for range 0xE0000 and 0xFFFFF (128 KByte). No equivalents, this range is covered byIA32_MTRR_FIX4K_xxxxx
registers in Intel's implementations.
The equivalents of variable MTRRs are RCONF0_MSR
through RCONF7_MSR
. Eight
equivalents to Intel's variable MTRRs are available in Geode LX processor.
Fields defined by these registers: top of range, range base address,
enable/disable bit and 8 bits for region properties.
Additionally there are separate range register for SMM (RCONF_SMM_MSR
) and DMM
(RCONF_DMM_MSR
). They are defining SMM/DMM base address, top address,
enable/disable bit and region properties when region is active or inactive
(8 bits for each state).
Region properties are described in detail in Geode LX databook and seem to be different than Intel's standard. Region properties are defined by 8 bits (64bit MSR divided into eight sub-rnages, 8 bits for each subrange properties).
Bit | Property |
---|---|
7 | Reserved |
6 | Reserved |
5 | WS - Write-serialize |
4 | WC - Write-ombine |
3 | WT - Write-hrough |
2 | WP - Write-rotect |
1 | WA - Write-allocate |
0 | CD - Cache Disable |
Based on the setting, the properties can have different impact on read and write operations. AMD's implementations allow to set multiple bits allowing to set "memory subtypes" (page 170 of Geode LX databook):
Property Setting | Read Operation behaviour |
---|---|
WS=0 and CD=0, rest don't care | Cacheable. Read misses cause a cache line to be allocated. |
WS=1 and CD=0, rest don't care | Undefined State. Unpredictable behavior occurs. |
CD=1, rest don't care | Uncacheable. Reads are sent unmodified to the bus. Equivalent to Intel's UC and UC- |
Property Setting | Write Operation behaviour |
---|---|
WP=1, rest don't care | Write-protected. Writes to the region are discarded. Equivalent to Intel's WP |
WS=1, rest don't care | Undefined. Unpredictable behavior occurs. |
WC=1 and CD=0, rest don't care | Undefined. Unpredictable behavior occurs. |
WA=1 and CD=1, rest don't care | Undefined. Unpredictable behavior occurs. |
00h | Write-back Cacheable. Write misses are sent to the bus, a cache line is not allocated on a write miss. |
02h | Write-back Cacheable/Write-allocate. Write misses allocate a line in the cache. Equivalent to Intel's WB |
08h or 0Ah | Write-through cacheable. Write misses do not allocate a line in the cache. Write hits update the cache but do not mark the line as dirty. All writes are sent to the bus. Similar to Intel's WT |
01h | Uncacheable. All writes are sent to the bus in strict program order without any combining. Write hits still update the cache. Equivalent to UC and UC- |
21h | Uncacheable as above. Additionally: Write-serialize. Limit the number of outstanding writes to the value of the WSREQ field in DM_CONFIG0_MSR |
11h | Write-combined (uncacheable). Writes to the same cache line may be combined. Multiple writes to the same byte results in a single write with the last value specified. Write order is not preserved. Similar to Intel's WC |
31h | Write-combined (uncacheable) as above. Additionally: Write-serialize . Limit the number of outstanding writes to the value of the WSREQ field in DM_CONFIG0_MSR |
19h | Write-burstable (uncacheable). Writes to the same cache line are combined as long as they are to increasing addresses and do not access a previously written byte. Multiple writes to the same byte results in multiple bytes on the bus. |
31h | Write-burstable (uncacheable) as above. Additionally: Write-serialize . Limit the number of outstanding writes to the value of the WSREQ field in DM_CONFIG0_MSR |