mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-16 13:16:47 +02:00
64d3c7b515
See: https://github.com/Nitrokey/nethsm-grub/commits/nethsm-z790?since=2025-01-13&until=2025-01-13 And more generally, see branch: https://github.com/Nitrokey/nethsm-grub/commits/nethsm-z790 This brings in a few minor fixes, and also a not-so-minor fix: Add TT (transaction translation) handling for non-SuperSpeed devices in xhci.c More generally, this patchset will improve non-root hub support in the xHCI code. There is also a patch to work around a quirk on the MSI Z790-P mainboard, which I'm planning to add to Libreboot at a later date. Signed-off-by: Leah Rowe <leah@libreboot.org>
30 lines
822 B
Diff
30 lines
822 B
Diff
From fd92646af5b9a5cc027ce0bd6afa5cc7bc8f46a3 Mon Sep 17 00:00:00 2001
|
|
From: Patrick Rudolph <patrick.rudolph@9elements.com>
|
|
Date: Mon, 7 Dec 2020 08:41:22 +0100
|
|
Subject: [PATCH 15/26] usb: Add enum for xHCI
|
|
|
|
Will be used in future patches.
|
|
|
|
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
|
|
---
|
|
include/grub/usb.h | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/include/grub/usb.h b/include/grub/usb.h
|
|
index 688c11f6d..ea6ee8c2c 100644
|
|
--- a/include/grub/usb.h
|
|
+++ b/include/grub/usb.h
|
|
@@ -51,7 +51,8 @@ typedef enum
|
|
GRUB_USB_SPEED_NONE,
|
|
GRUB_USB_SPEED_LOW,
|
|
GRUB_USB_SPEED_FULL,
|
|
- GRUB_USB_SPEED_HIGH
|
|
+ GRUB_USB_SPEED_HIGH,
|
|
+ GRUB_USB_SPEED_SUPER
|
|
} grub_usb_speed_t;
|
|
|
|
typedef int (*grub_usb_iterate_hook_t) (grub_usb_device_t dev, void *data);
|
|
--
|
|
2.39.5
|
|
|