mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
191 lines
6.1 KiB
C
191 lines
6.1 KiB
C
/*
|
|
* Copyright 2004-2006, Haiku Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Michael Lotz <mmlr@mlotz.ch>
|
|
* Niels S. Reedijk
|
|
*/
|
|
|
|
#ifndef UHCI_HARDWARE_H
|
|
#define UHCI_HARDWARE_H
|
|
|
|
/************************************************************
|
|
* The Registers *
|
|
************************************************************/
|
|
|
|
// R/W -- Read/Write
|
|
// R/WC -- Read/Write Clear
|
|
// ** -- Only writable with words!
|
|
|
|
// PCI register
|
|
#define PCI_LEGSUP 0xC0
|
|
#define PCI_LEGSUP_USBPIRQDEN 0x2000
|
|
#define PCI_LEGSUP_CLEAR_SMI 0x8f00
|
|
|
|
// Registers
|
|
#define UHCI_USBCMD 0x00 // USB Command - word - R/W
|
|
#define UHCI_USBSTS 0x02 // USB Status - word - R/WC
|
|
#define UHCI_USBINTR 0x04 // USB Interrupt Enable - word - R/W
|
|
#define UHCI_FRNUM 0x06 // Frame number - word - R/W**
|
|
#define UHCI_FRBASEADD 0x08 // Frame List BAse Address - dword - R/W
|
|
#define UHCI_SOFMOD 0x0c // Start of Frame Modify - byte - R/W
|
|
#define UHCI_PORTSC1 0x10 // Port 1 Status/Control - word - R/WC**
|
|
#define UHCI_PORTSC2 0x12 // Port 2 Status/Control - word - R/WC**
|
|
|
|
// USBCMD
|
|
#define UHCI_USBCMD_RS 0x01 // Run/Stop
|
|
#define UHCI_USBCMD_HCRESET 0x02 // Host Controller Reset
|
|
#define UHCI_USBCMD_GRESET 0x04 // Global Reset
|
|
#define UHCI_USBCMD_EGSM 0x08 // Enter Global Suspend mode
|
|
#define UHCI_USBCMD_FGR 0x10 // Force Global resume
|
|
#define UHCI_USBCMD_SWDBG 0x20 // Software Debug
|
|
#define UHCI_USBCMD_CF 0x40 // Configure Flag
|
|
#define UHCI_USBCMD_MAXP 0x80 // Max packet
|
|
|
|
//USBSTS
|
|
#define UHCI_USBSTS_USBINT 0x01 // USB interrupt
|
|
#define UHCI_USBSTS_ERRINT 0x02 // USB error interrupt
|
|
#define UHCI_USBSTS_RESDET 0x04 // Resume Detect
|
|
#define UHCI_USBSTS_HOSTERR 0x08 // Host System Error
|
|
#define UHCI_USBSTS_HCPRERR 0x10 // Host Controller Process error
|
|
#define UHCI_USBSTS_HCHALT 0x20 // HCHalted
|
|
|
|
//USBINTR
|
|
#define UHCI_USBINTR_CRC 0x01 // Timeout/ CRC interrupt enable
|
|
#define UHCI_USBINTR_RESUME 0x02 // Resume interrupt enable
|
|
#define UHCI_USBINTR_IOC 0x04 // Interrupt on complete enable
|
|
#define UHCI_USBINTR_SHORT 0x08 // Short packet interrupt enable
|
|
|
|
//PORTSC
|
|
#define UHCI_PORTSC_CURSTAT 0x0001 // Current connect status
|
|
#define UHCI_PORTSC_STATCHA 0x0002 // Current connect status change
|
|
#define UHCI_PORTSC_ENABLED 0x0004 // Port enabled/disabled
|
|
#define UHCI_PORTSC_ENABCHA 0x0008 // Change in enabled/disabled
|
|
#define UHCI_PORTSC_LINE_0 0x0010 // The status of D+
|
|
#define UHCI_PORTSC_LINE_1 0x0020 // The status of D-
|
|
#define UHCI_PORTSC_RESUME 0x0040 // Something with the suspend state ???
|
|
#define UHCI_PORTSC_LOWSPEED 0x0100 // Low speed device attached?
|
|
#define UHCI_PORTSC_RESET 0x0200 // Port is in reset
|
|
#define UHCI_PORTSC_SUSPEND 0x1000 // Set port in suspend state
|
|
|
|
#define UHCI_PORTSC_DATAMASK 0x13f5 // Mask that excludes the change bits
|
|
|
|
/************************************************************
|
|
* Hardware structs *
|
|
************************************************************/
|
|
|
|
// Framelist flags
|
|
#define FRAMELIST_TERMINATE 0x1
|
|
#define FRAMELIST_NEXT_IS_QH 0x2
|
|
|
|
// Number of frames
|
|
#define NUMBER_OF_FRAMES 1024
|
|
#define MAX_AVAILABLE_BANDWIDTH 900 // Microseconds
|
|
|
|
// Represents a Transfer Descriptor (TD)
|
|
typedef struct _UHCI_TRANSFER_DESCRIPTOR
|
|
{
|
|
ULONG LinkPhysical; // Link to next transfer descriptor / queue head
|
|
ULONG Status; // status
|
|
ULONG Token; // packet header
|
|
ULONG BufferPhysical; // pointer to the buffer
|
|
|
|
// Software part
|
|
ULONG PhysicalAddress; // Physical address of this descriptor
|
|
PVOID NextLogicalDescriptor;
|
|
ULONG BufferSize; // Size of the buffer
|
|
PVOID BufferLogical; // Logical pointer to the buffer
|
|
PVOID UserBuffer;
|
|
}UHCI_TRANSFER_DESCRIPTOR, *PUHCI_TRANSFER_DESCRIPTOR;
|
|
|
|
#define TD_NEXT_IS_QH 0x02
|
|
|
|
// Control and Status
|
|
#define TD_CONTROL_SPD (1 << 29)
|
|
#define TD_CONTROL_3_ERRORS (3 << 27)
|
|
#define TD_CONTROL_LOWSPEED (1 << 26)
|
|
#define TD_CONTROL_ISOCHRONOUS (1 << 25)
|
|
#define TD_CONTROL_IOC (1 << 24)
|
|
|
|
#define TD_STATUS_ACTIVE (1 << 23)
|
|
#define TD_STATUS_ERROR_STALLED (1 << 22)
|
|
#define TD_STATUS_ERROR_BUFFER (1 << 21)
|
|
#define TD_STATUS_ERROR_BABBLE (1 << 20)
|
|
#define TD_STATUS_ERROR_NAK (1 << 19)
|
|
#define TD_STATUS_ERROR_CRC (1 << 18)
|
|
#define TD_STATUS_ERROR_TIMEOUT (1 << 18)
|
|
#define TD_STATUS_ERROR_BITSTUFF (1 << 17)
|
|
|
|
#define TD_STATUS_ACTLEN_MASK 0x07ff
|
|
#define TD_STATUS_ACTLEN_NULL 0x07ff
|
|
|
|
// Token
|
|
#define TD_TOKEN_MAXLEN_SHIFT 21
|
|
#define TD_TOKEN_NULL_DATA (0x07ff << TD_TOKEN_MAXLEN_SHIFT)
|
|
#define TD_TOKEN_DATA_TOGGLE_SHIFT 19
|
|
#define TD_TOKEN_DATA1 (1 << TD_TOKEN_DATA_TOGGLE_SHIFT)
|
|
|
|
#define TD_TOKEN_SETUP 0x2d
|
|
#define TD_TOKEN_IN 0x69
|
|
#define TD_TOKEN_OUT 0xe1
|
|
|
|
#define TD_TOKEN_ENDPTADDR_SHIFT 15
|
|
#define TD_TOKEN_DEVADDR_SHIFT 8
|
|
|
|
#define TD_DEPTH_FIRST 0x04
|
|
#define TD_TERMINATE 0x01
|
|
#define TD_ERROR_MASK 0x440000
|
|
#define TD_ERROR_COUNT_SHIFT 27
|
|
#define TD_ERROR_COUNT_MASK 0x03
|
|
#define TD_LINK_MASK 0xfffffff0
|
|
|
|
|
|
static
|
|
inline
|
|
ULONG
|
|
UHCI_TRANSFER_DESCRIPTOR_MAXIMUM_LENGTH(PUHCI_TRANSFER_DESCRIPTOR Descriptor)
|
|
{
|
|
ULONG Length = (Descriptor->Token >> TD_TOKEN_MAXLEN_SHIFT) + 1;
|
|
if (Length == TD_STATUS_ACTLEN_NULL + 1)
|
|
return 0;
|
|
return Length;
|
|
}
|
|
|
|
static
|
|
inline
|
|
ULONG
|
|
UHCI_TRANSFER_DESCRIPTOR_LENGTH(PUHCI_TRANSFER_DESCRIPTOR Descriptor)
|
|
{
|
|
ULONG Length = (Descriptor->Status & TD_STATUS_ACTLEN_MASK) + 1;
|
|
if (Length == TD_STATUS_ACTLEN_NULL + 1)
|
|
return 0;
|
|
return Length;
|
|
}
|
|
|
|
// Represents a Queue Head (QH)
|
|
typedef struct _UHCI_QUEUE_HEAD
|
|
{
|
|
// hardware part
|
|
ULONG LinkPhysical; // address
|
|
ULONG ElementPhysical; // next descriptor
|
|
|
|
// Software part
|
|
ULONG PhysicalAddress;
|
|
PVOID NextLogicalDescriptor;
|
|
PVOID Request;
|
|
PVOID NextElementDescriptor;
|
|
}UHCI_QUEUE_HEAD, *PUHCI_QUEUE_HEAD;
|
|
|
|
#define QH_TERMINATE 0x01
|
|
#define QH_NEXT_IS_QH 0x02
|
|
#define QH_LINK_MASK 0xfffffff0
|
|
|
|
|
|
#define UHCI_INTERRUPT_QUEUE 0
|
|
#define UHCI_LOW_SPEED_CONTROL_QUEUE 1
|
|
#define UHCI_FULL_SPEED_CONTROL_QUEUE 2
|
|
#define UHCI_BULK_QUEUE 3
|
|
#define UHCI_DEBUG_QUEUE 4
|
|
|
|
#endif /* UHCI_HARDWARE_H */
|