mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-23 08:26:23 -06:00
148dfd4d54
This was added to the generic assign_address() method, but the XHCI driver overrides that.
1177 lines
43 KiB
C
1177 lines
43 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
// Copyright (C) 2021-2022 Martin Whitaker.
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "heap.h"
|
|
#include "memrw32.h"
|
|
#include "memsize.h"
|
|
#include "usb.h"
|
|
#include "vmem.h"
|
|
|
|
#include "string.h"
|
|
#include "unistd.h"
|
|
|
|
#include "xhci.h"
|
|
|
|
#define QEMU_WORKAROUND 1
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Constants
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Values defined by the XHCI specification.
|
|
|
|
// Basic limits
|
|
|
|
#define XHCI_MAX_PORTS 255
|
|
#define XHCI_MAX_SLOTS 255
|
|
|
|
#define XHCI_MAX_CONTEXT_SIZE 64
|
|
|
|
#define XHCI_MAX_IP_CONTEXT_SIZE (33 * XHCI_MAX_CONTEXT_SIZE)
|
|
#define XHCI_MAX_OP_CONTEXT_SIZE (32 * XHCI_MAX_CONTEXT_SIZE)
|
|
|
|
// Extended capability ID values
|
|
|
|
#define XHCI_EXT_CAP_LEGACY_SUPPORT 1
|
|
#define XHCI_EXT_CAP_SUPPORTED_PROTOCOL 2
|
|
|
|
// USB Command register
|
|
|
|
#define XHCI_USBCMD_R_S 0x00000001 // Run/Stop
|
|
#define XHCI_USBCMD_HCRST 0x00000002 // Host Controller Reset
|
|
#define XHCI_USBCMD_INTE 0x00000004 // Interrupter Enable
|
|
#define XHCI_USBCMD_HSEE 0x00000008 // Host System Error Enable
|
|
|
|
// USB Status register
|
|
|
|
#define XHCI_USBSTS_HCH 0x00000001 // Host Controller Halted
|
|
#define XHCI_USBSTS_HSE 0x00000004 // Host System Error
|
|
#define XHCI_USBSTS_CNR 0x00000800 // Controller Not Ready
|
|
|
|
// Port Status and Control register
|
|
|
|
#define XHCI_PORT_SC_CCS 0x00000001 // Current Connect Status
|
|
#define XHCI_PORT_SC_PED 0x00000002 // Port Enable/Disable
|
|
#define XHCI_PORT_SC_OCA 0x00000004 // Over-Current
|
|
#define XHCI_PORT_SC_PR 0x00000010 // Port Reset
|
|
#define XHCI_PORT_SC_PLS 0x000001e0 // Port Link State
|
|
#define XHCI_PORT_SC_PP 0x00000200 // Port Power
|
|
#define XHCI_PORT_SC_PS 0x00003c00 // Port Speed
|
|
#define XHCI_PORT_SC_PRC 0x00200000 // Port Reset Change
|
|
|
|
#define XHCI_PORT_SC_PS_OFFSET 10 // first bit of Port Speed
|
|
|
|
// Transfer Request Block data structure
|
|
|
|
#define XHCI_TRB_ENT (1 << 1) // Evaluate Next TRB
|
|
#define XHCI_TRB_TC (1 << 1) // Toggle Cycle
|
|
#define XHCI_TRB_ISP (1 << 2) // Interrupt on Short Packet
|
|
#define XHCI_TRB_NS (1 << 3) // No Snoop
|
|
#define XHCI_TRB_CH (1 << 4) // Chain bit
|
|
#define XHCI_TRB_IOC (1 << 5) // Interrupt on Completion
|
|
#define XHCI_TRB_IDT (1 << 6) // Immediate Data
|
|
#define XHCI_TRB_BEI (1 << 9) // Block Event Interrupt
|
|
#define XHCI_TRB_BSR (1 << 9) // Block Set Address Request
|
|
|
|
#define XHCI_TRB_TYPE (63 << 10)
|
|
#define XHCI_TRB_NORMAL (1 << 10)
|
|
#define XHCI_TRB_SETUP_STAGE (2 << 10)
|
|
#define XHCI_TRB_DATA_STAGE (3 << 10)
|
|
#define XHCI_TRB_STATUS_STAGE (4 << 10)
|
|
#define XHCI_TRB_LINK (6 << 10)
|
|
#define XHCI_TRB_ENABLE_SLOT (9 << 10)
|
|
#define XHCI_TRB_DISABLE_SLOT (10 << 10)
|
|
#define XHCI_TRB_ADDRESS_DEVICE (11 << 10)
|
|
#define XHCI_TRB_CONFIGURE_ENDPOINT (12 << 10)
|
|
#define XHCI_TRB_EVALUATE_CONTEXT (13 << 10)
|
|
#define XHCI_TRB_NOOP (23 << 10)
|
|
#define XHCI_TRB_TRANSFER_EVENT (32 << 10)
|
|
#define XHCI_TRB_COMMAND_COMPLETE (33 << 10)
|
|
|
|
#define XHCI_TRB_TRT_NO_DATA (0 << 16) // Transfer Type (Setup Stage TRB)
|
|
#define XHCI_TRB_TRT_OUT (2 << 16) // Transfer Type (Setup Stage TRB)
|
|
#define XHCI_TRB_TRT_IN (3 << 16) // Transfer Type (Setup Stage TRB)
|
|
|
|
#define XHCI_TRB_DIR_OUT (0 << 16) // Direction (Data/Status Stage TRB)
|
|
#define XHCI_TRB_DIR_IN (1 << 16) // Direction (Data/Status Stage TRB)
|
|
|
|
#define XHCI_TRB_USB2_SLOT (0 << 16) // Slot Type (Enable Slot TRB)
|
|
#define XHCI_TRB_USB3_SLOT (0 << 16) // Slot Type (Enable Slot TRB)
|
|
|
|
// Add Context flags
|
|
|
|
#define XHCI_CONTEXT_A(n) (1 << (n))
|
|
|
|
// Port Speed values
|
|
|
|
#define XHCI_FULL_SPEED 1
|
|
#define XHCI_LOW_SPEED 2
|
|
#define XHCI_HIGH_SPEED 3
|
|
|
|
// Endpoint Type values
|
|
|
|
#define XHCI_EP_NOT_VALID 0
|
|
#define XHCI_EP_ISOCH_OUT 1
|
|
#define XHCI_EP_BULK_OUT 2
|
|
#define XHCI_EP_INTERRUPT_OUT 3
|
|
#define XHCI_EP_CONTROL 4
|
|
#define XHCI_EP_ISOCH_IN 5
|
|
#define XHCI_EP_BULK_IN 6
|
|
#define XHCI_EP_INTERRUPT_IN 7
|
|
|
|
// Event Completion Code values
|
|
|
|
#define XHCI_EVENT_CC_SUCCESS 1
|
|
#define XHCI_EVENT_CC_TIMEOUT 191 // specific to this driver
|
|
|
|
// Values specific to this driver.
|
|
|
|
#define PORT_TYPE_PST_MASK 0x1f // Protocol Slot Type mask
|
|
#define PORT_TYPE_USB2 0x40
|
|
#define PORT_TYPE_USB3 0x80
|
|
|
|
#define MAX_KEYBOARDS 8 // per host controller
|
|
|
|
#define WS_CR_SIZE 8 // TRBs (multiple of 4 to maintain 64 byte alignment)
|
|
#define WS_ER_SIZE 16 // TRBs (multiple of 4 to maintain 64 byte alignment)
|
|
#define WS_ERST_SIZE 4 // entries (multiple of 4 to maintain 64 byte alignment)
|
|
|
|
#define EP_TR_SIZE 8 // TRBs (multiple of 4 to maintain 64 byte alignment)
|
|
|
|
#define MILLISEC 1000 // in microseconds
|
|
|
|
#define DEVICE_WS_SIZE (XHCI_MAX_OP_CONTEXT_SIZE + 2 * sizeof(ep_tr_t))
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Types
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Register sets defined by the XHCI specification.
|
|
|
|
typedef struct {
|
|
uint8_t cap_length;
|
|
uint8_t reserved;
|
|
uint16_t hci_version;
|
|
uint32_t hcs_params1;
|
|
uint32_t hcs_params2;
|
|
uint32_t hcs_params3;
|
|
uint32_t hcc_params1;
|
|
uint32_t db_offset;
|
|
uint32_t rts_offset;
|
|
uint32_t hcc_params2;
|
|
} xhci_cap_regs_t;
|
|
|
|
typedef volatile struct {
|
|
uint32_t sc;
|
|
uint32_t pmsc;
|
|
uint32_t li;
|
|
uint32_t hlpmc;
|
|
} xhci_port_regs_t;
|
|
|
|
typedef volatile struct {
|
|
uint32_t usb_command;
|
|
uint32_t usb_status;
|
|
uint32_t page_size;
|
|
uint32_t reserved1[2];
|
|
uint32_t dn_control;
|
|
uint64_t cr_control;
|
|
uint32_t reserved2[4];
|
|
uint64_t dcbaap;
|
|
uint32_t config;
|
|
uint32_t reserved3[241];
|
|
xhci_port_regs_t port_regs[];
|
|
} xhci_op_regs_t;
|
|
|
|
typedef volatile struct {
|
|
uint32_t management;
|
|
uint32_t moderation;
|
|
uint32_t erst_size;
|
|
uint32_t reserved;
|
|
uint64_t erst_addr;
|
|
uint64_t erdp;
|
|
} xhci_int_regs_t;
|
|
|
|
typedef volatile struct {
|
|
uint32_t mf_index;
|
|
uint32_t reserved[7];
|
|
xhci_int_regs_t ir[];
|
|
} xhci_rt_regs_t;
|
|
|
|
typedef volatile uint32_t xhci_db_reg_t;
|
|
|
|
// Extended capability structures defined by the XHCI specification.
|
|
|
|
typedef struct {
|
|
uint8_t id;
|
|
uint8_t next_offset;
|
|
uint8_t id_specific[2];
|
|
} xhci_ext_cap_t;
|
|
|
|
typedef volatile struct {
|
|
uint8_t id;
|
|
uint8_t next_offset;
|
|
uint8_t bios_owns;
|
|
uint8_t host_owns;
|
|
uint32_t ctrl_stat;
|
|
} xhci_legacy_support_t;
|
|
|
|
typedef struct {
|
|
uint8_t id;
|
|
uint8_t next_offset;
|
|
uint8_t revision_minor;
|
|
uint8_t revision_major;
|
|
uint32_t name_string;
|
|
uint8_t port_offset;
|
|
uint8_t port_count;
|
|
uint16_t params1;
|
|
uint32_t params2;
|
|
uint32_t speed_id[];
|
|
} xhci_supported_protocol_t;
|
|
|
|
// Data structures defined by the XHCI specification.
|
|
|
|
typedef struct {
|
|
uint32_t drop_context_flags;
|
|
uint32_t add_context_flags;
|
|
uint32_t reserved1[5];
|
|
uint8_t config_value;
|
|
uint8_t interface_num;
|
|
uint8_t alternate_setting;
|
|
uint8_t reserved2;
|
|
} xhci_ctrl_context_t __attribute__ ((aligned (16)));
|
|
|
|
typedef struct {
|
|
uint32_t params1;
|
|
uint16_t max_exit_latency;
|
|
uint8_t root_hub_port_num;
|
|
uint8_t num_ports;
|
|
uint8_t parent_slot_id;
|
|
uint8_t parent_port_num;
|
|
uint16_t params2;
|
|
uint8_t usb_dev_addr;
|
|
uint8_t reserved1;
|
|
uint8_t reserved2;
|
|
uint8_t slot_state;
|
|
uint32_t reserved3[4];
|
|
} xhci_slot_context_t __attribute__ ((aligned (16)));
|
|
|
|
typedef struct {
|
|
uint8_t state;
|
|
uint8_t params1;
|
|
uint8_t interval;
|
|
uint8_t max_esit_payload_h;
|
|
uint8_t params2;
|
|
uint8_t max_burst_size;
|
|
uint16_t max_packet_size;
|
|
uint64_t tr_dequeue_ptr;
|
|
uint16_t average_trb_length;
|
|
uint16_t max_esit_payload_l;
|
|
uint32_t reserved[3];
|
|
} xhci_ep_context_t __attribute__ ((aligned (16)));
|
|
|
|
typedef struct {
|
|
xhci_ctrl_context_t ctrl;
|
|
xhci_slot_context_t slot;
|
|
xhci_ep_context_t ep[31];
|
|
} xhci_input_context_t __attribute__ ((aligned (16)));
|
|
|
|
typedef volatile struct {
|
|
uint64_t params1;
|
|
uint32_t params2;
|
|
uint32_t control;
|
|
} xhci_trb_t __attribute__ ((aligned (16)));
|
|
|
|
typedef volatile struct {
|
|
uint64_t segment_addr;
|
|
uint16_t segment_size;
|
|
uint16_t reserved1;
|
|
uint32_t reserved2;
|
|
} xhci_erst_entry_t __attribute__ ((aligned (16)));
|
|
|
|
// Data structures specific to this driver.
|
|
|
|
typedef volatile struct {
|
|
xhci_trb_t tr[EP_TR_SIZE];
|
|
uint32_t enqueue_state;
|
|
uint32_t padding[15];
|
|
} ep_tr_t __attribute__ ((aligned (64)));
|
|
|
|
typedef struct {
|
|
hcd_workspace_t base_ws;
|
|
|
|
// System memory data structures used by the host controller.
|
|
xhci_trb_t cr [WS_CR_SIZE] __attribute__ ((aligned (64))); // command ring
|
|
xhci_trb_t er [WS_ER_SIZE] __attribute__ ((aligned (64))); // event ring
|
|
xhci_erst_entry_t erst [WS_ERST_SIZE] __attribute__ ((aligned (64))); // event ring segment table
|
|
|
|
// Keyboard data transfer rings
|
|
ep_tr_t kbd_tr [MAX_KEYBOARDS];
|
|
|
|
// Keyboard data transfer buffers.
|
|
hid_kbd_rpt_t kbd_rpt [MAX_KEYBOARDS];
|
|
|
|
// Saved keyboard reports.
|
|
hid_kbd_rpt_t prev_kbd_rpt[MAX_KEYBOARDS];
|
|
|
|
// Pointers to the host controller registers.
|
|
xhci_op_regs_t *op_regs;
|
|
xhci_rt_regs_t *rt_regs;
|
|
xhci_db_reg_t *db_regs;
|
|
|
|
// Device context information.
|
|
uint64_t *device_context_index;
|
|
size_t context_size;
|
|
|
|
// Host controller TRB ring state (cycle and index).
|
|
uint32_t cr_enqueue_state;
|
|
uint32_t er_dequeue_state;
|
|
|
|
// Input context for controller commands.
|
|
uintptr_t input_context_addr;
|
|
|
|
// Transient values used during device enumeration and configuration.
|
|
uintptr_t initial_heap_mark;
|
|
uintptr_t control_ep_tr_addr;
|
|
uintptr_t interrupt_ep_tr_addr;
|
|
|
|
// Keyboard slot ID lookup table
|
|
uint8_t kbd_slot_id [MAX_KEYBOARDS];
|
|
|
|
// Keyboard endpoint ID lookup table
|
|
uint8_t kbd_ep_id [MAX_KEYBOARDS];
|
|
} workspace_t __attribute__ ((aligned (64)));
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Private Functions
|
|
//------------------------------------------------------------------------------
|
|
|
|
static size_t round_up(size_t size, size_t alignment)
|
|
{
|
|
return (size + alignment - 1) & ~(alignment - 1);
|
|
}
|
|
|
|
// The read64 and write64 functions provided here provide compatibility with both
|
|
// 32-bit and 64-bit hosts and with both 32-bit and 64-bit XHCI controllers.
|
|
|
|
static uint64_t read64(const volatile uint64_t *ptr)
|
|
{
|
|
uint32_t val_l = read32((const volatile uint32_t *)ptr + 0);
|
|
uint32_t val_h = read32((const volatile uint32_t *)ptr + 1);
|
|
return (uint64_t)val_h << 32 | (uint64_t)val_l;
|
|
}
|
|
|
|
static void write64(volatile uint64_t *ptr, uint64_t val)
|
|
{
|
|
write32((volatile uint32_t *)ptr + 0, (uint32_t)(val >> 0));
|
|
write32((volatile uint32_t *)ptr + 1, (uint32_t)(val >> 32));
|
|
}
|
|
|
|
#ifdef QEMU_WORKAROUND
|
|
static void memcpy32(void *dst, const void *src, size_t size)
|
|
{
|
|
uint32_t *dst_word = (uint32_t *)dst;
|
|
uint32_t *src_word = (uint32_t *)src;
|
|
size_t num_words = size / sizeof(uint32_t);
|
|
for (size_t i = 0; i < num_words; i++) {
|
|
write32(&dst_word[i], read32(&src_word[i]));
|
|
}
|
|
}
|
|
#endif
|
|
|
|
static usb_speed_t xhci_to_usb_speed(int xhci_speed)
|
|
{
|
|
switch (xhci_speed) {
|
|
case XHCI_LOW_SPEED:
|
|
return USB_SPEED_LOW;
|
|
case XHCI_FULL_SPEED:
|
|
return USB_SPEED_FULL;
|
|
case XHCI_HIGH_SPEED:
|
|
return USB_SPEED_HIGH;
|
|
default:
|
|
return USB_SPEED_UNKNOWN;
|
|
}
|
|
}
|
|
|
|
static int usb_to_xhci_speed(usb_speed_t usb_speed)
|
|
{
|
|
switch (usb_speed) {
|
|
case USB_SPEED_LOW:
|
|
return XHCI_LOW_SPEED;
|
|
case USB_SPEED_FULL:
|
|
return XHCI_FULL_SPEED;
|
|
case USB_SPEED_HIGH:
|
|
return XHCI_HIGH_SPEED;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static int xhci_ep_interval(int config_interval, usb_speed_t device_speed)
|
|
{
|
|
if (device_speed < USB_SPEED_HIGH) {
|
|
int log2_interval = 7;
|
|
while ((1 << log2_interval) > config_interval) {
|
|
log2_interval--;
|
|
}
|
|
return 3 + log2_interval;
|
|
} else {
|
|
if (config_interval >= 1 && config_interval <= 16) {
|
|
return config_interval - 1;
|
|
} else {
|
|
return 3;
|
|
}
|
|
}
|
|
}
|
|
|
|
static bool reset_host_controller(xhci_op_regs_t *op_regs)
|
|
{
|
|
write32(&op_regs->usb_command, read32(&op_regs->usb_command) | XHCI_USBCMD_HCRST);
|
|
|
|
usleep(1*MILLISEC); // some controllers need time to recover from reset
|
|
|
|
return wait_until_clr(&op_regs->usb_command, XHCI_USBCMD_HCRST, 1000*MILLISEC)
|
|
&& wait_until_clr(&op_regs->usb_status, XHCI_USBSTS_CNR, 1000*MILLISEC);
|
|
}
|
|
|
|
static bool start_host_controller(xhci_op_regs_t *op_regs)
|
|
{
|
|
write32(&op_regs->usb_command, read32(&op_regs->usb_command) | XHCI_USBCMD_R_S);
|
|
return wait_until_clr(&op_regs->usb_status, XHCI_USBSTS_HCH, 1000*MILLISEC);
|
|
}
|
|
|
|
static bool halt_host_controller(xhci_op_regs_t *op_regs)
|
|
{
|
|
write32(&op_regs->usb_command, read32(&op_regs->usb_command) & ~XHCI_USBCMD_R_S);
|
|
return wait_until_set(&op_regs->usb_status, XHCI_USBSTS_HCH, 1000*MILLISEC);
|
|
}
|
|
|
|
static int get_xhci_device_speed(xhci_op_regs_t *op_regs, int port_idx)
|
|
{
|
|
return (read32(&op_regs->port_regs[port_idx].sc) & XHCI_PORT_SC_PS) >> XHCI_PORT_SC_PS_OFFSET;
|
|
}
|
|
|
|
static bool reset_xhci_port(xhci_op_regs_t *op_regs, int port_idx)
|
|
{
|
|
write32(&op_regs->port_regs[port_idx].sc, XHCI_PORT_SC_PP | XHCI_PORT_SC_PR | XHCI_PORT_SC_PRC);
|
|
return wait_until_set(&op_regs->port_regs[port_idx].sc, XHCI_PORT_SC_PRC, 1000*MILLISEC);
|
|
}
|
|
|
|
static void disable_xhci_port(xhci_op_regs_t *op_regs, int port_idx)
|
|
{
|
|
write32(&op_regs->port_regs[port_idx].sc, XHCI_PORT_SC_PP | XHCI_PORT_SC_PED);
|
|
(void)wait_until_clr(&op_regs->port_regs[port_idx].sc, XHCI_PORT_SC_PED, 1000*MILLISEC);
|
|
}
|
|
|
|
static void ring_host_controller_doorbell(xhci_db_reg_t *db_regs)
|
|
{
|
|
write32(&db_regs[0], 0);
|
|
}
|
|
|
|
static void ring_device_doorbell(xhci_db_reg_t *db_regs, int slot_id, int db_target)
|
|
{
|
|
write32(&db_regs[slot_id], db_target);
|
|
}
|
|
|
|
static uint32_t event_type(const xhci_trb_t *event)
|
|
{
|
|
return event->control & XHCI_TRB_TYPE;
|
|
}
|
|
|
|
static int event_cc(const xhci_trb_t *event)
|
|
{
|
|
return event->params2 >> 24;
|
|
}
|
|
|
|
static int event_slot_id(const xhci_trb_t *event)
|
|
{
|
|
return event->control >> 24;
|
|
}
|
|
|
|
static int event_ep_id(const xhci_trb_t *event)
|
|
{
|
|
return (event->control >> 16) & 0x1f;
|
|
}
|
|
|
|
static uint32_t enqueue_trb(xhci_trb_t *trb_ring, uint32_t ring_size, uint32_t enqueue_state,
|
|
uint32_t control, uint64_t params1, uint32_t params2)
|
|
{
|
|
// The ring enqueue state records the current cycle and the next free slot.
|
|
uint32_t cycle = enqueue_state / ring_size;
|
|
uint32_t index = enqueue_state % ring_size;
|
|
|
|
// If at the last slot, insert a Link TRB and start a new cycle.
|
|
if (index == (ring_size - 1)) {
|
|
write64(&trb_ring[index].params1, (uintptr_t)trb_ring);
|
|
write32(&trb_ring[index].params2, 0);
|
|
write32(&trb_ring[index].control, XHCI_TRB_LINK | XHCI_TRB_TC | cycle);
|
|
cycle ^= 1;
|
|
index = 0;
|
|
}
|
|
|
|
// Insert the TRB.
|
|
write64(&trb_ring[index].params1, params1);
|
|
write32(&trb_ring[index].params2, params2);
|
|
write32(&trb_ring[index].control, control | cycle);
|
|
index++;
|
|
|
|
// Return the new ring enqueue state.
|
|
return cycle * ring_size + index;
|
|
}
|
|
|
|
static void enqueue_xhci_command(workspace_t *ws, uint32_t control, uint64_t params1, uint32_t params2)
|
|
{
|
|
ws->cr_enqueue_state = enqueue_trb(ws->cr, WS_CR_SIZE, ws->cr_enqueue_state, control, params1, params2);
|
|
}
|
|
|
|
static bool get_xhci_event(workspace_t *ws, xhci_trb_t *event)
|
|
{
|
|
// Get the event ring dequeue state, which records the current cycle and next slot to be read.
|
|
uint32_t dequeue_state = ws->er_dequeue_state;
|
|
uint32_t cycle = dequeue_state / WS_ER_SIZE;
|
|
uint32_t index = dequeue_state % WS_ER_SIZE;
|
|
|
|
// Copy the next slot.
|
|
event->params1 = ws->er[index].params1;
|
|
event->params2 = ws->er[index].params2;
|
|
event->control = ws->er[index].control;
|
|
|
|
// If the cycle count doesn't match, that slot hasn't been filled yet.
|
|
if ((event->control & 0x1) != cycle) return false;
|
|
|
|
// Advance the dequeue pointer.
|
|
write64(&ws->rt_regs->ir[0].erdp, (uintptr_t)(&ws->er[index]));
|
|
|
|
// Update the event ring dequeue state.
|
|
if (index == (WS_ER_SIZE - 1)) {
|
|
cycle ^= 1;
|
|
index = 0;
|
|
} else {
|
|
index++;
|
|
}
|
|
ws->er_dequeue_state = cycle * WS_ER_SIZE + index;
|
|
|
|
return true;
|
|
}
|
|
|
|
static uint32_t wait_for_xhci_event(workspace_t *ws, uint32_t wanted_type, int max_time, xhci_trb_t *event)
|
|
{
|
|
int timer = max_time >> 3;
|
|
while (!get_xhci_event(ws, event) || event_type(event) != wanted_type) {
|
|
if (timer == 0) return XHCI_EVENT_CC_TIMEOUT;
|
|
usleep(8);
|
|
timer--;
|
|
}
|
|
return event_cc(event);
|
|
}
|
|
|
|
static void issue_setup_stage_trb(ep_tr_t *ep_tr, const usb_setup_pkt_t *setup_pkt)
|
|
{
|
|
uint64_t params1 = *(const uint64_t *)setup_pkt;
|
|
uint32_t params2 = sizeof(usb_setup_pkt_t);
|
|
uint32_t control = XHCI_TRB_SETUP_STAGE | XHCI_TRB_TRT_IN | XHCI_TRB_IDT;
|
|
ep_tr->enqueue_state = enqueue_trb(ep_tr->tr, EP_TR_SIZE, ep_tr->enqueue_state, control, params1, params2);
|
|
}
|
|
|
|
static void issue_data_stage_trb(ep_tr_t *ep_tr, const void *buffer, uint32_t dir, size_t transfer_length)
|
|
{
|
|
uint64_t params1 = (uintptr_t)buffer;
|
|
uint32_t params2 = transfer_length;
|
|
uint32_t control = XHCI_TRB_DATA_STAGE | dir;
|
|
ep_tr->enqueue_state = enqueue_trb(ep_tr->tr, EP_TR_SIZE, ep_tr->enqueue_state, control, params1, params2);
|
|
}
|
|
|
|
static void issue_status_stage_trb(ep_tr_t *ep_tr, uint32_t dir)
|
|
{
|
|
uint32_t control = XHCI_TRB_STATUS_STAGE | dir | XHCI_TRB_IOC;
|
|
ep_tr->enqueue_state = enqueue_trb(ep_tr->tr, EP_TR_SIZE, ep_tr->enqueue_state, control, 0, 0);
|
|
}
|
|
|
|
static void issue_normal_trb(ep_tr_t *ep_tr, const void *buffer, uint32_t dir, size_t transfer_length)
|
|
{
|
|
uint64_t params1 = (uintptr_t)buffer;
|
|
uint32_t params2 = transfer_length;
|
|
uint32_t control = XHCI_TRB_NORMAL | dir | XHCI_TRB_IOC;
|
|
ep_tr->enqueue_state = enqueue_trb(ep_tr->tr, EP_TR_SIZE, ep_tr->enqueue_state, control, params1, params2);
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Driver Methods
|
|
//------------------------------------------------------------------------------
|
|
|
|
static bool setup_request(const usb_hcd_t *hcd, const usb_ep_t *ep, const usb_setup_pkt_t *setup_pkt)
|
|
{
|
|
workspace_t *ws = (workspace_t *)hcd->ws;
|
|
|
|
ep_tr_t *ep_tr = (ep_tr_t *)ep->driver_data;
|
|
|
|
xhci_trb_t event;
|
|
|
|
issue_setup_stage_trb(ep_tr, setup_pkt);
|
|
issue_status_stage_trb(ep_tr, XHCI_TRB_DIR_IN);
|
|
ring_device_doorbell(ws->db_regs, ep->device_id, 1);
|
|
return (wait_for_xhci_event(ws, XHCI_TRB_TRANSFER_EVENT, 5000*MILLISEC, &event) == XHCI_EVENT_CC_SUCCESS);
|
|
}
|
|
|
|
static bool get_data_request(const usb_hcd_t *hcd, const usb_ep_t *ep, const usb_setup_pkt_t *setup_pkt,
|
|
const void *buffer, size_t length)
|
|
{
|
|
workspace_t *ws = (workspace_t *)hcd->ws;
|
|
|
|
ep_tr_t *ep_tr = (ep_tr_t *)ep->driver_data;
|
|
|
|
xhci_trb_t event;
|
|
|
|
issue_setup_stage_trb(ep_tr, setup_pkt);
|
|
issue_data_stage_trb(ep_tr, buffer, XHCI_TRB_DIR_IN, length);
|
|
issue_status_stage_trb(ep_tr, XHCI_TRB_DIR_OUT);
|
|
ring_device_doorbell(ws->db_regs, ep->device_id, 1);
|
|
return (wait_for_xhci_event(ws, XHCI_TRB_TRANSFER_EVENT, 5000*MILLISEC, &event) == XHCI_EVENT_CC_SUCCESS);
|
|
}
|
|
|
|
static bool reset_root_hub_port(const usb_hcd_t *hcd, int port_num)
|
|
{
|
|
const workspace_t *ws = (const workspace_t *)hcd->ws;
|
|
|
|
return reset_xhci_port(ws->op_regs, port_num - 1);
|
|
}
|
|
|
|
static int allocate_slot(const usb_hcd_t *hcd)
|
|
{
|
|
workspace_t *ws = (workspace_t *)hcd->ws;
|
|
|
|
xhci_trb_t event;
|
|
|
|
// Record the heap state to allow us to free memory.
|
|
ws->initial_heap_mark = heap_mark(HEAP_TYPE_LM_1);
|
|
|
|
// Allocate and initialise a private workspace for this device.
|
|
uintptr_t device_workspace_addr = heap_alloc(HEAP_TYPE_LM_1, DEVICE_WS_SIZE, PAGE_SIZE);
|
|
if (device_workspace_addr == 0) {
|
|
goto free_memory;
|
|
}
|
|
|
|
memset((void *)device_workspace_addr, 0, DEVICE_WS_SIZE);
|
|
|
|
ws->control_ep_tr_addr = device_workspace_addr + XHCI_MAX_OP_CONTEXT_SIZE;
|
|
ws->interrupt_ep_tr_addr = device_workspace_addr + XHCI_MAX_OP_CONTEXT_SIZE + sizeof(ep_tr_t);
|
|
|
|
// Allocate a device slot and set up its output context.
|
|
|
|
enqueue_xhci_command(ws, XHCI_TRB_ENABLE_SLOT | XHCI_TRB_USB2_SLOT, 0, 0);
|
|
ring_host_controller_doorbell(ws->db_regs);
|
|
if (wait_for_xhci_event(ws, XHCI_TRB_COMMAND_COMPLETE, 100*MILLISEC, &event) != XHCI_EVENT_CC_SUCCESS) {
|
|
goto free_memory;
|
|
}
|
|
int slot_id = event_slot_id(&event);
|
|
|
|
write64(&ws->device_context_index[slot_id], device_workspace_addr);
|
|
|
|
return slot_id;
|
|
|
|
free_memory:
|
|
heap_rewind(HEAP_TYPE_LM_1, ws->initial_heap_mark);
|
|
return 0;
|
|
}
|
|
|
|
static bool release_slot(const usb_hcd_t *hcd, int slot_id)
|
|
{
|
|
workspace_t *ws = (workspace_t *)hcd->ws;
|
|
|
|
xhci_trb_t event;
|
|
|
|
enqueue_xhci_command(ws, XHCI_TRB_DISABLE_SLOT | slot_id << 24, 0, 0);
|
|
ring_host_controller_doorbell(ws->db_regs);
|
|
if (wait_for_xhci_event(ws, XHCI_TRB_COMMAND_COMPLETE, 100*MILLISEC, &event) != XHCI_EVENT_CC_SUCCESS) {
|
|
return false;
|
|
}
|
|
|
|
write64(&ws->device_context_index[slot_id], 0);
|
|
|
|
heap_rewind(HEAP_TYPE_LM_1, ws->initial_heap_mark);
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool assign_address(const usb_hcd_t *hcd, const usb_hub_t *hub, int port_num,
|
|
usb_speed_t device_speed, int device_id, usb_ep_t *ep0)
|
|
{
|
|
workspace_t *ws = (workspace_t *)hcd->ws;
|
|
|
|
usb_setup_pkt_t setup_pkt;
|
|
|
|
uint8_t *data_buffer = hcd->ws->data_buffer;
|
|
|
|
xhci_trb_t event;
|
|
|
|
// Initialise the control endpoint descriptor. With the XHCI, we never need to know the USB address of the
|
|
// device, so device_id actually contains the slot ID.
|
|
|
|
ep0->device_speed = device_speed;
|
|
ep0->device_id = device_id;
|
|
ep0->interface_num = 0;
|
|
ep0->endpoint_num = 0;
|
|
ep0->max_packet_size = 0;
|
|
ep0->interval = 0;
|
|
|
|
// Prepare the input context for the ADDRESS_DEVICE command.
|
|
|
|
memset((xhci_input_context_t *)ws->input_context_addr, 0, sizeof(xhci_input_context_t));
|
|
|
|
xhci_ctrl_context_t *ctrl_context = (xhci_ctrl_context_t *)ws->input_context_addr;
|
|
ctrl_context->add_context_flags = XHCI_CONTEXT_A(0) | XHCI_CONTEXT_A(1);
|
|
|
|
xhci_slot_context_t *slot_context = (xhci_slot_context_t *)(ws->input_context_addr + ws->context_size);
|
|
slot_context->params1 = 1 << 27 | usb_to_xhci_speed(device_speed) << 20;
|
|
if (hub->level > 0) {
|
|
uint32_t route = usb_route(hub, port_num);
|
|
slot_context->params1 |= route & 0xfffff;
|
|
slot_context->root_hub_port_num = route >> 24;
|
|
if (device_speed < USB_SPEED_HIGH && hub->ep0->device_speed == USB_SPEED_HIGH) {
|
|
slot_context->parent_slot_id = hub->ep0->device_id;
|
|
slot_context->parent_port_num = port_num;
|
|
}
|
|
} else {
|
|
slot_context->root_hub_port_num = port_num;
|
|
}
|
|
|
|
xhci_ep_context_t *ep_context = (xhci_ep_context_t *)(ws->input_context_addr + 2 * ws->context_size);
|
|
ep_context->params2 = XHCI_EP_CONTROL << 3 | 3 << 1; // EP Type | CErr
|
|
ep_context->max_burst_size = 0;
|
|
ep_context->max_packet_size = default_max_packet_size(device_speed);
|
|
ep_context->tr_dequeue_ptr = ws->control_ep_tr_addr | 1;
|
|
ep_context->average_trb_length = 8;
|
|
|
|
// Initialise the control endpoint transfer ring.
|
|
|
|
ep_tr_t *ep_tr = (ep_tr_t *)ws->control_ep_tr_addr;
|
|
ep_tr->enqueue_state = EP_TR_SIZE; // cycle = 1, index = 0
|
|
ep0->driver_data = (uintptr_t)ep_tr;
|
|
|
|
// Set the device address. For full speed devices we need to read the first 8 bytes of the device descriptor
|
|
// to determine the maximum packet size the device supports and update the device context accordingly. For
|
|
// compatibility with some older USB devices we need to read the first 8 bytes of the device descriptor before
|
|
// actually setting the address. We can conveniently combine both these requirements.
|
|
|
|
size_t fetch_length = sizeof(usb_device_desc_t);
|
|
uint32_t command_flags = 0;
|
|
if (device_speed < USB_SPEED_HIGH || usb_init_options & USB_2_STEP_INIT) {
|
|
fetch_length = 8;
|
|
command_flags = XHCI_TRB_BSR;
|
|
}
|
|
set_address:
|
|
enqueue_xhci_command(ws, XHCI_TRB_ADDRESS_DEVICE | command_flags | device_id << 24, ws->input_context_addr, 0);
|
|
ring_host_controller_doorbell(ws->db_regs);
|
|
if (wait_for_xhci_event(ws, XHCI_TRB_COMMAND_COMPLETE, 5000*MILLISEC, &event) != XHCI_EVENT_CC_SUCCESS) {
|
|
return false;
|
|
}
|
|
if (command_flags == 0) {
|
|
usleep(2*MILLISEC + 1*MILLISEC); // USB set address recovery time (plus a bit).
|
|
}
|
|
|
|
build_setup_packet(&setup_pkt, USB_REQ_FROM_DEVICE, USB_GET_DESCRIPTOR, USB_DESC_DEVICE << 8, 0, fetch_length);
|
|
if (!get_data_request(hcd, ep0, &setup_pkt, data_buffer, fetch_length)
|
|
|| !valid_usb_device_descriptor(data_buffer)) {
|
|
return false;
|
|
}
|
|
|
|
if (command_flags != 0) {
|
|
usb_device_desc_t *device = (usb_device_desc_t *)data_buffer;
|
|
ep0->max_packet_size = device->max_packet_size;
|
|
if (!valid_usb_max_packet_size(device->max_packet_size, device_speed)) {
|
|
return false;
|
|
}
|
|
if (usb_init_options & USB_EXTRA_RESET) {
|
|
if (!reset_usb_hub_port(hcd, hub, port_num)) {
|
|
return false;
|
|
}
|
|
}
|
|
ep_context->max_packet_size = device->max_packet_size;
|
|
ep_context->tr_dequeue_ptr += 3 * sizeof(xhci_trb_t);
|
|
|
|
fetch_length = sizeof(usb_device_desc_t);
|
|
command_flags = 0;
|
|
goto set_address;
|
|
}
|
|
|
|
hcd->ws->data_length = fetch_length;
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool configure_interrupt_endpoint(workspace_t *ws, const usb_ep_t *ep, int hub_flag, int num_ports,
|
|
int tt_think_time, uintptr_t tr_addr, size_t rpt_size)
|
|
{
|
|
xhci_trb_t event;
|
|
|
|
// Calculate the endpoint ID. This is used both to select an endpoint context and as a doorbell target.
|
|
int ep_id = 2 * ep->endpoint_num + 1; // EP <N> IN
|
|
|
|
// The input context has already been initialised, so we just need to change the values used by the
|
|
// CONFIGURE_ENDPOINT command before issuing the command.
|
|
|
|
xhci_ctrl_context_t *ctrl_context = (xhci_ctrl_context_t *)ws->input_context_addr;
|
|
ctrl_context->add_context_flags = XHCI_CONTEXT_A(0) | XHCI_CONTEXT_A(ep_id);
|
|
|
|
xhci_slot_context_t *slot_context = (xhci_slot_context_t *)(ws->input_context_addr + ws->context_size);
|
|
slot_context->params1 = ep_id << 27 | hub_flag << 26 | (slot_context->params1 & 0x00ffffff);
|
|
slot_context->num_ports = num_ports;
|
|
slot_context->params2 = tt_think_time;
|
|
|
|
xhci_ep_context_t *ep_context = (xhci_ep_context_t *)(ws->input_context_addr + (1 + ep_id) * ws->context_size);
|
|
ep_context->params1 = 0;
|
|
ep_context->params2 = XHCI_EP_INTERRUPT_IN << 3 | 3 << 1; // EP Type | CErr
|
|
ep_context->interval = xhci_ep_interval(ep->interval, ep->device_speed);
|
|
ep_context->max_burst_size = 0;
|
|
ep_context->max_packet_size = ep->max_packet_size;
|
|
ep_context->tr_dequeue_ptr = tr_addr | 1;
|
|
ep_context->average_trb_length = rpt_size;
|
|
ep_context->max_esit_payload_l = ep->max_packet_size;
|
|
ep_context->max_esit_payload_h = 0;
|
|
|
|
enqueue_xhci_command(ws, XHCI_TRB_CONFIGURE_ENDPOINT | ep->device_id << 24, ws->input_context_addr, 0);
|
|
ring_host_controller_doorbell(ws->db_regs);
|
|
return (wait_for_xhci_event(ws, XHCI_TRB_COMMAND_COMPLETE, 100*MILLISEC, &event) == XHCI_EVENT_CC_SUCCESS);
|
|
}
|
|
|
|
static bool configure_hub_ep(const usb_hcd_t *hcd, const usb_ep_t *ep, const usb_hub_t *hub)
|
|
{
|
|
workspace_t *ws = (workspace_t *)hcd->ws;
|
|
|
|
return configure_interrupt_endpoint(ws, ep, 1, hub->num_ports, hub->tt_think_time,
|
|
ws->interrupt_ep_tr_addr, (hub->num_ports + 7) / 8);
|
|
}
|
|
|
|
static bool configure_kbd_ep(const usb_hcd_t *hcd, const usb_ep_t *ep, int kbd_idx)
|
|
{
|
|
workspace_t *ws = (workspace_t *)hcd->ws;
|
|
|
|
// Fill in the lookup tables in the workspace.
|
|
ws->kbd_slot_id[kbd_idx] = ep->device_id;
|
|
ws->kbd_ep_id [kbd_idx] = 2 * ep->endpoint_num + 1; // EP <N> IN
|
|
|
|
// Configure the controller.
|
|
return configure_interrupt_endpoint(ws, ep, 0, 0, 0, (uintptr_t)(&ws->kbd_tr[kbd_idx]), sizeof(hid_kbd_rpt_t));
|
|
}
|
|
|
|
static int identify_keyboard(workspace_t *ws, int slot_id, int ep_id)
|
|
{
|
|
for (int kbd_idx = 0; kbd_idx < MAX_KEYBOARDS; kbd_idx++) {
|
|
if (slot_id == ws->kbd_slot_id[kbd_idx] && ep_id == ws->kbd_ep_id[kbd_idx]) {
|
|
return kbd_idx;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
static void poll_keyboards(const usb_hcd_t *hcd)
|
|
{
|
|
workspace_t *ws = (workspace_t *)hcd->ws;
|
|
|
|
xhci_trb_t event;
|
|
|
|
while (get_xhci_event(ws, &event)) {
|
|
if (event_type(&event) != XHCI_TRB_TRANSFER_EVENT || event_cc(&event) != XHCI_EVENT_CC_SUCCESS) continue;
|
|
|
|
int kbd_idx = identify_keyboard(ws, event_slot_id(&event), event_ep_id(&event));
|
|
if (kbd_idx < 0) continue;
|
|
|
|
hid_kbd_rpt_t *kbd_rpt = &ws->kbd_rpt[kbd_idx];
|
|
|
|
hid_kbd_rpt_t *prev_kbd_rpt = &ws->prev_kbd_rpt[kbd_idx];
|
|
if (process_usb_keyboard_report(hcd, kbd_rpt, prev_kbd_rpt)) {
|
|
*prev_kbd_rpt = *kbd_rpt;
|
|
}
|
|
|
|
ep_tr_t *kbd_tr = &ws->kbd_tr[kbd_idx];
|
|
issue_normal_trb(kbd_tr, kbd_rpt, XHCI_TRB_DIR_IN, sizeof(hid_kbd_rpt_t));
|
|
ring_device_doorbell(ws->db_regs, ws->kbd_slot_id[kbd_idx], ws->kbd_ep_id[kbd_idx]);
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Driver Method Table
|
|
//------------------------------------------------------------------------------
|
|
|
|
static const hcd_methods_t methods = {
|
|
.reset_root_hub_port = reset_root_hub_port,
|
|
.allocate_slot = allocate_slot,
|
|
.release_slot = release_slot,
|
|
.assign_address = assign_address,
|
|
.configure_hub_ep = configure_hub_ep,
|
|
.configure_kbd_ep = configure_kbd_ep,
|
|
.setup_request = setup_request,
|
|
.get_data_request = get_data_request,
|
|
.poll_keyboards = poll_keyboards
|
|
};
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Functions
|
|
//------------------------------------------------------------------------------
|
|
|
|
bool xhci_init(uintptr_t base_addr, usb_hcd_t *hcd)
|
|
{
|
|
uint8_t port_type[XHCI_MAX_PORTS];
|
|
|
|
memset(port_type, 0, sizeof(port_type));
|
|
|
|
xhci_cap_regs_t *cap_regs = (xhci_cap_regs_t *)base_addr;
|
|
|
|
#ifdef QEMU_WORKAROUND
|
|
xhci_cap_regs_t cap_regs_copy;
|
|
memcpy32(&cap_regs_copy, cap_regs, sizeof(cap_regs_copy));
|
|
cap_regs = &cap_regs_copy;
|
|
#endif
|
|
|
|
// Walk the extra capabilities list.
|
|
uintptr_t ext_cap_base = base_addr;
|
|
uintptr_t ext_cap_offs = cap_regs->hcc_params1 >> 16;
|
|
while (ext_cap_offs != 0) {
|
|
ext_cap_base += ext_cap_offs * sizeof(uint32_t);
|
|
xhci_ext_cap_t *ext_cap = (xhci_ext_cap_t *)ext_cap_base;
|
|
|
|
#ifdef QEMU_WORKAROUND
|
|
xhci_ext_cap_t ext_cap_copy;
|
|
memcpy32(&ext_cap_copy, ext_cap, sizeof(ext_cap_copy));
|
|
ext_cap = &ext_cap_copy;
|
|
#endif
|
|
if (ext_cap->id == XHCI_EXT_CAP_LEGACY_SUPPORT) {
|
|
xhci_legacy_support_t *legacy_support = (xhci_legacy_support_t *)ext_cap_base;
|
|
// Take ownership from the SMM if necessary.
|
|
int timer = 1000;
|
|
legacy_support->host_owns |= 0x1;
|
|
while (legacy_support->bios_owns & 0x1) {
|
|
if (timer == 0) return false;
|
|
usleep(1*MILLISEC);
|
|
timer--;
|
|
}
|
|
}
|
|
if (ext_cap->id == XHCI_EXT_CAP_SUPPORTED_PROTOCOL) {
|
|
xhci_supported_protocol_t *protocol = (xhci_supported_protocol_t *)ext_cap_base;
|
|
|
|
#ifdef QEMU_WORKAROUND
|
|
xhci_supported_protocol_t protocol_copy;
|
|
memcpy32(&protocol_copy, protocol, sizeof(protocol_copy));
|
|
protocol = &protocol_copy;
|
|
#endif
|
|
// Record the ports covered by this protocol.
|
|
uint8_t protocol_type = protocol->params2 & 0x1f; // the Protocol Slot Type
|
|
switch (protocol->revision_major) {
|
|
case 0x02:
|
|
protocol_type |= PORT_TYPE_USB2;
|
|
break;
|
|
case 0x03:
|
|
protocol_type |= PORT_TYPE_USB3;
|
|
break;
|
|
}
|
|
#if 0
|
|
print_usb_info("protocol revision %i.%i type %i offset %i count %i",
|
|
protocol->revision_major, protocol->revision_minor / 16,
|
|
protocol_type, protocol->port_offset, protocol->port_count);
|
|
#endif
|
|
for (int i = 0; i < protocol->port_count; i++) {
|
|
int port_idx = protocol->port_offset + i - 1;
|
|
if (port_idx >= 0 && port_idx < XHCI_MAX_PORTS) {
|
|
port_type[port_idx] = protocol_type;
|
|
}
|
|
}
|
|
}
|
|
ext_cap_offs = ext_cap->next_offset;
|
|
}
|
|
|
|
xhci_op_regs_t *op_regs = (xhci_op_regs_t *)(base_addr + cap_regs->cap_length);
|
|
xhci_rt_regs_t *rt_regs = (xhci_rt_regs_t *)(base_addr + cap_regs->rts_offset);
|
|
xhci_db_reg_t *db_regs = (xhci_db_reg_t *)(base_addr + cap_regs->db_offset);
|
|
|
|
// Ensure the controller is halted and then reset it.
|
|
if (!halt_host_controller(op_regs)) return false;
|
|
if (!reset_host_controller(op_regs)) return false;
|
|
|
|
// Record the heap states to allow us to free memory.
|
|
uintptr_t initial_lm_heap_mark = heap_mark(HEAP_TYPE_LM_1);
|
|
uintptr_t initial_hm_heap_mark = heap_mark(HEAP_TYPE_HM_1);
|
|
|
|
// Record the controller page size.
|
|
uintptr_t xhci_page_size = (read32(&op_regs->page_size) & 0xffff) << 12;
|
|
|
|
// Find the maximum number of device slots the controller supports.
|
|
int max_slots = cap_regs->hcs_params1 & 0xff;
|
|
|
|
// Find the number of scratchpad buffers the controller wants.
|
|
uintptr_t num_scratchpad_buffers = ((cap_regs->hcs_params2 >> 21) & 0x1f) << 5
|
|
| ((cap_regs->hcs_params2 >> 27) & 0x1f);
|
|
|
|
// Allocate and clear the scratchpad memory on the heap. This must be aligned to the controller page size.
|
|
uintptr_t scratchpad_size = num_scratchpad_buffers * xhci_page_size;
|
|
uintptr_t scratchpad_paddr = heap_alloc(HEAP_TYPE_HM_1, scratchpad_size, xhci_page_size);
|
|
if (scratchpad_paddr == 0) {
|
|
goto no_keyboards_found;
|
|
}
|
|
uintptr_t scratchpad_vaddr = map_region(scratchpad_paddr, scratchpad_size, true);
|
|
if (scratchpad_vaddr == 0) {
|
|
goto no_keyboards_found;
|
|
}
|
|
|
|
memset((void *)scratchpad_vaddr, 0, scratchpad_size);
|
|
|
|
// Allocate and initialise the device context base address and scratchpad buffer arrays on the heap.
|
|
// Both need to be aligned on a 64 byte boundary.
|
|
uintptr_t device_context_index_size = (1 + max_slots) * sizeof(uint64_t);
|
|
uintptr_t scratchpad_buffer_index_offs = round_up(device_context_index_size, 64);
|
|
uintptr_t scratchpad_buffer_index_size = num_scratchpad_buffers * sizeof(uint64_t);
|
|
uintptr_t device_context_index_paddr = heap_alloc(HEAP_TYPE_HM_1, scratchpad_buffer_index_offs + scratchpad_buffer_index_size, 64);
|
|
if (device_context_index_paddr == 0) {
|
|
goto no_keyboards_found;
|
|
}
|
|
uintptr_t device_context_index_vaddr = map_region(device_context_index_paddr, scratchpad_buffer_index_offs + scratchpad_buffer_index_size, true);
|
|
if (device_context_index_vaddr == 0) {
|
|
goto no_keyboards_found;
|
|
}
|
|
|
|
memset((void *)device_context_index_vaddr, 0, device_context_index_size);
|
|
|
|
uint64_t *device_context_index = (uint64_t *)device_context_index_vaddr;
|
|
if (num_scratchpad_buffers > 0) {
|
|
uintptr_t scratchpad_buffer_index_paddr = device_context_index_paddr + scratchpad_buffer_index_offs;
|
|
uintptr_t scratchpad_buffer_index_vaddr = device_context_index_vaddr + scratchpad_buffer_index_offs;
|
|
device_context_index[0] = scratchpad_buffer_index_paddr;
|
|
uint64_t *scratchpad_buffer_index = (uint64_t *)scratchpad_buffer_index_vaddr;
|
|
for (uintptr_t i = 0; i < num_scratchpad_buffers; i++) {
|
|
scratchpad_buffer_index[i] = scratchpad_paddr + i * xhci_page_size;
|
|
}
|
|
}
|
|
|
|
// Allocate and initialise a workspace for this controller. This needs to be permanently mapped into virtual memory.
|
|
uintptr_t workspace_addr = heap_alloc(HEAP_TYPE_LM_1, sizeof(workspace_t), PAGE_SIZE);
|
|
if (workspace_addr == 0) {
|
|
goto no_keyboards_found;
|
|
}
|
|
workspace_t *ws = (workspace_t *)workspace_addr;
|
|
|
|
memset(ws, 0, sizeof(workspace_t));
|
|
|
|
ws->op_regs = op_regs;
|
|
ws->rt_regs = rt_regs;
|
|
ws->db_regs = db_regs;
|
|
|
|
ws->device_context_index = device_context_index;
|
|
|
|
ws->context_size = cap_regs->hcc_params1 & 0x4 ? 64 : 32;
|
|
|
|
ws->cr_enqueue_state = WS_CR_SIZE; // cycle = 1, index = 0
|
|
ws->er_dequeue_state = WS_ER_SIZE; // cycle = 1, index = 0
|
|
|
|
// Allocate and initialise the input context data structure. This needs to be contained within a single page.
|
|
ws->input_context_addr = heap_alloc(HEAP_TYPE_LM_1, XHCI_MAX_IP_CONTEXT_SIZE, PAGE_SIZE);
|
|
if (ws->input_context_addr == 0) {
|
|
goto no_keyboards_found;
|
|
}
|
|
|
|
memset((void *)ws->input_context_addr, 0, XHCI_MAX_IP_CONTEXT_SIZE);
|
|
|
|
// Initialise the driver object for this controller.
|
|
hcd->methods = &methods;
|
|
hcd->ws = &ws->base_ws;
|
|
|
|
// Initialise the ERST for the primary interrupter. We only use the first segment.
|
|
ws->erst[0].segment_addr = (uintptr_t)(&ws->er);
|
|
ws->erst[0].segment_size = WS_ER_SIZE;
|
|
|
|
write64(&rt_regs->ir[0].erdp, (uintptr_t)(&ws->er));
|
|
write32(&rt_regs->ir[0].erst_size, 1);
|
|
write64(&rt_regs->ir[0].erst_addr, (uintptr_t)(&ws->erst));
|
|
|
|
// Initialise and start the controller.
|
|
write64(&op_regs->cr_control, (read64(&op_regs->cr_control) & 0x30) | (uintptr_t)(&ws->cr) | 0x1);
|
|
write64(&op_regs->dcbaap, device_context_index_paddr);
|
|
write32(&op_regs->config, (read32(&op_regs->config) & 0xfffffc00) | max_slots);
|
|
if (!start_host_controller(op_regs)) {
|
|
goto no_keyboards_found;
|
|
}
|
|
|
|
// Construct a hub descriptor for the root hub.
|
|
usb_hub_t root_hub;
|
|
root_hub.ep0 = NULL;
|
|
root_hub.level = 0;
|
|
root_hub.route = 0;
|
|
root_hub.num_ports = cap_regs->hcs_params1 & 0xff;
|
|
root_hub.power_up_delay = 0;
|
|
|
|
usleep(100*MILLISEC); // USB maximum device attach time.
|
|
|
|
// Scan the ports, looking for hubs and keyboards.
|
|
usb_ep_t keyboards[MAX_KEYBOARDS];
|
|
int num_keyboards = 0;
|
|
int num_devices = 0;
|
|
for (int port_idx = 0; port_idx < root_hub.num_ports; port_idx++) {
|
|
// If we've filled the keyboard info table, abort now.
|
|
if (num_keyboards >= MAX_KEYBOARDS) break;
|
|
|
|
// We only expect to find keyboards on USB2 ports.
|
|
if (~port_type[port_idx] & PORT_TYPE_USB2) continue;
|
|
|
|
uint32_t port_status = read32(&op_regs->port_regs[port_idx].sc);
|
|
|
|
// Check if anything is connected to this port.
|
|
if (~port_status & XHCI_PORT_SC_CCS) continue;
|
|
|
|
// Reset the port.
|
|
if (!reset_xhci_port(op_regs, port_idx)) continue;
|
|
|
|
usleep(10*MILLISEC); // USB reset recovery time
|
|
|
|
port_status = read32(&op_regs->port_regs[port_idx].sc);
|
|
|
|
// Check the port is active.
|
|
if (~port_status & XHCI_PORT_SC_CCS) continue;
|
|
if (~port_status & XHCI_PORT_SC_PED) continue;
|
|
|
|
// Now the port has been enabled, we can determine the device speed.
|
|
usb_speed_t device_speed = xhci_to_usb_speed(get_xhci_device_speed(ws->op_regs, port_idx));
|
|
|
|
num_devices++;
|
|
|
|
// Allocate a controller slot for this device.
|
|
int slot_id = allocate_slot(hcd);
|
|
if (slot_id == 0) break;
|
|
|
|
// Look for keyboards attached directly or indirectly to this port.
|
|
if (find_attached_usb_keyboards(hcd, &root_hub, 1 + port_idx, device_speed, slot_id,
|
|
&num_devices, keyboards, MAX_KEYBOARDS, &num_keyboards)) {
|
|
continue;
|
|
}
|
|
|
|
// If we didn't find any keyboard interfaces, we disable the port and free the slot.
|
|
disable_xhci_port(op_regs, port_idx);
|
|
release_slot(hcd, slot_id);
|
|
}
|
|
|
|
print_usb_info(" Found %i device%s, %i keyboard%s",
|
|
num_devices, num_devices != 1 ? "s" : "",
|
|
num_keyboards, num_keyboards != 1 ? "s" : "");
|
|
|
|
if (num_keyboards == 0) {
|
|
(void)halt_host_controller(op_regs);
|
|
goto no_keyboards_found;
|
|
}
|
|
|
|
// Initialise the interrupt TRB ring for each keyboard interface.
|
|
for (int kbd_idx = 0; kbd_idx < num_keyboards; kbd_idx++) {
|
|
ep_tr_t *kbd_tr = &ws->kbd_tr[kbd_idx];
|
|
kbd_tr->enqueue_state = EP_TR_SIZE; // cycle = 1, index = 0
|
|
|
|
hid_kbd_rpt_t *kbd_rpt = &ws->kbd_rpt[kbd_idx];
|
|
issue_normal_trb(kbd_tr, kbd_rpt, XHCI_TRB_DIR_IN, sizeof(hid_kbd_rpt_t));
|
|
ring_device_doorbell(ws->db_regs, ws->kbd_slot_id[kbd_idx], ws->kbd_ep_id[kbd_idx]);
|
|
}
|
|
|
|
return true;
|
|
|
|
no_keyboards_found:
|
|
heap_rewind(HEAP_TYPE_LM_1, initial_lm_heap_mark);
|
|
heap_rewind(HEAP_TYPE_HM_1, initial_hm_heap_mark);
|
|
return false;
|
|
}
|