aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorYuquan Wang <wangyuquan1236@phytium.com.cn>2023-07-04 14:08:47 +0100
committerPeter Maydell <peter.maydell@linaro.org>2023-07-04 14:08:47 +0100
commit62c2b8760b8ec9316ea4f5f4c2ce2fdaed1359ee (patch)
tree7fb74405173d12c8805090977c7b6e9c00a7e625 /docs
parent587f8b333c8c66e8f3e54fe30ea8e88cc7d29d21 (diff)
downloadqemu-62c2b8760b8ec9316ea4f5f4c2ce2fdaed1359ee.zip
qemu-62c2b8760b8ec9316ea4f5f4c2ce2fdaed1359ee.tar.gz
qemu-62c2b8760b8ec9316ea4f5f4c2ce2fdaed1359ee.tar.bz2
hw/arm/sbsa-ref: use XHCI to replace EHCI
The current sbsa-ref cannot use EHCI controller which is only able to do 32-bit DMA, since sbsa-ref doesn't have RAM below 4GB. Hence, this uses XHCI to provide a usb controller with 64-bit DMA capablity instead of EHCI. We bump the platform version to 0.3 with this change. Although the hardware at the USB controller address changes, the firmware and Linux can both cope with this -- on an older non-XHCI-aware firmware/kernel setup the probe routine simply fails and the guest proceeds without any USB. (This isn't a loss of functionality, because the old USB controller never worked in the first place.) So we can call this a backwards-compatible change and only bump the minor version. Signed-off-by: Yuquan Wang <wangyuquan1236@phytium.com.cn> Message-id: 20230621103847.447508-2-wangyuquan1236@phytium.com.cn [PMM: tweaked commit message; add line to docs about what changes in platform version 0.3] Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'docs')
-rw-r--r--docs/system/arm/sbsa.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/system/arm/sbsa.rst b/docs/system/arm/sbsa.rst
index a8e0b53..bca6160 100644
--- a/docs/system/arm/sbsa.rst
+++ b/docs/system/arm/sbsa.rst
@@ -19,7 +19,7 @@ The ``sbsa-ref`` board supports:
- A configurable number of AArch64 CPUs
- GIC version 3
- System bus AHCI controller
- - System bus EHCI controller
+ - System bus XHCI controller
- CDROM and hard disc on AHCI bus
- E1000E ethernet card on PCIe bus
- Bochs display adapter on PCIe bus
@@ -68,3 +68,6 @@ Platform version changes:
0.2
GIC ITS information is present in devicetree.
+
+0.3
+ The USB controller is an XHCI device, not EHCI