patch-2.4.5 linux/drivers/usb/usb-uhci.h
Next file: linux/drivers/usb/usb.c
Previous file: linux/drivers/usb/usb-uhci.c
Back to the patch index
Back to the overall index
- Lines: 40
- Date:
Wed May 16 10:31:27 2001
- Orig file:
v2.4.4/linux/drivers/usb/usb-uhci.h
- Orig date:
Mon May 15 12:05:15 2000
diff -u --recursive --new-file v2.4.4/linux/drivers/usb/usb-uhci.h linux/drivers/usb/usb-uhci.h
@@ -146,6 +146,7 @@
uhci_qh_t qh;
} hw;
uhci_desc_type_t type;
+ dma_addr_t dma_addr;
struct list_head horizontal;
struct list_head vertical;
struct list_head desc_list;
@@ -154,6 +155,8 @@
typedef struct {
struct list_head desc_list; // list pointer to all corresponding TDs/QHs associated with this request
+ dma_addr_t setup_packet_dma;
+ dma_addr_t transfer_buffer_dma;
unsigned long started;
urb_t *next_queued_urb; // next queued urb for this EP
urb_t *prev_queued_urb;
@@ -195,6 +198,7 @@
struct usb_bus *bus; // our bus
__u32 *framelist;
+ dma_addr_t framelist_dma;
uhci_desc_t **iso_td;
uhci_desc_t *int_chain[8];
uhci_desc_t *ls_control_chain;
@@ -213,11 +217,12 @@
long timeout_check;
int timeout_urbs;
struct pci_dev *uhci_pci;
+ struct pci_pool *desc_pool;
} uhci_t, *puhci_t;
-#define MAKE_TD_ADDR(a) (virt_to_bus(a)&~UHCI_PTR_QH)
-#define MAKE_QH_ADDR(a) (virt_to_bus(a)|UHCI_PTR_QH)
+#define MAKE_TD_ADDR(a) ((a)->dma_addr&~UHCI_PTR_QH)
+#define MAKE_QH_ADDR(a) ((a)->dma_addr|UHCI_PTR_QH)
#define UHCI_GET_CURRENT_FRAME(uhci) (inw ((uhci)->io_addr + USBFRNUM))
/* ------------------------------------------------------------------------------------
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)