Lines Matching defs:fst_card_info
449 struct fst_card_info { struct
450 char __iomem *mem; /* Card memory mapped to kernel space */
451 char __iomem *ctlmem; /* Control memory for PCI cards */
452 unsigned int phys_mem; /* Physical memory window address */
453 unsigned int phys_ctlmem; /* Physical control memory address */
454 unsigned int irq; /* Interrupt request line number */
455 unsigned int nports; /* Number of serial ports */
456 unsigned int type; /* Type index of card */
457 unsigned int state; /* State of card */
458 spinlock_t card_lock; /* Lock for SMP access */
459 unsigned short pci_conf; /* PCI card config in I/O space */
461 struct fst_port_info ports[FST_MAX_PORTS];
462 struct pci_dev *device; /* Information about the pci device */
463 int card_no; /* Inst of the card on the system */
464 int family; /* TxP or TxU */
465 int dmarx_in_progress;
466 int dmatx_in_progress;
467 unsigned long int_count;
468 unsigned long int_time_ave;
469 void *rx_dma_handle_host;
470 dma_addr_t rx_dma_handle_card;
471 void *tx_dma_handle_host;
472 dma_addr_t tx_dma_handle_card;
473 struct sk_buff *dma_skb_rx;
474 struct fst_port_info *dma_port_rx;
475 struct fst_port_info *dma_port_tx;
476 int dma_len_rx;
477 int dma_len_tx;
478 int dma_txpos;
479 int dma_rxpos;