Home
last modified time | relevance | path

Searched refs:Adapter (Results 1 – 25 of 40) sorted by relevance

12

/titanic_41/usr/src/uts/common/io/e1000g/
H A De1000g_main.c161 static void e1000g_fm_init(struct e1000g *Adapter);
162 static void e1000g_fm_fini(struct e1000g *Adapter);
166 static void e1000g_restore_promisc(struct e1000g *Adapter);
405 struct e1000g *Adapter; in e1000g_attach() local
431 Adapter = in e1000g_attach()
432 (struct e1000g *)kmem_zalloc(sizeof (*Adapter), KM_SLEEP); in e1000g_attach()
434 Adapter->dip = devinfo; in e1000g_attach()
435 Adapter->instance = instance; in e1000g_attach()
436 Adapter->tx_ring->adapter = Adapter; in e1000g_attach()
437 Adapter->rx_ring->adapter = Adapter; in e1000g_attach()
[all …]
H A De1000g_stat.c50 e1000_tbi_adjust_stats(struct e1000g *Adapter, in e1000_tbi_adjust_stats() argument
56 e1000g_ksp = (p_e1000g_stat_t)Adapter->e1000g_ksp->ks_data; in e1000_tbi_adjust_stats()
67 Adapter->fcs_errors--; in e1000_tbi_adjust_stats()
97 Adapter->brdcstrcv++; in e1000_tbi_adjust_stats()
102 Adapter->multircv++; in e1000_tbi_adjust_stats()
105 if (frame_len == Adapter->max_frame_size) { in e1000_tbi_adjust_stats()
110 if (Adapter->toolong_errors > 0) in e1000_tbi_adjust_stats()
111 Adapter->toolong_errors--; in e1000_tbi_adjust_stats()
151 struct e1000g *Adapter; in e1000g_update_stats() local
165 Adapter = (struct e1000g *)ksp->ks_private; in e1000g_update_stats()
[all …]
H A De1000g_debug.c67 struct e1000g *Adapter = (struct e1000g *)instance; in e1000g_log() local
113 if (Adapter != NULL) { in e1000g_log()
115 ddi_get_name(Adapter->dip), ddi_get_instance(Adapter->dip)); in e1000g_log()
165 struct e1000g *Adapter = (struct e1000g *)instance; in eeprom_dump() local
166 struct e1000_hw *hw = &Adapter->shared; in eeprom_dump()
175 e1000g_log(Adapter, CE_WARN, in eeprom_dump()
182 e1000g_log(Adapter, CE_WARN, in eeprom_dump()
188 e1000g_log(Adapter, CE_WARN, in eeprom_dump()
192 e1000g_log(Adapter, CE_CONT, in eeprom_dump()
196 e1000g_log(Adapter, CE_CONT, in eeprom_dump()
[all …]
H A De1000g_alloc.c41 (sizeof (tx_sw_packet_t) * Adapter->tx_freelist_num)
70 static int e1000g_alloc_descriptors(struct e1000g *Adapter);
71 static void e1000g_free_descriptors(struct e1000g *Adapter);
72 static int e1000g_alloc_packets(struct e1000g *Adapter);
73 static void e1000g_free_packets(struct e1000g *Adapter);
168 e1000g_alloc_dma_resources(struct e1000g *Adapter) in e1000g_alloc_dma_resources() argument
175 (Adapter->tx_desc_num >= MIN_NUM_TX_DESCRIPTOR) && in e1000g_alloc_dma_resources()
176 (Adapter->rx_desc_num >= MIN_NUM_RX_DESCRIPTOR) && in e1000g_alloc_dma_resources()
177 (Adapter->tx_freelist_num >= MIN_NUM_TX_FREELIST)) { in e1000g_alloc_dma_resources()
179 result = e1000g_alloc_descriptors(Adapter); in e1000g_alloc_dma_resources()
[all …]
H A De1000g_rx.c63 struct e1000g *Adapter; in e1000g_rxfree_func() local
123 Adapter = rx_data->rx_ring->adapter; in e1000g_rxfree_func()
125 &Adapter->pending_rx_count); in e1000g_rxfree_func()
144 e1000g_rx_setup(struct e1000g *Adapter) in e1000g_rx_setup() argument
160 hw = &Adapter->shared; in e1000g_rx_setup()
161 rx_data = Adapter->rx_ring->rx_data; in e1000g_rx_setup()
168 sizeof (struct e1000_rx_desc) * Adapter->rx_desc_num); in e1000g_rx_setup()
170 if (!Adapter->rx_buffer_setup) { in e1000g_rx_setup()
186 for (i = 0; i < Adapter->rx_desc_num; in e1000g_rx_setup()
198 for (i = 0; i < Adapter->rx_freelist_num; in e1000g_rx_setup()
[all …]
H A De1000g_debug.h75 #define E1000G_DEBUGLOG_0(Adapter, Level, fmt) \ argument
76 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt))
78 #define E1000G_DEBUGLOG_1(Adapter, Level, fmt, d1) \ argument
79 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1))
81 #define E1000G_DEBUGLOG_2(Adapter, Level, fmt, d1, d2) \ argument
82 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1), (d2))
84 #define E1000G_DEBUGLOG_3(Adapter, Level, fmt, d1, d2, d3) \ argument
85 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1),\
88 #define E1000G_DEBUGLOG_4(Adapter, Level, fmt, d1, d2, d3, d4) \ argument
89 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1),\
[all …]
H A De1000g_tx.c121 struct e1000g *Adapter = (struct e1000g *)arg; in e1000g_m_tx() local
124 rw_enter(&Adapter->chip_lock, RW_READER); in e1000g_m_tx()
126 if ((Adapter->e1000g_state & E1000G_SUSPENDED) || in e1000g_m_tx()
127 !(Adapter->e1000g_state & E1000G_STARTED) || in e1000g_m_tx()
128 (Adapter->link_state != LINK_STATE_UP)) { in e1000g_m_tx()
137 if (!e1000g_send(Adapter, mp)) { in e1000g_m_tx()
145 rw_exit(&Adapter->chip_lock); in e1000g_m_tx()
158 e1000g_send(struct e1000g *Adapter, mblk_t *mp) in e1000g_send() argument
178 tx_ring = Adapter->tx_ring; in e1000g_send()
179 bcopy_thresh = Adapter->tx_bcopy_thresh; in e1000g_send()
[all …]
H A De1000g_sw.h1039 int e1000g_alloc_dma_resources(struct e1000g *Adapter);
1040 void e1000g_release_dma_resources(struct e1000g *Adapter);
1042 void e1000g_tx_setup(struct e1000g *Adapter);
1043 void e1000g_rx_setup(struct e1000g *Adapter);
1055 int e1000g_init_stats(struct e1000g *Adapter);
1057 void e1000_tbi_adjust_stats(struct e1000g *Adapter,
1060 void e1000g_clear_interrupt(struct e1000g *Adapter);
1061 void e1000g_mask_interrupt(struct e1000g *Adapter);
1062 void e1000g_clear_all_interrupts(struct e1000g *Adapter);
1063 void e1000g_clear_tx_interrupt(struct e1000g *Adapter);
[all …]
/titanic_41/usr/src/uts/intel/os/
H A Dmaster192 SUN0005 display vid all none "Sub-VGA Display Adapter"
193 SUN0006 display vid all none "XGA Display Adapter" compatible="pnpPNP,900"
194 PNP0900|ISY0010 display vid all none "VGA Compatible Display Adapter" compatible="pnpPNP,900"
195 PNP0931 display vid all none "Chips & Tech VGA Display Adapter" compatible="pnpPNP,900"
282 pci8086,1029 pci8086,1029 net pci iprb.bef "Intel Pro/100 Network Adapter"
283 pci8086,1030 pci8086,1030 net pci iprb.bef "Intel InBusiness 10/100 Network Adapter"
303 pci101a,f2d scsi msd pci none "NCR PDS/PQS 53C896-based PCI SCSI Adapter" compatible="pci101a,f2d"
304 pci101a,f2e scsi msd pci none "NCR PDS/PQS 53C896-based PCI SCSI Adapter" compatible="pci101a,f2e"
305 pci101a,f2f scsi msd pci none "NCR PDS/PQS 53C896-based PCI SCSI Adapter" compatible="pci101a,f2f"
314 pciffff,101a ncrpqs msd pci none "NCR PDS/PQS 53C875-based PCI SCSI Adapter"
[all …]
/titanic_41/usr/src/data/hwdata/
H A Dpci.ids85 1700 IS64PH ISDN Adapter
86 1702 IS64PH ISDN Adapter
87 1703 ISDN Adapter (PCI Bus, DV, W)
88 1704 ISDN Adapter (PCI Bus, D, C)
122 004a NC6136 Gigabit Server Adapter
212 b1a4 NC7131 Gigabit Server Adapter
257 1de1 3904 DC390F/U Ultra Wide SCSI Adapter
270 1d49 0602 ThinkSystem RAID 930-16i 4GB Flash PCIe 12Gb Adapter
271 1d49 0604 ThinkSystem RAID 930-8e 4GB Flash PCIe 12Gb Adapter
272 1d49 0607 ThinkSystem RAID 930-16i 8GB Flash PCIe 12Gb Adapter
[all …]
H A Dusb.ids37 1800 Mayflash Wii U Pro Game Controller Adapter [DirectInput]
39 1843 Mayflash GameCube Controller Adapter
44 145f NW-3100 802.11b/g 54Mbps Wireless Network Adapter [zd1211]
103 204b LUFA USB to Serial Adapter Project
160 7603 D-Link DWL-120 802.11b Wireless Adapter [Atmel at76c503a]
161 7604 at76c503a 802.11b Adapter
162 7605 at76c503a 802.11b Adapter
163 7606 at76c505 802.11b Adapter
166 7614 AT76c505a Wireless Adapter
167 7615 AT76C505AMX Wireless Adapter
[all …]
/titanic_41/usr/src/pkg/manifests/
H A Ddriver-storage-fas-header-fas.mf27 set name=pkg.description value="SunSwift Adapter Headers"
28 set name=pkg.summary value="SunSwift Adapter Headers"
41 legacy pkg=SUNWhmdu desc="SunSwift Adapter Headers" \
42 name="SunSwift Adapter Headers"
H A Ddeveloper-debug-mdb-module-module-qlc.mf28 value="Utilties associated with the Qlogic Fibre Channel Adapter"
29 set name=pkg.summary value="Qlogic Fibre Channel Adapter Utilities"
41 desc="Utilties associated with the Qlogic Fibre Channel Adapter" \
42 name="Qlogic Fibre Channel Adapter Utilities (usr)"
H A Ddriver-network-qfe.mf33 set name=pkg.description value="Sun Quad FastEtherent PCI/SBus Adapter"
34 set name=pkg.summary value="Sun Quad FastEthernet Adapter Driver"
43 legacy pkg=SUNWqfed desc="Sun Quad FastEtherent PCI/SBus Adapter" \
44 name="Sun Quad FastEthernet Adapter Driver"
H A Ddriver-network-bnx.mf34 value="Broadcom NetXtreme II Gigabit Ethernet PCI-X/PCIE Adapter Driver"
36 value="Broadcom NetXtreme II Gigabit Ethernet Adapter Driver"
57 desc="Broadcom NetXtreme II Gigabit Ethernet PCI-X/PCIE Adapter Driver" \
58 name="Broadcom NetXtreme II Gigabit Ethernet Adapter Driver" \
H A Ddriver-network-hme.mf33 set name=pkg.description value="SunSwift Adapter Drivers"
34 set name=pkg.summary value="SunSwift Adapter Drivers"
52 legacy pkg=SUNWhmd desc="SunSwift Adapter Drivers" \
53 name="SunSwift Adapter Drivers"
H A Ddriver-network-ixgb.mf33 set name=pkg.description value="Intel(R) PRO/10G Server Adapter Driver"
34 set name=pkg.summary value="Intel(R) PRO/10G Server Adapter Driver"
51 legacy pkg=SUNWixgb desc="Intel(R) PRO/10G Server Adapter Driver" \
52 name="Intel(R) PRO/10G Server Adapter Driver"
H A Dsystem-library-storage-fibre-channel-libsun_fc.mf30 set name=pkg.summary value="Sun Fibre Channel Host Bus Adapter Library"
41 name="Sun Fibre Channel Host Bus Adapter Library"
44 name="Sun Fibre Channel Host Bus Adapter Library (root)"
H A Ddriver-network-e1000g.mf33 set name=pkg.description value="Intel(R) PRO/1000 Server Adapter Driver"
34 set name=pkg.summary value="Intel(R) PRO/1000 Server Adapter Driver"
210 legacy pkg=SUNWintgige desc="Intel(R) PRO/1000 Server Adapter Driver" \
211 name="Intel(R) PRO/1000 Server Adapter Driver"
H A Ddriver-network-amd8111s.mf33 set name=pkg.description value="AMD8111 FAST Ethernet Network Adapter Driver"
47 legacy pkg=SUNWamd8111s desc="AMD8111 FAST Ethernet Network Adapter Driver" \
H A Ddriver-network-dmfe.mf34 value="Davicom 9102 Fast Ethernet Network Adapter Driver"
51 legacy pkg=SUNWdmfe desc="Davicom 9102 Fast Ethernet Network Adapter Driver" \
H A Ddriver-network-rge.mf34 value="Realtek Gigabit Ethernet Network Adapter Driver"
54 legacy pkg=SUNWrge desc="Realtek Gigabit Ethernet Network Adapter Driver" \
H A Ddriver-network-sfe.mf34 value="SiS900 series Fast Ethernet Network Adapter Driver"
51 legacy pkg=SUNWsfe desc="SiS900 series Fast Ethernet Network Adapter Driver" \
/titanic_41/usr/src/uts/common/io/usb/
H A Dusbdevs689 product 3COM 3CREB96 0x00a0 Bluetooth USB Adapter
690 product 3COM 3C19250 0x03e8 3C19250 Ethernet Adapter
691 product 3COM 3CRSHEW696 0x0a01 3CRSHEW696 Wireless Adapter
708 product ABOCOM URE450 0x4000 URE450 Ethernet Adapter
709 product ABOCOM UFE1000 0x4002 UFE1000 Fast Ethernet Adapter
710 product ABOCOM DSB650TX_PNA 0x4003 1/10/100 Ethernet Adapter
729 product ACCTON USB320_EC 0x1046 USB320-EC Ethernet Adapter
731 product ACCTON 111 0x3503 T-Sinus 111 Wireless Adapter
734 product ACCTON SS1001 0x5046 SpeedStream Ethernet Adapter
741 product ACERCM EP1427X2 0x0893 EP-1427X-2 Ethernet Adapter
[all …]
/titanic_41/usr/src/uts/common/io/e1000api/
H A DREADME.new12 - Identifying Your Adapter
32 Identifying Your Adapter
35 For information on how to identify your adapter, go to the Adapter &
168 Identifying Your Adapter section.
202 Intel(R) PRO/1000 PT Server Adapter
203 Intel(R) PRO/1000 PT Desktop Adapter
205 Intel(R) PRO/1000 PT Dual Port Server Adapter
207 Intel(R) PRO/1000 PT Quad Port Server Adapter
208 Intel(R) PRO/1000 PF Quad Port Server Adapter
209 Intel(R) PRO/1000 PF Server Adapter
[all …]

12