1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2017 Cavium, Inc 3 */ 4 5 #ifndef __OCTEONTX_BGX_H__ 6 #define __OCTEONTX_BGX_H__ 7 8 #include <stddef.h> 9 #include <stdint.h> 10 11 #include <octeontx_mbox.h> 12 13 #define OCTEONTX_BGX_COPROC 6 14 15 /* BGX messages */ 16 #define MBOX_BGX_PORT_OPEN 0 17 #define MBOX_BGX_PORT_CLOSE 1 18 #define MBOX_BGX_PORT_START 2 19 #define MBOX_BGX_PORT_STOP 3 20 #define MBOX_BGX_PORT_GET_CONFIG 4 21 #define MBOX_BGX_PORT_GET_STATUS 5 22 #define MBOX_BGX_PORT_GET_STATS 6 23 #define MBOX_BGX_PORT_CLR_STATS 7 24 #define MBOX_BGX_PORT_GET_LINK_STATUS 8 25 #define MBOX_BGX_PORT_SET_PROMISC 9 26 #define MBOX_BGX_PORT_SET_MACADDR 10 27 #define MBOX_BGX_PORT_SET_BP 11 28 #define MBOX_BGX_PORT_SET_BCAST 12 29 #define MBOX_BGX_PORT_SET_MCAST 13 30 #define MBOX_BGX_PORT_SET_MTU 14 31 #define MBOX_BGX_PORT_ADD_MACADDR 15 32 #define MBOX_BGX_PORT_DEL_MACADDR 16 33 #define MBOX_BGX_PORT_GET_MACADDR_ENTRIES 17 34 35 /* BGX port configuration parameters: */ 36 typedef struct octeontx_mbox_bgx_port_conf { 37 uint8_t enable; 38 uint8_t promisc; 39 uint8_t bpen; 40 uint8_t macaddr[6]; /* MAC address.*/ 41 uint8_t fcs_strip; 42 uint8_t bcast_mode; 43 uint8_t mcast_mode; 44 uint8_t node; /* CPU node */ 45 uint16_t base_chan; 46 uint16_t num_chans; 47 uint16_t mtu; 48 uint8_t bgx; 49 uint8_t lmac; 50 uint8_t mode; 51 uint8_t pkind; 52 } octeontx_mbox_bgx_port_conf_t; 53 54 /* BGX port status: */ 55 typedef struct octeontx_mbox_bgx_port_status { 56 uint8_t link_up; 57 uint8_t bp; 58 uint8_t duplex; 59 uint32_t speed; 60 } octeontx_mbox_bgx_port_status_t; 61 62 /* BGX port statistics: */ 63 typedef struct octeontx_mbox_bgx_port_stats { 64 uint64_t rx_packets; 65 uint64_t tx_packets; 66 uint64_t rx_bytes; 67 uint64_t tx_bytes; 68 uint64_t rx_errors; 69 uint64_t tx_errors; 70 uint64_t rx_dropped; 71 uint64_t tx_dropped; 72 uint64_t multicast; 73 uint64_t collisions; 74 75 uint64_t rx_length_errors; 76 uint64_t rx_over_errors; 77 uint64_t rx_crc_errors; 78 uint64_t rx_frame_errors; 79 uint64_t rx_fifo_errors; 80 uint64_t rx_missed_errors; 81 82 /* Detailed transmit errors. */ 83 uint64_t tx_aborted_errors; 84 uint64_t tx_carrier_errors; 85 uint64_t tx_fifo_errors; 86 uint64_t tx_heartbeat_errors; 87 uint64_t tx_window_errors; 88 89 /* Extended statistics based on RFC2819. */ 90 uint64_t rx_1_to_64_packets; 91 uint64_t rx_65_to_127_packets; 92 uint64_t rx_128_to_255_packets; 93 uint64_t rx_256_to_511_packets; 94 uint64_t rx_512_to_1023_packets; 95 uint64_t rx_1024_to_1522_packets; 96 uint64_t rx_1523_to_max_packets; 97 98 uint64_t tx_1_to_64_packets; 99 uint64_t tx_65_to_127_packets; 100 uint64_t tx_128_to_255_packets; 101 uint64_t tx_256_to_511_packets; 102 uint64_t tx_512_to_1023_packets; 103 uint64_t tx_1024_to_1522_packets; 104 uint64_t tx_1523_to_max_packets; 105 106 uint64_t tx_multicast_packets; 107 uint64_t rx_broadcast_packets; 108 uint64_t tx_broadcast_packets; 109 uint64_t rx_undersized_errors; 110 uint64_t rx_oversize_errors; 111 uint64_t rx_fragmented_errors; 112 uint64_t rx_jabber_errors; 113 } octeontx_mbox_bgx_port_stats_t; 114 115 int octeontx_bgx_port_open(int port, octeontx_mbox_bgx_port_conf_t *conf); 116 int octeontx_bgx_port_close(int port); 117 int octeontx_bgx_port_start(int port); 118 int octeontx_bgx_port_stop(int port); 119 int octeontx_bgx_port_get_config(int port, octeontx_mbox_bgx_port_conf_t *conf); 120 int octeontx_bgx_port_status(int port, octeontx_mbox_bgx_port_status_t *stat); 121 int octeontx_bgx_port_stats(int port, octeontx_mbox_bgx_port_stats_t *stats); 122 int octeontx_bgx_port_stats_clr(int port); 123 int octeontx_bgx_port_link_status(int port); 124 int octeontx_bgx_port_promisc_set(int port, int en); 125 int octeontx_bgx_port_mac_set(int port, uint8_t *mac_addr); 126 int octeontx_bgx_port_mac_add(int port, uint8_t *mac_addr); 127 int octeontx_bgx_port_mac_del(int port, uint32_t index); 128 int octeontx_bgx_port_mac_entries_get(int port); 129 130 #endif /* __OCTEONTX_BGX_H__ */ 131 132