📄 uhci-hcd.h
字号:
struct uhci_td { /* Hardware fields */ __le32 link; __le32 status; __le32 token; __le32 buffer; /* Software fields */ dma_addr_t dma_handle; struct list_head list; int frame; /* for iso: what frame? */ struct list_head fl_list;} __attribute__((aligned(16)));/* * We need a special accessor for the control/status word because it is * subject to asynchronous updates by the controller. */static inline u32 td_status(struct uhci_td *td) { __le32 status = td->status; barrier(); return le32_to_cpu(status);}#define LINK_TO_TD(td) (cpu_to_le32((td)->dma_handle))/* * Skeleton Queue Headers *//* * The UHCI driver uses QHs with Interrupt, Control and Bulk URBs for * automatic queuing. To make it easy to insert entries into the schedule, * we have a skeleton of QHs for each predefined Interrupt latency. * Asynchronous QHs (low-speed control, full-speed control, and bulk) * go onto the period-1 interrupt list, since they all get accessed on * every frame. * * When we want to add a new QH, we add it to the list starting from the * appropriate skeleton QH. For instance, the schedule can look like this: * * skel int128 QH * dev 1 interrupt QH * dev 5 interrupt QH * skel int64 QH * skel int32 QH * ... * skel int1 + async QH * dev 5 low-speed control QH * dev 1 bulk QH * dev 2 bulk QH * * There is a special terminating QH used to keep full-speed bandwidth * reclamation active when no full-speed control or bulk QHs are linked * into the schedule. It has an inactive TD (to work around a PIIX bug, * see the Intel errata) and it points back to itself. * * There's a special skeleton QH for Isochronous QHs which never appears * on the schedule. Isochronous TDs go on the schedule before the * the skeleton QHs. The hardware accesses them directly rather than * through their QH, which is used only for bookkeeping purposes. * While the UHCI spec doesn't forbid the use of QHs for Isochronous, * it doesn't use them either. And the spec says that queues never * advance on an error completion status, which makes them totally * unsuitable for Isochronous transfers. * * There's also a special skeleton QH used for QHs which are in the process * of unlinking and so may still be in use by the hardware. It too never * appears on the schedule. */#define UHCI_NUM_SKELQH 11#define SKEL_UNLINK 0#define skel_unlink_qh skelqh[SKEL_UNLINK]#define SKEL_ISO 1#define skel_iso_qh skelqh[SKEL_ISO] /* int128, int64, ..., int1 = 2, 3, ..., 9 */#define SKEL_INDEX(exponent) (9 - exponent)#define SKEL_ASYNC 9#define skel_async_qh skelqh[SKEL_ASYNC]#define SKEL_TERM 10#define skel_term_qh skelqh[SKEL_TERM]/* The following entries refer to sublists of skel_async_qh */#define SKEL_LS_CONTROL 20#define SKEL_FS_CONTROL 21#define SKEL_FSBR SKEL_FS_CONTROL#define SKEL_BULK 22/* * The UHCI controller and root hub *//* * States for the root hub: * * To prevent "bouncing" in the presence of electrical noise, * when there are no devices attached we delay for 1 second in the * RUNNING_NODEVS state before switching to the AUTO_STOPPED state. * * (Note that the AUTO_STOPPED state won't be necessary once the hub * driver learns to autosuspend.) */enum uhci_rh_state { /* In the following states the HC must be halted. * These two must come first. */ UHCI_RH_RESET, UHCI_RH_SUSPENDED, UHCI_RH_AUTO_STOPPED, UHCI_RH_RESUMING, /* In this state the HC changes from running to halted, * so it can legally appear either way. */ UHCI_RH_SUSPENDING, /* In the following states it's an error if the HC is halted. * These two must come last. */ UHCI_RH_RUNNING, /* The normal state */ UHCI_RH_RUNNING_NODEVS, /* Running with no devices attached */};/* * The full UHCI controller information: */struct uhci_hcd { /* debugfs */ struct dentry *dentry; /* Grabbed from PCI */ unsigned long io_addr; struct dma_pool *qh_pool; struct dma_pool *td_pool; struct uhci_td *term_td; /* Terminating TD, see UHCI bug */ struct uhci_qh *skelqh[UHCI_NUM_SKELQH]; /* Skeleton QHs */ struct uhci_qh *next_qh; /* Next QH to scan */ spinlock_t lock; dma_addr_t frame_dma_handle; /* Hardware frame list */ __le32 *frame; void **frame_cpu; /* CPU's frame list */ enum uhci_rh_state rh_state; unsigned long auto_stop_time; /* When to AUTO_STOP */ unsigned int frame_number; /* As of last check */ unsigned int is_stopped;#define UHCI_IS_STOPPED 9999 /* Larger than a frame # */ unsigned int last_iso_frame; /* Frame of last scan */ unsigned int cur_iso_frame; /* Frame for current scan */ unsigned int scan_in_progress:1; /* Schedule scan is running */ unsigned int need_rescan:1; /* Redo the schedule scan */ unsigned int dead:1; /* Controller has died */ unsigned int working_RD:1; /* Suspended root hub doesn't need to be polled */ unsigned int is_initialized:1; /* Data structure is usable */ unsigned int fsbr_is_on:1; /* FSBR is turned on */ unsigned int fsbr_is_wanted:1; /* Does any URB want FSBR? */ unsigned int fsbr_expiring:1; /* FSBR is timing out */ struct timer_list fsbr_timer; /* For turning off FBSR */ /* Support for port suspend/resume/reset */ unsigned long port_c_suspend; /* Bit-arrays of ports */ unsigned long resuming_ports; unsigned long ports_timeout; /* Time to stop signalling */ struct list_head idle_qh_list; /* Where the idle QHs live */ int rh_numports; /* Number of root-hub ports */ wait_queue_head_t waitqh; /* endpoint_disable waiters */ int num_waiting; /* Number of waiters */ int total_load; /* Sum of array values */ short load[MAX_PHASE]; /* Periodic allocations */};/* Convert between a usb_hcd pointer and the corresponding uhci_hcd */static inline struct uhci_hcd *hcd_to_uhci(struct usb_hcd *hcd){ return (struct uhci_hcd *) (hcd->hcd_priv);}static inline struct usb_hcd *uhci_to_hcd(struct uhci_hcd *uhci){ return container_of((void *) uhci, struct usb_hcd, hcd_priv);}#define uhci_dev(u) (uhci_to_hcd(u)->self.controller)/* Utility macro for comparing frame numbers */#define uhci_frame_before_eq(f1, f2) (0 <= (int) ((f2) - (f1)))/* * Private per-URB data */struct urb_priv { struct list_head node; /* Node in the QH's urbp list */ struct urb *urb; struct uhci_qh *qh; /* QH for this URB */ struct list_head td_list; unsigned fsbr:1; /* URB wants FSBR */};/* * Locking in uhci.c * * Almost everything relating to the hardware schedule and processing * of URBs is protected by uhci->lock. urb->status is protected by * urb->lock; that's the one exception. * * To prevent deadlocks, never lock uhci->lock while holding urb->lock. * The safe order of locking is: * * #1 uhci->lock * #2 urb->lock *//* Some special IDs */#define PCI_VENDOR_ID_GENESYS 0x17a0#define PCI_DEVICE_ID_GL880S_UHCI 0x8083#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -