Changes in / [3fe58d3c:7943c43] in mainline
- Files:
-
- 6 added
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/e1k/e1k.c
r3fe58d3c r7943c43 52 52 #include <nil_remote.h> 53 53 #include <ops/nic.h> 54 #include <packet_client.h> 55 #include <packet_remote.h> 56 #include <net/packet_header.h> 54 57 #include "e1k.h" 55 58 … … 59 62 60 63 /* Must be power of 8 */ 61 #define E1000_RX_ FRAME_COUNT 12862 #define E1000_TX_ FRAME_COUNT 12864 #define E1000_RX_PACKETS_COUNT 128 65 #define E1000_TX_PACKETS_COUNT 128 63 66 64 67 #define E1000_RECEIVE_ADDRESS 16 65 68 66 /** Maximum sending framesize */69 /** Maximum sending packet size */ 67 70 #define E1000_MAX_SEND_FRAME_SIZE 2048 68 /** Maximum receiving framesize */69 #define E1000_MAX_RECEIVE_ FRAME_SIZE 204871 /** Maximum receiving packet size */ 72 #define E1000_MAX_RECEIVE_PACKET_SIZE 2048 70 73 71 74 /** nic_driver_data_t* -> e1000_t* cast */ … … 134 137 void *rx_ring_virt; 135 138 136 /** Ring of RX frames, physical address */ 137 void **rx_frame_phys; 138 /** Ring of RX frames, virtual address */ 139 void **rx_frame_virt; 139 /** Packets in rx ring */ 140 packet_t **rx_ring_packets; 140 141 141 142 /** VLAN tag */ 142 143 uint16_t vlan_tag; 143 144 144 /** Add VLAN tag to frame*/145 /** Add VLAN tag to packet */ 145 146 bool vlan_tag_add; 146 147 … … 476 477 } 477 478 478 /** Get state of acceptance of weird frames479 /** Get state of acceptance of weird packets 479 480 * 480 481 * @param device Device to check … … 494 495 }; 495 496 496 /** Set acceptance of weird frames497 /** Set acceptance of weird packets 497 498 * 498 499 * @param device Device to update … … 678 679 } 679 680 680 /** Disable receiving frames for default address681 /** Disable receiving packets for default address 681 682 * 682 683 * @param e1000 E1000 data structure … … 690 691 } 691 692 692 /** Enable receiving frames for default address693 /** Enable receiving packets for default address 693 694 * 694 695 * @param e1000 E1000 data structure … … 750 751 } 751 752 752 /** Enable accepting of broadcast frames753 /** Enable accepting of broadcast packets 753 754 * 754 755 * @param e1000 E1000 data structure … … 762 763 } 763 764 764 /** Disable accepting of broadcast frames765 /** Disable accepting of broadcast packets 765 766 * 766 767 * @param e1000 E1000 data structure … … 798 799 } 799 800 800 /** Set multicast frames acceptance mode801 /** Set multicast packets acceptance mode 801 802 * 802 803 * @param nic NIC device to update … … 852 853 } 853 854 854 /** Set unicast frames acceptance mode855 /** Set unicast packets acceptance mode 855 856 * 856 857 * @param nic NIC device to update … … 910 911 } 911 912 912 /** Set broadcast frames acceptance mode913 /** Set broadcast packets acceptance mode 913 914 * 914 915 * @param nic NIC device to update … … 995 996 if (vlan_mask) { 996 997 /* 997 * Disable receiving, so that framematching998 * Disable receiving, so that packet matching 998 999 * partially written VLAN is not received. 999 1000 */ … … 1062 1063 } 1063 1064 1064 /** Fill receive descriptor with new empty buffer1065 * 1066 * Store frame in e1000->rx_frame_phys1065 /** Fill receive descriptor with new empty packet 1066 * 1067 * Store packet in e1000->rx_ring_packets 1067 1068 * 1068 1069 * @param nic NIC data stricture … … 1073 1074 { 1074 1075 e1000_t *e1000 = DRIVER_DATA_NIC(nic); 1075 1076 packet_t *packet = 1077 nic_alloc_packet(nic, E1000_MAX_RECEIVE_PACKET_SIZE); 1078 1079 assert(packet); 1080 1081 *(e1000->rx_ring_packets + offset) = packet; 1076 1082 e1000_rx_descriptor_t *rx_descriptor = (e1000_rx_descriptor_t *) 1077 1083 (e1000->rx_ring_virt + offset * sizeof(e1000_rx_descriptor_t)); 1078 1084 1079 rx_descriptor->phys_addr = PTR_TO_U64(e1000->rx_frame_phys[offset]); 1085 void *phys; 1086 int rc = 1087 nic_dma_lock_packet(packet, E1000_MAX_RECEIVE_PACKET_SIZE, &phys); 1088 1089 if (rc == EOK) 1090 rx_descriptor->phys_addr = PTR_TO_U64(phys + packet->data_start); 1091 else 1092 rx_descriptor->phys_addr = 0; 1093 1080 1094 rx_descriptor->length = 0; 1081 1095 rx_descriptor->checksum = 0; … … 1141 1155 } 1142 1156 1143 /** Receive frames1157 /** Receive packets 1144 1158 * 1145 1159 * @param nic NIC data 1146 1160 * 1147 1161 */ 1148 static void e1000_receive_ frames(nic_t *nic)1162 static void e1000_receive_packets(nic_t *nic) 1149 1163 { 1150 1164 e1000_t *e1000 = DRIVER_DATA_NIC(nic); … … 1153 1167 1154 1168 uint32_t *tail_addr = E1000_REG_ADDR(e1000, E1000_RDT); 1155 uint32_t next_tail = e1000_inc_tail(*tail_addr, E1000_RX_ FRAME_COUNT);1169 uint32_t next_tail = e1000_inc_tail(*tail_addr, E1000_RX_PACKETS_COUNT); 1156 1170 1157 1171 e1000_rx_descriptor_t *rx_descriptor = (e1000_rx_descriptor_t *) … … 1159 1173 1160 1174 while (rx_descriptor->status & 0x01) { 1161 uint32_t frame_size = rx_descriptor->length - E1000_CRC_SIZE;1175 uint32_t packet_size = rx_descriptor->length - E1000_CRC_SIZE; 1162 1176 1163 nic_frame_t *frame = nic_alloc_frame(nic, frame_size); 1164 if (frame != NULL) { 1165 memcpy(frame->data, e1000->rx_frame_virt[next_tail], frame_size); 1166 nic_received_frame(nic, frame); 1167 } else { 1168 ddf_msg(LVL_ERROR, "Memory allocation failed. Frame dropped."); 1169 } 1177 packet_t *packet = *(e1000->rx_ring_packets + next_tail); 1178 packet_suffix(packet, packet_size); 1179 1180 nic_dma_unlock_packet(packet, E1000_MAX_RECEIVE_PACKET_SIZE); 1181 nic_received_packet(nic, packet); 1170 1182 1171 1183 e1000_fill_new_rx_descriptor(nic, next_tail); 1172 1184 1173 *tail_addr = e1000_inc_tail(*tail_addr, E1000_RX_ FRAME_COUNT);1174 next_tail = e1000_inc_tail(*tail_addr, E1000_RX_ FRAME_COUNT);1185 *tail_addr = e1000_inc_tail(*tail_addr, E1000_RX_PACKETS_COUNT); 1186 next_tail = e1000_inc_tail(*tail_addr, E1000_RX_PACKETS_COUNT); 1175 1187 1176 1188 rx_descriptor = (e1000_rx_descriptor_t *) … … 1213 1225 { 1214 1226 if (icr & ICR_RXT0) 1215 e1000_receive_ frames(nic);1227 e1000_receive_packets(nic); 1216 1228 } 1217 1229 … … 1262 1274 } 1263 1275 1264 /** Force receiving all frames in the receive buffer1276 /** Force receiving all packets in the receive buffer 1265 1277 * 1266 1278 * @param nic NIC data … … 1335 1347 static void e1000_initialize_rx_registers(e1000_t *e1000) 1336 1348 { 1337 E1000_REG_WRITE(e1000, E1000_RDLEN, E1000_RX_ FRAME_COUNT * 16);1349 E1000_REG_WRITE(e1000, E1000_RDLEN, E1000_RX_PACKETS_COUNT * 16); 1338 1350 E1000_REG_WRITE(e1000, E1000_RDH, 0); 1339 1351 1340 1352 /* It is not posible to let HW use all descriptors */ 1341 E1000_REG_WRITE(e1000, E1000_RDT, E1000_RX_ FRAME_COUNT - 1);1353 E1000_REG_WRITE(e1000, E1000_RDT, E1000_RX_PACKETS_COUNT - 1); 1342 1354 1343 1355 /* Set Broadcast Enable Bit */ … … 1359 1371 1360 1372 int rc = dmamem_map_anonymous( 1361 E1000_RX_ FRAME_COUNT * sizeof(e1000_rx_descriptor_t),1373 E1000_RX_PACKETS_COUNT * sizeof(e1000_rx_descriptor_t), 1362 1374 AS_AREA_READ | AS_AREA_WRITE, 0, &e1000->rx_ring_phys, 1363 1375 &e1000->rx_ring_virt); … … 1370 1382 (uint32_t) PTR_TO_U64(e1000->rx_ring_phys)); 1371 1383 1372 e1000->rx_frame_phys = 1373 calloc(E1000_RX_FRAME_COUNT, sizeof(void *)); 1374 e1000->rx_frame_virt = 1375 calloc(E1000_RX_FRAME_COUNT, sizeof(void *)); 1376 if (e1000->rx_frame_phys == NULL || e1000->rx_frame_virt == NULL) { 1377 rc = ENOMEM; 1378 goto error; 1379 } 1380 1381 size_t i; 1382 void *frame_virt; 1383 void *frame_phys; 1384 1385 for (i = 0; i < E1000_RX_FRAME_COUNT; i++) { 1386 rc = dmamem_map_anonymous( 1387 E1000_MAX_SEND_FRAME_SIZE, AS_AREA_READ | AS_AREA_WRITE, 1388 0, &frame_phys, &frame_virt); 1389 if (rc != EOK) 1390 goto error; 1391 1392 e1000->rx_frame_virt[i] = frame_virt; 1393 e1000->rx_frame_phys[i] = frame_phys; 1394 } 1384 e1000->rx_ring_packets = 1385 malloc(E1000_RX_PACKETS_COUNT * sizeof(packet_t *)); 1386 // FIXME: Check return value 1395 1387 1396 1388 /* Write descriptor */ 1397 for (i = 0; i < E1000_RX_FRAME_COUNT; i++) 1398 e1000_fill_new_rx_descriptor(nic, i); 1389 for (unsigned int offset = 0; 1390 offset < E1000_RX_PACKETS_COUNT; 1391 offset++) 1392 e1000_fill_new_rx_descriptor(nic, offset); 1399 1393 1400 1394 e1000_initialize_rx_registers(e1000); … … 1402 1396 fibril_mutex_unlock(&e1000->rx_lock); 1403 1397 return EOK; 1404 error:1405 for (i = 0; i < E1000_RX_FRAME_COUNT; i++) {1406 if (e1000->rx_frame_virt[i] != NULL) {1407 dmamem_unmap_anonymous(e1000->rx_frame_virt[i]);1408 e1000->rx_frame_virt[i] = NULL;1409 e1000->rx_frame_phys[i] = NULL;1410 }1411 }1412 if (e1000->rx_frame_phys != NULL) {1413 free(e1000->rx_frame_phys);1414 e1000->rx_frame_phys = NULL;1415 }1416 if (e1000->rx_frame_virt != NULL) {1417 free(e1000->rx_frame_virt);1418 e1000->rx_frame_phys = NULL;1419 }1420 return rc;1421 1398 } 1422 1399 … … 1430 1407 e1000_t *e1000 = DRIVER_DATA_NIC(nic); 1431 1408 1432 /* Write descriptor */1433 for (unsigned int offset = 0; offset < E1000_RX_FRAME_COUNT; offset++) {1434 dmamem_unmap_anonymous(e1000->rx_frame_virt[offset]);1435 e1000->rx_frame_virt[offset] = NULL;1436 e1000->rx_frame_phys[offset] = NULL;1437 }1438 1439 free(e1000->rx_frame_virt);1440 free(e1000->rx_frame_phys);1441 e1000->rx_frame_virt = NULL;1442 e1000->rx_frame_phys = NULL;1443 dmamem_unmap_anonymous(e1000->rx_ring_virt);1444 }1445 1446 /** Clear receive descriptor ring1447 *1448 * @param e1000 E1000 data1449 *1450 */1451 static void e1000_clear_rx_ring(e1000_t *e1000)1452 {1453 1409 /* Write descriptor */ 1454 1410 for (unsigned int offset = 0; 1455 offset < E1000_RX_FRAME_COUNT; 1411 offset < E1000_RX_PACKETS_COUNT; 1412 offset++) { 1413 packet_t *packet = *(e1000->rx_ring_packets + offset); 1414 nic_dma_unlock_packet(packet, E1000_MAX_RECEIVE_PACKET_SIZE); 1415 nic_release_packet(nic, packet); 1416 } 1417 1418 free(e1000->rx_ring_packets); 1419 dmamem_unmap_anonymous(e1000->rx_ring_virt); 1420 } 1421 1422 /** Clear receive descriptor ring 1423 * 1424 * @param e1000 E1000 data 1425 * 1426 */ 1427 static void e1000_clear_rx_ring(e1000_t *e1000) 1428 { 1429 /* Write descriptor */ 1430 for (unsigned int offset = 0; 1431 offset < E1000_RX_PACKETS_COUNT; 1456 1432 offset++) 1457 1433 e1000_clear_rx_descriptor(e1000, offset); … … 1522 1498 static void e1000_initialize_tx_registers(e1000_t *e1000) 1523 1499 { 1524 E1000_REG_WRITE(e1000, E1000_TDLEN, E1000_TX_ FRAME_COUNT * 16);1500 E1000_REG_WRITE(e1000, E1000_TDLEN, E1000_TX_PACKETS_COUNT * 16); 1525 1501 E1000_REG_WRITE(e1000, E1000_TDH, 0); 1526 1502 E1000_REG_WRITE(e1000, E1000_TDT, 0); … … 1554 1530 1555 1531 int rc = dmamem_map_anonymous( 1556 E1000_TX_ FRAME_COUNT * sizeof(e1000_tx_descriptor_t),1532 E1000_TX_PACKETS_COUNT * sizeof(e1000_tx_descriptor_t), 1557 1533 AS_AREA_READ | AS_AREA_WRITE, 0, &e1000->tx_ring_phys, 1558 1534 &e1000->tx_ring_virt); … … 1561 1537 1562 1538 bzero(e1000->tx_ring_virt, 1563 E1000_TX_ FRAME_COUNT * sizeof(e1000_tx_descriptor_t));1564 1565 e1000->tx_frame_phys = calloc(E1000_TX_ FRAME_COUNT, sizeof(void *));1566 e1000->tx_frame_virt = calloc(E1000_TX_ FRAME_COUNT, sizeof(void *));1539 E1000_TX_PACKETS_COUNT * sizeof(e1000_tx_descriptor_t)); 1540 1541 e1000->tx_frame_phys = calloc(E1000_TX_PACKETS_COUNT, sizeof(void *)); 1542 e1000->tx_frame_virt = calloc(E1000_TX_PACKETS_COUNT, sizeof(void *)); 1567 1543 1568 1544 if (e1000->tx_frame_phys == NULL || e1000->tx_frame_virt == NULL) { … … 1571 1547 } 1572 1548 1573 for (i = 0; i < E1000_TX_ FRAME_COUNT; i++) {1549 for (i = 0; i < E1000_TX_PACKETS_COUNT; i++) { 1574 1550 rc = dmamem_map_anonymous( 1575 1551 E1000_MAX_SEND_FRAME_SIZE, AS_AREA_READ | AS_AREA_WRITE, … … 1596 1572 1597 1573 if (e1000->tx_frame_phys != NULL && e1000->tx_frame_virt != NULL) { 1598 for (i = 0; i < E1000_TX_ FRAME_COUNT; i++) {1574 for (i = 0; i < E1000_TX_PACKETS_COUNT; i++) { 1599 1575 if (e1000->tx_frame_virt[i] != NULL) { 1600 1576 dmamem_unmap_anonymous(e1000->tx_frame_virt[i]); … … 1627 1603 size_t i; 1628 1604 1629 for (i = 0; i < E1000_TX_ FRAME_COUNT; i++) {1605 for (i = 0; i < E1000_TX_PACKETS_COUNT; i++) { 1630 1606 dmamem_unmap_anonymous(e1000->tx_frame_virt[i]); 1631 1607 e1000->tx_frame_virt[i] = NULL; … … 1654 1630 /* Write descriptor */ 1655 1631 for (unsigned int offset = 0; 1656 offset < E1000_TX_ FRAME_COUNT;1632 offset < E1000_TX_PACKETS_COUNT; 1657 1633 offset++) 1658 1634 e1000_clear_tx_descriptor(nic, offset); … … 1711 1687 } 1712 1688 1713 /** Activate the device to receive and transmit frames1689 /** Activate the device to receive and transmit packets 1714 1690 * 1715 1691 * @param nic NIC driver data … … 2307 2283 2308 2284 if (!descriptor_available) { 2309 /* Framelost */2285 /* Packet lost */ 2310 2286 fibril_mutex_unlock(&e1000->tx_lock); 2311 2287 return; … … 2336 2312 2337 2313 tdt++; 2338 if (tdt == E1000_TX_ FRAME_COUNT)2314 if (tdt == E1000_TX_PACKETS_COUNT) 2339 2315 tdt = 0; 2340 2316 -
uspace/drv/nic/e1k/e1k.h
r3fe58d3c r7943c43 39 39 #include <stdint.h> 40 40 41 /** Ethernet CRC size after framereceived in rx_descriptor */41 /** Ethernet CRC size after packet received in rx_descriptor */ 42 42 #define E1000_CRC_SIZE 4 43 43 … … 109 109 /** Transmit descriptor COMMAND field bits */ 110 110 typedef enum { 111 TXDESCRIPTOR_COMMAND_VLE = (1 << 6), /**< VLAN frameEnable */111 TXDESCRIPTOR_COMMAND_VLE = (1 << 6), /**< VLAN Packet Enable */ 112 112 TXDESCRIPTOR_COMMAND_RS = (1 << 3), /**< Report Status */ 113 113 TXDESCRIPTOR_COMMAND_IFCS = (1 << 1), /**< Insert FCS */ -
uspace/drv/nic/lo/lo.c
r3fe58d3c r7943c43 42 42 #include <async.h> 43 43 #include <nic.h> 44 #include <packet_client.h> 44 45 45 46 #define NAME "lo" … … 60 61 static void lo_send_frame(nic_t *nic_data, void *data, size_t size) 61 62 { 63 packet_t *packet; 64 int rc; 65 66 packet = nic_alloc_packet(nic_data, size); 67 if (packet == NULL) 68 return; 69 70 rc = packet_copy_data(packet, data, size); 71 if (rc != EOK) 72 return; 73 62 74 nic_report_send_ok(nic_data, 1, size); 63 nic_received_noneth_ frame(nic_data, data, size);75 nic_received_noneth_packet(nic_data, packet); 64 76 } 65 77 -
uspace/drv/nic/ne2k/dp8390.c
r3fe58d3c r7943c43 59 59 #include <stdio.h> 60 60 #include <libarch/ddi.h> 61 #include <net/packet.h> 62 #include <packet_client.h> 61 63 #include "dp8390.h" 62 64 … … 74 76 uint8_t status; 75 77 76 /** Pointer to next frame*/78 /** Pointer to next packet */ 77 79 uint8_t next; 78 80 … … 391 393 /* 392 394 * Reset the transmit ring. If we were transmitting a frame, 393 * we pretend that the frameis processed. Higher layers will394 * retransmit if the framewasn't actually sent.395 * we pretend that the packet is processed. Higher layers will 396 * retransmit if the packet wasn't actually sent. 395 397 */ 396 398 ne2k->sq.dirty = false; … … 446 448 return NULL; 447 449 448 bzero(frame->data, length); 450 void *buf = packet_suffix(frame->packet, length); 451 bzero(buf, length); 449 452 uint8_t last = page + length / DP_PAGE; 450 453 … … 452 455 size_t left = (ne2k->stop_page - page) * DP_PAGE 453 456 - sizeof(recv_header_t); 454 ne2k_download(ne2k, frame->data, page * DP_PAGE + sizeof(recv_header_t),457 ne2k_download(ne2k, buf, page * DP_PAGE + sizeof(recv_header_t), 455 458 left); 456 ne2k_download(ne2k, frame->data+ left, ne2k->start_page * DP_PAGE,459 ne2k_download(ne2k, buf + left, ne2k->start_page * DP_PAGE, 457 460 length - left); 458 461 } else { 459 ne2k_download(ne2k, frame->data, page * DP_PAGE + sizeof(recv_header_t),462 ne2k_download(ne2k, buf, page * DP_PAGE + sizeof(recv_header_t), 460 463 length); 461 464 } … … 538 541 * Update the boundary pointer 539 542 * to the value of the page 540 * prior to the next frameto543 * prior to the next packet to 541 544 * be processed. 542 545 */ … … 581 584 fibril_mutex_lock(&ne2k->sq_mutex); 582 585 if (ne2k->sq.dirty) { 583 /* Prepare the buffer for next frame*/586 /* Prepare the buffer for next packet */ 584 587 ne2k->sq.dirty = false; 585 588 ne2k->sq.size = 0; -
uspace/drv/nic/ne2k/dp8390.h
r3fe58d3c r7943c43 264 264 extern void ne2k_send(nic_t *, void *, size_t); 265 265 extern void ne2k_interrupt(nic_t *, uint8_t, uint8_t); 266 extern packet_t *ne2k_alloc_packet(nic_t *, size_t); 266 267 267 268 extern void ne2k_set_accept_mcast(ne2k_t *, int); -
uspace/drv/nic/ne2k/ne2k.c
r3fe58d3c r7943c43 261 261 /* Note: some frame with previous physical address may slip to NIL here 262 262 * (for a moment the filtering is not exact), but ethernet should be OK with 263 * that. Some framesmay also be lost, but this is not a problem.263 * that. Some packet may also be lost, but this is not a problem. 264 264 */ 265 265 ne2k_set_physical_address((ne2k_t *) nic_get_specific(nic_data), address); -
uspace/drv/nic/rtl8139/defs.h
r3fe58d3c r7943c43 42 42 #define RTL8139_IO_SIZE 256 43 43 44 /** The maximal transmitted framelength in bytes allowed according to RTL813944 /** The maximal transmitted packet length in bytes allowed according to RTL8139 45 45 * documentation (see SIZE part of TSD documentation) 46 46 */ 47 #define RTL8139_ FRAME_MAX_LENGTH 179247 #define RTL8139_PACKET_MAX_LENGTH 1792 48 48 49 49 … … 94 94 95 95 CR = 0x37, /**< Command register, 1b */ 96 CAPR = 0x38, /**< Current address of frameread, 2b */96 CAPR = 0x38, /**< Current address of packet read, 2b */ 97 97 CBA = 0x3a, /**< Current buffer address, 2b */ 98 98 … … 282 282 RCR_MulERINT = 1 << 17, /**< Multiple early interrupt select */ 283 283 284 /** Minimal error framelength (1 = 8B, 0 = 64B). If AER/AR is set, RER8284 /** Minimal error packet length (1 = 8B, 0 = 64B). If AER/AR is set, RER8 285 285 * is "Don't care" 286 286 */ … … 302 302 303 303 RCR_WRAP = 1 << 7, /**< Rx buffer wrapped */ 304 RCR_ACCEPT_ERROR = 1 << 5, /**< Accept error frame*/305 RCR_ACCEPT_RUNT = 1 << 4, /**< Accept Runt (8-64 bytes) frames */304 RCR_ACCEPT_ERROR = 1 << 5, /**< Accept error packet */ 305 RCR_ACCEPT_RUNT = 1 << 4, /**< Accept Runt (8-64 bytes) packets */ 306 306 RCR_ACCEPT_BROADCAST = 1 << 3, /**< Accept broadcast */ 307 307 RCR_ACCEPT_MULTICAST = 1 << 2, /**< Accept multicast */ 308 308 RCR_ACCEPT_PHYS_MATCH = 1 << 1, /**< Accept device MAC address match */ 309 RCR_ACCEPT_ALL_PHYS = 1 << 0, /**< Accept all frames with309 RCR_ACCEPT_ALL_PHYS = 1 << 0, /**< Accept all packets with 310 310 * phys. desticnation 311 311 */ … … 362 362 ANAR_ACK = (1 << 14), /**< Capability reception acknowledge */ 363 363 ANAR_REMOTE_FAULT = (1 << 13), /**< Remote fault detection capability */ 364 ANAR_PAUSE = (1 << 10), /**< Symetric pause framecapability */364 ANAR_PAUSE = (1 << 10), /**< Symetric pause packet capability */ 365 365 ANAR_100T4 = (1 << 9), /**< T4, not supported by the device */ 366 366 ANAR_100TX_FD = (1 << 8), /**< 100BASE_TX full duplex */ … … 399 399 CONFIG3_GNT_SELECT = (1 << 7), /**< Gnt select */ 400 400 CONFIG3_PARM_EN = (1 << 6), /**< Parameter enabled (100MBit mode) */ 401 CONFIG3_MAGIC = (1 << 5), /**< WoL Magic frameenable */401 CONFIG3_MAGIC = (1 << 5), /**< WoL Magic packet enable */ 402 402 CONFIG3_LINK_UP = (1 << 4), /**< Wakeup if link is reestablished */ 403 403 CONFIG3_CLKRUN_EN = (1 << 2), /**< CLKRUN enabled */ /* TODO: check what does it mean */ … … 416 416 }; 417 417 418 /** Maximal runt framesize + 1 */418 /** Maximal runt packet size + 1 */ 419 419 #define RTL8139_RUNT_MAX_SIZE 64 420 420 421 /** Bits in frameheader */422 enum rtl8139_ frame_header {421 /** Bits in packet header */ 422 enum rtl8139_packet_header { 423 423 RSR_MAR = (1 << 15), /**< Multicast received */ 424 424 RSR_PAM = (1 << 14), /**< Physical address match */ … … 426 426 427 427 RSR_ISE = (1 << 5), /**< Invalid symbol error, 100BASE-TX only */ 428 RSR_RUNT = (1 << 4), /**< Runt frame(< RTL8139_RUNT_MAX_SIZE bytes) */429 430 RSR_LONG = (1 << 3), /**< Long frame(size > 4k bytes) */428 RSR_RUNT = (1 << 4), /**< Runt packet (< RTL8139_RUNT_MAX_SIZE bytes) */ 429 430 RSR_LONG = (1 << 3), /**< Long packet (size > 4k bytes) */ 431 431 RSR_CRC = (1 << 2), /**< CRC error */ 432 432 RSR_FAE = (1 << 1), /**< Frame alignment error */ 433 RSR_ROK = (1 << 0) /**< Good framereceived */433 RSR_ROK = (1 << 0) /**< Good packet received */ 434 434 }; 435 435 … … 451 451 */ 452 452 453 APPEND_CRC = 1 << 16, /**< Append CRC at the end of a frame*/453 APPEND_CRC = 1 << 16, /**< Append CRC at the end of a packet */ 454 454 455 455 MXTxDMA_SHIFT = 8, /**< Max. DMA Burst per TxDMA shift, burst = 16^value */ … … 459 459 TX_RETRY_COUNT_SIZE = 4, /**< Retries before aborting size */ 460 460 461 CLEAR_ABORT = 1 << 0 /**< Retransmit aborted frameat the last461 CLEAR_ABORT = 1 << 0 /**< Retransmit aborted packet at the last 462 462 * transmitted descriptor 463 463 */ … … 478 478 extern const struct rtl8139_hwver_map rtl8139_versions[RTL8139_VER_COUNT + 1]; 479 479 480 /** Size in the frameheader while copying from RxFIFO to Rx buffer */480 /** Size in the packet header while copying from RxFIFO to Rx buffer */ 481 481 #define RTL8139_EARLY_SIZE UINT16_C(0xfff0) 482 /** The only supported pause frametime value */482 /** The only supported pause packet time value */ 483 483 #define RTL8139_PAUSE_VAL UINT16_C(0xFFFF) 484 484 485 /** Size of the frameheader in front of the received frame */486 #define RTL_ FRAME_HEADER_SIZE 4485 /** Size of the packet header in front of the received frame */ 486 #define RTL_PACKET_HEADER_SIZE 4 487 487 488 488 /** 8k buffer */ -
uspace/drv/nic/rtl8139/driver.c
r3fe58d3c r7943c43 39 39 #include <io/log.h> 40 40 #include <nic.h> 41 #include <packet_client.h> 41 42 #include <device/pci.h> 42 43 … … 151 152 } 152 153 153 /** Update the mask of accepted frames in the RCR register according to154 /** Update the mask of accepted packets in the RCR register according to 154 155 * rcr_accept_mode value in rtl8139_t 155 156 * … … 169 170 } 170 171 171 /** Fill the mask of accepted multicast frames in the card registers172 /** Fill the mask of accepted multicast packets in the card registers 172 173 * 173 174 * @param rtl8139 The rtl8139 private data … … 393 394 #define rtl8139_tbuf_busy(tsd) ((pio_read_32(tsd) & TSD_OWN) == 0) 394 395 395 /** Send framewith the hardware396 /** Send packet with the hardware 396 397 * 397 398 * note: the main_lock is locked when framework calls this function … … 411 412 ddf_msg(LVL_DEBUG, "Sending frame"); 412 413 413 if (size > RTL8139_ FRAME_MAX_LENGTH) {414 if (size > RTL8139_PACKET_MAX_LENGTH) { 414 415 ddf_msg(LVL_ERROR, "Send frame: frame too long, %zu bytes", 415 416 size); … … 436 437 fibril_mutex_unlock(&rtl8139->tx_lock); 437 438 438 /* Get address of the buffer descriptor and framedata */439 /* Get address of the buffer descriptor and packet data */ 439 440 void *tsd = rtl8139->io_port + TSD0 + tx_curr * 4; 440 441 void *buf_addr = rtl8139->tx_buff[tx_curr]; … … 504 505 } 505 506 506 /** Create framestructure from the buffer data507 /** Create packet structure from the buffer data 507 508 * 508 509 * @param nic_data NIC driver data 509 510 * @param rx_buffer The receiver buffer 510 511 * @param rx_size The buffer size 511 * @param frame_startThe offset where packet data start512 * @param frame_size The size of the framedata513 * 514 * @return The framelist node (not connected)515 */ 516 static nic_frame_t *rtl8139_read_ frame(nic_t *nic_data,517 void *rx_buffer, size_t rx_size, size_t frame_start, size_t frame_size)518 { 519 nic_frame_t *frame = nic_alloc_frame(nic_data, frame_size);512 * @param packet_start The offset where packet data start 513 * @param packet_size The size of the packet data 514 * 515 * @return The packet list node (not connected) 516 */ 517 static nic_frame_t *rtl8139_read_packet(nic_t *nic_data, 518 void *rx_buffer, size_t rx_size, size_t packet_start, size_t packet_size) 519 { 520 nic_frame_t *frame = nic_alloc_frame(nic_data, packet_size); 520 521 if (! frame) { 521 ddf_msg(LVL_ERROR, "Can not allocate frame for received frame.");522 ddf_msg(LVL_ERROR, "Can not allocate frame for received packet."); 522 523 return NULL; 523 524 } 524 525 525 void *ret = rtl8139_memcpy_wrapped(frame->data, rx_buffer, frame_start, 526 RxBUF_SIZE, frame_size); 526 void *packet_data = packet_suffix(frame->packet, packet_size); 527 if (!packet_data) { 528 ddf_msg(LVL_ERROR, "Can not get the packet suffix."); 529 nic_release_frame(nic_data, frame); 530 return NULL; 531 } 532 533 void *ret = rtl8139_memcpy_wrapped(packet_data, rx_buffer, packet_start, 534 RxBUF_SIZE, packet_size); 527 535 if (ret == NULL) { 528 536 nic_release_frame(nic_data, frame); … … 560 568 } 561 569 562 /** Receive all frames in queue570 /** Receive all packets in queue 563 571 * 564 572 * @param nic_data The controller data 565 * @return The linked list of nic_frame_list_t nodes, each containing one frame566 */ 567 static nic_frame_list_t *rtl8139_ frame_receive(nic_t *nic_data)573 * @return The linked list of packet_list_t nodes, each containing one packet 574 */ 575 static nic_frame_list_t *rtl8139_packet_receive(nic_t *nic_data) 568 576 { 569 577 rtl8139_t *rtl8139 = nic_get_specific(nic_data); … … 573 581 nic_frame_list_t *frames = nic_alloc_frame_list(); 574 582 if (!frames) 575 ddf_msg(LVL_ERROR, "Can not allocate frame list for received frames.");583 ddf_msg(LVL_ERROR, "Can not allocate frame list for received packets."); 576 584 577 585 void *rx_buffer = rtl8139->rx_buff_virt; … … 597 605 while (!rtl8139_hw_buffer_empty(rtl8139)) { 598 606 void *rx_ptr = rx_buffer + rx_offset % RxBUF_SIZE; 599 uint32_t frame_header = uint32_t_le2host( *((uint32_t*)rx_ptr) );600 uint16_t size = frame_header >> 16;601 uint16_t frame_size = size - RTL8139_CRC_SIZE;602 /* received frame flags in frameheader */603 uint16_t rcs = (uint16_t) frame_header;607 uint32_t packet_header = uint32_t_le2host( *((uint32_t*)rx_ptr) ); 608 uint16_t size = packet_header >> 16; 609 uint16_t packet_size = size - RTL8139_CRC_SIZE; 610 /* received packet flags in packet header */ 611 uint16_t rcs = (uint16_t) packet_header; 604 612 605 613 if (size == RTL8139_EARLY_SIZE) { 606 /* The framecopying is still in progress, break receiving */614 /* The packet copying is still in progress, break receiving */ 607 615 ddf_msg(LVL_DEBUG, "Early threshold reached, not completely coppied"); 608 616 break; … … 610 618 611 619 /* Check if the header is valid, otherwise we are lost in the buffer */ 612 if (size == 0 || size > RTL8139_ FRAME_MAX_LENGTH) {620 if (size == 0 || size > RTL8139_PACKET_MAX_LENGTH) { 613 621 ddf_msg(LVL_ERROR, "Receiver error -> receiver reset (size: %4"PRIu16", " 614 "header 0x%4"PRIx16". Offset: %zu)", size, frame_header,622 "header 0x%4"PRIx16". Offset: %zu)", size, packet_header, 615 623 rx_offset); 616 624 goto rx_err; … … 621 629 } 622 630 623 cur_read += size + RTL_ FRAME_HEADER_SIZE;631 cur_read += size + RTL_PACKET_HEADER_SIZE; 624 632 if (cur_read > max_read) 625 633 break; 626 634 627 635 if (frames) { 628 nic_frame_t *frame = rtl8139_read_ frame(nic_data, rx_buffer,629 RxBUF_SIZE, rx_offset + RTL_ FRAME_HEADER_SIZE, frame_size);636 nic_frame_t *frame = rtl8139_read_packet(nic_data, rx_buffer, 637 RxBUF_SIZE, rx_offset + RTL_PACKET_HEADER_SIZE, packet_size); 630 638 631 639 if (frame) … … 634 642 635 643 /* Update offset */ 636 rx_offset = ALIGN_UP(rx_offset + size + RTL_ FRAME_HEADER_SIZE, 4);637 638 /* Write lesser value to prevent overflow into unread frame644 rx_offset = ALIGN_UP(rx_offset + size + RTL_PACKET_HEADER_SIZE, 4); 645 646 /* Write lesser value to prevent overflow into unread packet 639 647 * (the recomendation from the RealTech rtl8139 programming guide) 640 648 */ … … 719 727 tx_used++; 720 728 721 /* If the framewas sent */729 /* If the packet was sent */ 722 730 if (tsd_value & TSD_TOK) { 723 731 size_t size = REG_GET_VAL(tsd_value, TSD_SIZE); … … 749 757 } 750 758 751 /** Receive all frames from the buffer759 /** Receive all packets from the buffer 752 760 * 753 761 * @param rtl8139 driver private data 754 762 */ 755 static void rtl8139_receive_ frames(nic_t *nic_data)763 static void rtl8139_receive_packets(nic_t *nic_data) 756 764 { 757 765 assert(nic_data); … … 761 769 762 770 fibril_mutex_lock(&rtl8139->rx_lock); 763 nic_frame_list_t *frames = rtl8139_ frame_receive(nic_data);771 nic_frame_list_t *frames = rtl8139_packet_receive(nic_data); 764 772 fibril_mutex_unlock(&rtl8139->rx_lock); 765 773 … … 817 825 } 818 826 819 /* Check transmittion interrupts first to allow transmit next frames827 /* Check transmittion interrupts first to allow transmit next packets 820 828 * sooner 821 829 */ … … 824 832 } 825 833 if (isr & INT_ROK) { 826 rtl8139_receive_ frames(nic_data);834 rtl8139_receive_packets(nic_data); 827 835 } 828 836 if (isr & (INT_RER | INT_RXOVW | INT_FIFOOVW)) { … … 925 933 } 926 934 927 /** Activate the device to receive and transmit frames935 /** Activate the device to receive and transmit packets 928 936 * 929 937 * @param nic_data The nic driver data … … 1205 1213 goto failed; 1206 1214 1207 /* Set default frameacceptance */1215 /* Set default packet acceptance */ 1208 1216 rtl8139->rcr_data.ucast_mask = RTL8139_RCR_UCAST_DEFAULT; 1209 1217 rtl8139->rcr_data.mcast_mask = RTL8139_RCR_MCAST_DEFAULT; 1210 1218 rtl8139->rcr_data.bcast_mask = RTL8139_RCR_BCAST_DEFAULT; 1211 1219 rtl8139->rcr_data.defect_mask = RTL8139_RCR_DEFECT_DEFAULT; 1212 /* Set receiver early treshold to 8/16 of framelength */1220 /* Set receiver early treshold to 8/16 of packet length */ 1213 1221 rtl8139->rcr_data.rcr_base = (0x8 << RCR_ERTH_SHIFT); 1214 1222 … … 1469 1477 }; 1470 1478 1471 /** Check if pause frameoperations are valid in current situation1479 /** Check if pause packet operations are valid in current situation 1472 1480 * 1473 1481 * @param rtl8139 RTL8139 private structure … … 1494 1502 } 1495 1503 1496 /** Get current pause frameconfiguration1504 /** Get current pause packet configuration 1497 1505 * 1498 1506 * Values are filled with NIC_RESULT_NOT_AVAILABLE if the value has no sense in … … 1500 1508 * 1501 1509 * @param[in] fun The DDF structure of the RTL8139 1502 * @param[out] we_send Sign if local constroller sends pause frame1503 * @param[out] we_receive Sign if local constroller receives pause frame1504 * @param[out] time Time filled in pause frames. 0xFFFF in rtl81391510 * @param[out] we_send Sign if local constroller sends pause packets 1511 * @param[out] we_receive Sign if local constroller receives pause packets 1512 * @param[out] time Time filled in pause packets. 0xFFFF in rtl8139 1505 1513 * 1506 1514 * @return EOK if succeed … … 1532 1540 }; 1533 1541 1534 /** Set current pause frameconfiguration1542 /** Set current pause packet configuration 1535 1543 * 1536 1544 * @param fun The DDF structure of the RTL8139 1537 * @param allow_send Sign if local constroller sends pause frame1538 * @param allow_receive Sign if local constroller receives pause frames1545 * @param allow_send Sign if local constroller sends pause packets 1546 * @param allow_receive Sign if local constroller receives pause packets 1539 1547 * @param time Time to use, ignored (not supported by device) 1540 1548 * 1541 * @return EOK if succeed, INVAL if the pause framehas no sence1549 * @return EOK if succeed, INVAL if the pause packet has no sence 1542 1550 */ 1543 1551 static int rtl8139_pause_set(ddf_fun_t *fun, int allow_send, int allow_receive, … … 1788 1796 } 1789 1797 1790 /** Set unicast frames acceptance mode1798 /** Set unicast packets acceptance mode 1791 1799 * 1792 1800 * @param nic_data The nic device to update … … 1846 1854 } 1847 1855 1848 /** Set multicast frames acceptance mode1856 /** Set multicast packets acceptance mode 1849 1857 * 1850 1858 * @param nic_data The nic device to update … … 1891 1899 } 1892 1900 1893 /** Set broadcast frames acceptance mode1901 /** Set broadcast packets acceptance mode 1894 1902 * 1895 1903 * @param nic_data The nic device to update … … 1921 1929 } 1922 1930 1923 /** Get state of acceptance of weird frames1931 /** Get state of acceptance of weird packets 1924 1932 * 1925 1933 * @param[in] device The device to check … … 1943 1951 }; 1944 1952 1945 /** Set acceptance of weird frames1953 /** Set acceptance of weird packets 1946 1954 * 1947 1955 * @param device The device to update … … 2119 2127 } 2120 2128 2121 /** Force receiving all frames in the receive buffer2129 /** Force receiving all packets in the receive buffer 2122 2130 * 2123 2131 * @param device The device to receive -
uspace/drv/nic/rtl8139/driver.h
r3fe58d3c r7943c43 39 39 /** Transmittion buffers count */ 40 40 #define TX_BUFF_COUNT 4 41 /** Size of buffer for one frame41 /** Size of buffer for one packet 42 42 * - 2kB 43 43 */ … … 49 49 #define RTL8139_CRC_SIZE 4 50 50 51 /** The default mode of accepting unicast frames */51 /** The default mode of accepting unicast packets */ 52 52 #define RTL8139_RCR_UCAST_DEFAULT RCR_ACCEPT_PHYS_MATCH 53 /** The default mode of accepting multicast frames */53 /** The default mode of accepting multicast packets */ 54 54 #define RTL8139_RCR_MCAST_DEFAULT 0 55 /** The default mode of accepting broadcast frames */55 /** The default mode of accepting broadcast packets */ 56 56 #define RTL8139_RCR_BCAST_DEFAULT RCR_ACCEPT_BROADCAST 57 /** The default mode of accepting defect frames */57 /** The default mode of accepting defect packets */ 58 58 #define RTL8139_RCR_DEFECT_DEFAULT 0 59 59 … … 112 112 size_t tx_used; 113 113 114 /** Buffer for receiving frames */114 /** Buffer for receiving packets */ 115 115 void *rx_buff_phys; 116 116 void *rx_buff_virt; -
uspace/lib/net/include/nil_remote.h
r3fe58d3c r7943c43 39 39 #include <generic.h> 40 40 #include <async.h> 41 #include <sys/types.h>42 41 43 42 #define nil_bind_service(service, device_id, me, receiver) \ … … 62 61 size_t); 63 62 extern int nil_device_state_msg(async_sess_t *, nic_device_id_t, sysarg_t); 64 extern int nil_received_msg(async_sess_t *, nic_device_id_t, void *, size_t);63 extern int nil_received_msg(async_sess_t *, nic_device_id_t, packet_id_t); 65 64 extern int nil_addr_changed_msg(async_sess_t *, nic_device_id_t, 66 65 const nic_address_t *); -
uspace/lib/net/nil/nil_remote.c
r3fe58d3c r7943c43 77 77 */ 78 78 int nil_received_msg(async_sess_t *sess, nic_device_id_t device_id, 79 void *data, size_t size)79 packet_id_t packet_id) 80 80 { 81 async_exch_t *exch = async_exchange_begin(sess); 82 83 ipc_call_t answer; 84 aid_t req = async_send_1(exch, NET_NIL_RECEIVED, (sysarg_t) device_id, 85 &answer); 86 sysarg_t retval = async_data_write_start(exch, data, size); 87 88 async_exchange_end(exch); 89 90 if (retval != EOK) { 91 async_wait_for(req, NULL); 92 return retval; 93 } 94 95 async_wait_for(req, &retval); 96 return retval; 81 return generic_received_msg_remote(sess, NET_NIL_RECEIVED, 82 device_id, packet_id, 0, 0); 97 83 } 98 84 -
uspace/lib/nic/include/nic.h
r3fe58d3c r7943c43 42 42 #include <ddf/driver.h> 43 43 #include <device/hw_res_parsed.h> 44 #include <net/packet.h> 44 45 #include <ops/nic.h> 45 46 … … 60 61 61 62 /** 62 * Simple structure for sending lists of frames.63 * Simple structure for sending the allocated frames (packets) in a list. 63 64 */ 64 65 typedef struct { 65 66 link_t link; 66 void *data; 67 size_t size; 67 packet_t *packet; 68 68 } nic_frame_t; 69 69 … … 71 71 72 72 /** 73 * Handler for writing framedata to the NIC device.74 * The function is responsible for releasing the frame.73 * Handler for writing packet data to the NIC device. 74 * The function is responsible for releasing the packet. 75 75 * It does not return anything, if some error is detected the function just 76 76 * silently fails (logging on debug level is suggested). … … 158 158 * @return ENOTSUP If this filter cannot work on this NIC (e.g. the NIC 159 159 * cannot run in promiscuous node or the limit of WOL 160 * frames' specifications was reached).160 * packets' specifications was reached). 161 161 * @return ELIMIT If this filter must implemented in HW but currently the 162 162 * limit of these HW filters was reached. … … 233 233 extern int nic_report_poll_mode(nic_t *, nic_poll_mode_t, struct timeval *); 234 234 extern void nic_query_address(nic_t *, nic_address_t *); 235 extern void nic_received_noneth_frame(nic_t *, void *, size_t); 235 extern void nic_received_packet(nic_t *, packet_t *); 236 extern void nic_received_noneth_packet(nic_t *, packet_t *); 236 237 extern void nic_received_frame(nic_t *, nic_frame_t *); 237 238 extern void nic_received_frame_list(nic_t *, nic_frame_list_t *); … … 247 248 extern void nic_report_collisions(nic_t *, unsigned); 248 249 249 /* Frame / frame list allocation and deallocation */ 250 /* Packet / frame / frame list allocation and deallocation */ 251 extern packet_t *nic_alloc_packet(nic_t *, size_t); 252 extern void nic_release_packet(nic_t *, packet_t *); 250 253 extern nic_frame_t *nic_alloc_frame(nic_t *, size_t); 251 254 extern nic_frame_list_t *nic_alloc_frame_list(void); … … 272 275 extern void nic_sw_period_stop(nic_t *); 273 276 277 /* Packet DMA lock */ 278 extern int nic_dma_lock_packet(packet_t *, size_t, void **); 279 extern int nic_dma_unlock_packet(packet_t *, size_t); 280 274 281 #endif // __NIC_H__ 275 282 -
uspace/lib/nic/include/nic_rx_control.h
r3fe58d3c r7943c43 46 46 #include <fibril_synch.h> 47 47 #include <net/device.h> 48 #include <net/packet_header.h> 48 49 49 50 #include "nic_addr_db.h" … … 119 120 const nic_address_t *prev_addr, const nic_address_t *curr_addr); 120 121 extern int nic_rxc_check(const nic_rxc_t *rxc, 121 const void *data, size_t size, nic_frame_type_t *frame_type);122 const packet_t *packet, nic_frame_type_t *frame_type); 122 123 extern void nic_rxc_hw_filtering(nic_rxc_t *rxc, 123 124 int unicast_exact, int multicast_exact, int vlan_exact); -
uspace/lib/nic/src/nic_driver.c
r3fe58d3c r7943c43 51 51 #include <net_interface.h> 52 52 #include <ops/nic.h> 53 #include <packet_client.h> 54 #include <packet_remote.h> 55 #include <net/packet_header.h> 53 56 #include <errno.h> 54 57 … … 61 64 62 65 /** 63 * Initializes libraries required for NIC framework - logger 66 * Initializes libraries required for NIC framework - logger, packet manager 64 67 * 65 68 * @param name Name of the device/driver (used in logging) … … 76 79 snprintf(buffer, 256, "drv/" DEVICE_CATEGORY_NIC "/%s", name); 77 80 78 return EOK; 81 /* Initialize packet manager */ 82 return pm_init(); 79 83 } 80 84 … … 158 162 159 163 /** 160 * Setup send framehandler. This MUST be called in the add_device handler164 * Setup write packet handler. This MUST be called in the add_device handler 161 165 * if the nic_send_message_impl function is used for sending messages (filled 162 166 * as send_message member of the nic_iface_t structure). The function must not … … 266 270 } 267 271 268 /** Allocate frame 272 /** 273 * Just a wrapper over the packet_get_1_remote function 274 */ 275 packet_t *nic_alloc_packet(nic_t *nic_data, size_t data_size) 276 { 277 return packet_get_1_remote(nic_data->net_session, data_size); 278 } 279 280 281 /** 282 * Just a wrapper over the pq_release_remote function 283 */ 284 void nic_release_packet(nic_t *nic_data, packet_t *packet) 285 { 286 pq_release_remote(nic_data->net_session, packet_get_id(packet)); 287 } 288 289 /** Allocate frame and packet 269 290 * 270 291 * @param nic_data The NIC driver data 271 * @param size Frame size in bytes 292 * @param packet_size Size of packet 293 * @param offload_size Size of packet offload 272 294 * @return pointer to allocated frame if success, NULL otherwise 273 295 */ 274 nic_frame_t *nic_alloc_frame(nic_t *nic_data, size_t size)296 nic_frame_t *nic_alloc_frame(nic_t *nic_data, size_t packet_size) 275 297 { 276 298 nic_frame_t *frame; … … 291 313 } 292 314 293 frame->data = malloc(size);294 if ( frame->data == NULL) {315 packet_t *packet = nic_alloc_packet(nic_data, packet_size); 316 if (!packet) { 295 317 free(frame); 296 318 return NULL; 297 319 } 298 320 299 frame-> size = size;321 frame->packet = packet; 300 322 return frame; 301 323 } … … 310 332 if (!frame) 311 333 return; 312 313 if (frame->data != NULL) { 314 free(frame->data); 315 frame->data = NULL; 316 frame->size = 0; 317 } 318 334 if (frame->packet != NULL) { 335 nic_release_packet(nic_data, frame->packet); 336 } 319 337 fibril_mutex_lock(&nic_globals.lock); 320 338 if (nic_globals.frame_cache_size >= NIC_GLOBALS_MAX_CACHE_SIZE) { … … 586 604 587 605 /** 588 * The busy flag can be set to 1 only in the send_framehandler, to 0 it can606 * The busy flag can be set to 1 only in the write_packet handler, to 0 it can 589 607 * be set anywhere. 590 608 * … … 595 613 { 596 614 /* 597 * When the function is called in send_framehandler the main lock is615 * When the function is called in write_packet handler the main lock is 598 616 * locked so no race can happen. 599 617 * Otherwise, when it is unexpectedly set to 0 (even with main lock held … … 604 622 605 623 /** 606 * This is the function that the driver should call when it receives a frame.607 * The frameis checked by filters and then sent up to the NIL layer or608 * discarded . The frame is released.609 * 610 * @param nic_data 611 * @param frame The received frame624 * Provided for correct naming conventions. 625 * The packet is checked by filters and then sent up to the NIL layer or 626 * discarded, the frame is released. 627 * 628 * @param nic_data 629 * @param frame The frame containing received packet 612 630 */ 613 631 void nic_received_frame(nic_t *nic_data, nic_frame_t *frame) 614 632 { 633 nic_received_packet(nic_data, frame->packet); 634 frame->packet = NULL; 635 nic_release_frame(nic_data, frame); 636 } 637 638 /** 639 * This is the function that the driver should call when it receives a packet. 640 * The packet is checked by filters and then sent up to the NIL layer or 641 * discarded. 642 * 643 * @param nic_data 644 * @param packet The received packet 645 */ 646 void nic_received_packet(nic_t *nic_data, packet_t *packet) 647 { 615 648 /* Note: this function must not lock main lock, because loopback driver 616 * calls it inside send_frame handler (with locked main lock) */ 649 * calls it inside write_packet handler (with locked main lock) */ 650 packet_id_t pid = packet_get_id(packet); 651 617 652 fibril_rwlock_read_lock(&nic_data->rxc_lock); 618 653 nic_frame_type_t frame_type; 619 int check = nic_rxc_check(&nic_data->rx_control, frame->data, 620 frame->size, &frame_type); 654 int check = nic_rxc_check(&nic_data->rx_control, packet, &frame_type); 621 655 fibril_rwlock_read_unlock(&nic_data->rxc_lock); 622 656 /* Update statistics */ 623 657 fibril_rwlock_write_lock(&nic_data->stats_lock); 624 658 /* Both sending message up and releasing packet are atomic IPC calls */ 625 659 if (nic_data->state == NIC_STATE_ACTIVE && check) { 626 660 nic_data->stats.receive_packets++; 627 nic_data->stats.receive_bytes += frame->size;661 nic_data->stats.receive_bytes += packet_get_data_length(packet); 628 662 switch (frame_type) { 629 663 case NIC_FRAME_MULTICAST: … … 637 671 } 638 672 fibril_rwlock_write_unlock(&nic_data->stats_lock); 639 nil_received_msg(nic_data->nil_session, nic_data->device_id, 640 frame->data, frame->size); 673 nil_received_msg(nic_data->nil_session, nic_data->device_id, pid); 641 674 } else { 642 675 switch (frame_type) { … … 652 685 } 653 686 fibril_rwlock_write_unlock(&nic_data->stats_lock); 654 }655 nic_release_frame(nic_data, frame);687 nic_release_packet(nic_data, packet); 688 } 656 689 } 657 690 658 691 /** 659 692 * This function is to be used only in the loopback driver. It's workaround 660 * for the situation when the framedoes not contain ethernet address.693 * for the situation when the packet does not contain ethernet address. 661 694 * The filtering is therefore not applied here. 662 695 * 663 696 * @param nic_data 664 * @param data Frame data 665 * @param size Frame size in bytes 666 */ 667 void nic_received_noneth_frame(nic_t *nic_data, void *data, size_t size) 697 * @param packet 698 */ 699 void nic_received_noneth_packet(nic_t *nic_data, packet_t *packet) 668 700 { 669 701 fibril_rwlock_write_lock(&nic_data->stats_lock); 670 702 nic_data->stats.receive_packets++; 671 nic_data->stats.receive_bytes += size;703 nic_data->stats.receive_bytes += packet_get_data_length(packet); 672 704 fibril_rwlock_write_unlock(&nic_data->stats_lock); 673 705 674 706 nil_received_msg(nic_data->nil_session, nic_data->device_id, 675 data, size);676 } 677 678 /** 679 * Some NICs can receive multiple frames during single interrupt. These can707 packet_get_id(packet)); 708 } 709 710 /** 711 * Some NICs can receive multiple packets during single interrupt. These can 680 712 * send them in whole list of frames (actually nic_frame_t structures), then 681 * the list is deallocated and each frameis passed to the713 * the list is deallocated and each packet is passed to the 682 714 * nic_received_packet function. 683 715 * … … 694 726 695 727 list_remove(&frame->link); 696 nic_received_frame(nic_data, frame); 728 nic_received_packet(nic_data, frame->packet); 729 frame->packet = NULL; 730 nic_release_frame(nic_data, frame); 697 731 } 698 732 nic_driver_release_frame_list(frames); … … 1295 1329 } 1296 1330 1331 /** Lock packet for DMA usage 1332 * 1333 * @param packet 1334 * @return physical address of packet 1335 */ 1336 int nic_dma_lock_packet(packet_t *packet, size_t size, void **phys) 1337 { 1338 return dmamem_map(packet, SIZE2PAGES(size), 0, 0, phys); 1339 } 1340 1341 /** Unlock packet after DMA usage 1342 * 1343 * @param packet 1344 */ 1345 int nic_dma_unlock_packet(packet_t *packet, size_t size) 1346 { 1347 return dmamem_unmap(packet, size); 1348 } 1349 1297 1350 /** @} 1298 1351 */ -
uspace/lib/nic/src/nic_rx_control.c
r3fe58d3c r7943c43 392 392 * 393 393 * @param rxc 394 * @param frameThe probed frame394 * @param packet The probed frame 395 395 * 396 396 * @return True if the frame passes, false if it does not 397 397 */ 398 int nic_rxc_check(const nic_rxc_t *rxc, const void *data, size_t size,398 int nic_rxc_check(const nic_rxc_t *rxc, const packet_t *packet, 399 399 nic_frame_type_t *frame_type) 400 400 { 401 401 assert(frame_type != NULL); 402 uint8_t *dest_addr = (uint8_t *) data;402 uint8_t *dest_addr = (uint8_t *) packet + packet->data_start; 403 403 uint8_t *src_addr = dest_addr + ETH_ADDR; 404 405 if (size < 2 * ETH_ADDR)406 return false;407 404 408 405 if (dest_addr[0] & 1) { … … 451 448 if (!rxc->vlan_exact && rxc->vlan_mask != NULL) { 452 449 vlan_header_t *vlan_header = (vlan_header_t *) 453 ((uint8_t *) data+ 2 * ETH_ADDR);450 ((uint8_t *) packet + packet->data_start + 2 * ETH_ADDR); 454 451 if (vlan_header->tpid_upper == VLAN_TPID_UPPER && 455 452 vlan_header->tpid_lower == VLAN_TPID_LOWER) { -
uspace/srv/net/nil/eth/eth.c
r3fe58d3c r7943c43 814 814 } 815 815 816 static int eth_received(nic_device_id_t device_id)817 {818 void *data;819 size_t size;820 int rc;821 822 rc = async_data_write_accept(&data, false, 0, 0, 0, &size);823 if (rc != EOK)824 return rc;825 826 packet_t *packet = packet_get_1_remote(eth_globals.net_sess, size);827 if (packet == NULL)828 return ENOMEM;829 830 void *pdata = packet_suffix(packet, size);831 memcpy(pdata, data, size);832 free(data);833 834 return nil_received_msg_local(device_id, packet);835 }836 837 816 static int eth_addr_changed(nic_device_id_t device_id) 838 817 { … … 947 926 return EOK; 948 927 case NET_NIL_RECEIVED: 949 rc = eth_received(IPC_GET_ARG1(*call)); 928 rc = packet_translate_remote(eth_globals.net_sess, &packet, 929 IPC_GET_ARG2(*call)); 930 if (rc == EOK) 931 rc = nil_received_msg_local(IPC_GET_ARG1(*call), packet); 932 950 933 async_answer_0(callid, (sysarg_t) rc); 951 934 return rc; -
uspace/srv/net/nil/nildummy/nildummy.c
r3fe58d3c r7943c43 370 370 } 371 371 372 static int nildummy_received(nic_device_id_t device_id)373 {374 void *data;375 size_t size;376 int rc;377 378 rc = async_data_write_accept(&data, false, 0, 0, 0, &size);379 if (rc != EOK)380 return rc;381 382 packet_t *packet = packet_get_1_remote(nildummy_globals.net_sess, size);383 if (packet == NULL)384 return ENOMEM;385 386 void *pdata = packet_suffix(packet, size);387 memcpy(pdata, data, size);388 free(pdata);389 390 return nil_received_msg_local(device_id, packet);391 }392 393 372 int nil_module_message(ipc_callid_t callid, ipc_call_t *call, 394 373 ipc_call_t *answer, size_t *answer_count) … … 452 431 453 432 case NET_NIL_RECEIVED: 454 rc = nildummy_received(IPC_GET_ARG1(*call)); 433 rc = packet_translate_remote(nildummy_globals.net_sess, &packet, 434 IPC_GET_ARG2(*call)); 435 if (rc == EOK) 436 rc = nil_received_msg_local(IPC_GET_ARG1(*call), packet); 437 455 438 async_answer_0(callid, (sysarg_t) rc); 456 439 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.