All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hw/pci-bridge/cxl_upstream: Fix bandwidth entry base unit for SSLBIS
@ 2023-03-22 17:33 Dave Jiang
  2023-04-20 16:43 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Dave Jiang @ 2023-03-22 17:33 UTC (permalink / raw)
  To: jonathan.cameron; +Cc: linux-cxl

According to ACPI spec 6.5 5.2.28.4 System Locality Latency and Bandwidth
Information Structure, if the "Entry Base Unit" is 1024 for BW and the
matrix entry has the value of 100, the BW is 100 GB/s. So the
entry_base_unit should be changed from 1000 to 1024 given the comment notes
it's 16GB/s for .latency_bandwidth.

Fixes: 882877fc359d ("hw/pci-bridge/cxl-upstream: Add a CDAT table access DOE")
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
---
 hw/pci-bridge/cxl_upstream.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/pci-bridge/cxl_upstream.c b/hw/pci-bridge/cxl_upstream.c
index 2a00b708e560..d6f19c859a3d 100644
--- a/hw/pci-bridge/cxl_upstream.c
+++ b/hw/pci-bridge/cxl_upstream.c
@@ -297,7 +297,7 @@ static int build_cdat_table(CDATSubHeader ***cdat_table, void *priv)
                 .length = sslbis_size,
             },
             .data_type = HMATLB_DATA_TYPE_ACCESS_BANDWIDTH,
-            .entry_base_unit = 1000,
+            .entry_base_unit = 1024,
         },
     };
 



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-04-20 16:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-22 17:33 [PATCH] hw/pci-bridge/cxl_upstream: Fix bandwidth entry base unit for SSLBIS Dave Jiang
2023-04-20 16:43 ` Jonathan Cameron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.