Message ID | 20250314113708.759808-1-fabio.m.de.francesco@linux.intel.com |
---|---|
Headers | show |
Series | cxl/core: Enable Region creation on x86 with Low Mem Hole | expand |
On Fri, Mar 14, 2025 at 12:36:29PM +0100, Fabio M. De Francesco wrote: > The CXL Fixed Memory Window Structure (CFMWS) describes zero or more Host > Physical Address (HPA) windows that are associated with each CXL Host > Bridge. Each window represents a contiguous HPA that may be interleaved > with one or more targets (CXL v3.1 - 9.18.1.3). > > The Low Memory Hole (LMH) of x86 is a range of addresses of physical low > memory to which systems cannot send transactions. On those systems, BIOS > publishes CFMWS which communicate the active System Physical Address (SPA) > ranges that map to a subset of the Host Physical Address (HPA) ranges. The > SPA range trims out the hole, and capacity in the endpoint is lost with no > SPA to map to CXL HPA in that hole. > > In the early stages of CXL Regions construction and attach on platforms > with Low Memory Holes, the driver fails and returns an error because it > expects that the CXL Endpoint Decoder range is a subset of the Root > Decoder's (SPA >= HPA). On x86 with LMH's, it happens that SPA < HPA. > > Therefore, detect x86 Low Memory Holes, match CXL Root and Endpoint > Decoders or already made CXL Regions and Decoders to allow the > construction of new CXL Regions and the attachment of Endpoint Decoders, > even if SPA < HPA. If needed because of LMH's, adjust the Endpoint Decoder > range end to match Root Decoder's. I think the dpa_res field of the endpoint decoder needs adjusting. After the region is setup, the cxled->dpa_res has the unadjusted value and that leads to region warning and address translation failure because the driver 'thinks' that DPA is within a region, but when it tries to translate to an HPA in that region, it fails. Here's where I looked at it: using the cxl-test LMH auto-region (nice!) each endpoint decoder is programmed to contribute 512MB to the 1024MB region. The LMH adjustment shrunk the region to 768MB, so each endpoint is only contributing 384MB to the region. DPA->HPA address translations of DPA addresses in the 384->512 gap cause a problem. The driver will needlessly warn that they are in a region for any poison inject or clear, and will fail address translations for any poison, general media or dram event. I think this should fail in region.c: __cxl_dpa_to_region() if (dpa > cxled->dpa_res->end || dpa < cxled->dpa_res->start) return 0; For that to fail, LMH code needs to adjust cxled->dpa_res too. To test is using clear_poison you can: # echo 536866816 > /sys/kernel/debug/cxl/mem1/clear_poison (536866816 = 512MB - 4096) [ ] cxl_core:__cxl_dpa_to_region:2860: cxl decoder18.0: dpa:0x1ffff000 mapped in region:region0 [ ] cxl_core:cxl_dpa_to_hpa:2963: cxl_region region0: Addr trans fail: hpa 0x3ff04fffe000 not in region snip >
On Fri, Mar 14, 2025 at 12:36:29PM +0100, Fabio M. De Francesco wrote: > The CXL Fixed Memory Window Structure (CFMWS) describes zero or more Host > Physical Address (HPA) windows that are associated with each CXL Host > Bridge. Each window represents a contiguous HPA that may be interleaved > with one or more targets (CXL v3.1 - 9.18.1.3). > > The Low Memory Hole (LMH) of x86 is a range of addresses of physical low > memory to which systems cannot send transactions. On those systems, BIOS > publishes CFMWS which communicate the active System Physical Address (SPA) > ranges that map to a subset of the Host Physical Address (HPA) ranges. The > SPA range trims out the hole, and capacity in the endpoint is lost with no > SPA to map to CXL HPA in that hole. > > In the early stages of CXL Regions construction and attach on platforms > with Low Memory Holes, the driver fails and returns an error because it > expects that the CXL Endpoint Decoder range is a subset of the Root > Decoder's (SPA >= HPA). On x86 with LMH's, it happens that SPA < HPA. > > Therefore, detect x86 Low Memory Holes, match CXL Root and Endpoint > Decoders or already made CXL Regions and Decoders to allow the > construction of new CXL Regions and the attachment of Endpoint Decoders, > even if SPA < HPA. If needed because of LMH's, adjust the Endpoint Decoder > range end to match Root Decoder's. Unless dev_dbg() is on, LMH handling won't be apparent. How about adding a dev_info() that informs the user that a region was adjusted to account for a LMH. I'm foreseeing looking at logs and divining a LMH, when a simple log message would be a nice shortcut. CXL subsystem is quiet with only 8 dev_info()'s, so if this breaks some vow of silence, nevermind :) -snip >