iPXE
mlx_link_speed.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Mellanox Technologies Ltd.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  */
19 
20 FILE_LICENCE ( GPL2_OR_LATER );
21 
22 #include "../../mlx_lib/mlx_link_speed/mlx_link_speed.h"
23 #include "../../include/public/mlx_memory.h"
24 #include "../../include/public/mlx_bail.h"
25 
28  IN mlx_utils *utils,
31  IN LINK_SPEED speed
32  )
33 {
35  struct mlx_link_speed link_speed;
36  mlx_uint32 reg_status;
37 
38  if (utils == NULL) {
40  goto bad_param;
41  }
42 
43  mlx_memory_set(utils, &link_speed, 0, sizeof(link_speed));
44 
45  link_speed.loacl_port = port_num;
46  link_speed.proto_mask = 1 << type;
47 
48  status = mlx_reg_access(utils, REG_ID_PTYS, REG_ACCESS_READ, &link_speed,
49  sizeof(link_speed), &reg_status);
50 
51  MLX_CHECK_STATUS(utils, status, reg_err, "mlx_reg_access failed ");
52  if (reg_status != 0) {
53  MLX_DEBUG_ERROR(utils,"mlx_reg_access failed with status = %d\n", reg_status);
55  goto reg_err;
56  }
57  switch (speed) {
58  case LINK_SPEED_1GB:
60  break;
61  case LINK_SPEED_10GB:
63  break;
64  case LINK_SPEED_40GB:
66  break;
67  case LINK_SPEED_100GB:
69  break;
70  case LINK_SPEED_SDR:
71  link_speed.ib_proto_admin = link_speed.ib_proto_capability & LINK_SPEED_SDR_MASK;
72  break;
73  case LINK_SPEED_DEFAULT:
74  if (type == LINK_SPEED_ETH) {
75  link_speed.eth_proto_admin = link_speed.eth_proto_capability;
76  } else {
77  link_speed.ib_proto_admin = link_speed.ib_proto_capability;
78  }
79  break;
80  }
81  status = mlx_reg_access(utils, REG_ID_PTYS, REG_ACCESS_WRITE, &link_speed,
82  sizeof(link_speed), &reg_status);
83  MLX_CHECK_STATUS(utils, status, reg_err, "mlx_reg_access failed ");
84  if (reg_status != 0) {
85  MLX_DEBUG_ERROR(utils,"mlx_reg_access failed with status = %d\n", reg_status);
87  goto reg_err;
88  }
89 reg_err:
90 bad_param:
91  return status;
92 }
93 
96  IN mlx_utils *utils,
99  OUT mlx_uint64 *speed
100  )
101 {
103  struct mlx_link_speed link_speed;
104  mlx_uint32 reg_status;
105  mlx_uint64 speed_giga = 0;
106  mlx_uint8 lanes_number = 1;
107 
108  *speed = 0;
109  if (utils == NULL) {
111  goto bad_param;
112  }
113 
114  mlx_memory_set(utils, &link_speed, 0, sizeof(link_speed));
115 
116  link_speed.loacl_port = port_num;
117  link_speed.proto_mask = 1 << type;
118 
119  status = mlx_reg_access(utils, REG_ID_PTYS, REG_ACCESS_READ, &link_speed,
120  sizeof(link_speed), &reg_status);
121  MLX_CHECK_STATUS(utils, status, reg_err, "mlx_reg_access failed ");
122  if (reg_status != 0) {
123  MLX_DEBUG_ERROR(utils,"mlx_reg_access failed with status = %d\n", reg_status);
124  status = MLX_FAILED;
125  goto reg_err;
126  }
127 
128  if ( type == LINK_SPEED_ETH ) {
129  if ( link_speed.eth_proto_capability & LINK_SPEED_100GB_MASK ) {
130  speed_giga = 100;
131  } else if ( link_speed.eth_proto_capability & LINK_SPEED_56GB_MASK ) {
132  speed_giga = 56;
133  } else if ( link_speed.eth_proto_capability & LINK_SPEED_50GB_MASK ) {
134  speed_giga = 50;
135  } else if ( link_speed.eth_proto_capability & LINK_SPEED_40GB_MASK ) {
136  speed_giga = 40;
137  } else if (link_speed.eth_proto_capability & LINK_SPEED_25GB_MASK) {
138  speed_giga = 25;
139  } else if ( link_speed.eth_proto_capability & LINK_SPEED_20GB_MASK ) {
140  speed_giga = 20;
141  } else if ( link_speed.eth_proto_capability & LINK_SPEED_10GB_MASK) {
142  speed_giga = 10;
143  } else if ( link_speed.eth_proto_capability & LINK_SPEED_1GB_MASK ) {
144  speed_giga = 1;
145  }
146  } else {
147  if ( link_speed.ib_proto_capability & LINK_SPEED_EDR_MASK ) {
148  speed_giga = 25;
149  } else if ( link_speed.ib_proto_capability & LINK_SPEED_EDR20_MASK ) {
150  speed_giga = 20;
151  } else if ( link_speed.ib_proto_capability & LINK_SPEED_FDR_MASK ) {
152  speed_giga = 14;
153  } else if ( link_speed.ib_proto_capability & LINK_SPEED_QDR_MASK ) {
154  speed_giga = 10;
155  } else if ( link_speed.ib_proto_capability & LINK_SPEED_DDR_MASK ) {
156  speed_giga = 5;
157  } else if ( link_speed.ib_proto_capability & LINK_SPEED_SDR_MASK ) {
158  speed_giga = 2.5;
159  }
161  lanes_number = 12;
162  } else if ( link_speed.ib_link_width_capability & LINK_SPEED_WITDH_8_MASK ) {
163  lanes_number = 8;
164  } else if (link_speed.ib_link_width_capability & LINK_SPEED_WITDH_4_MASK ) {
165  lanes_number = 4;
166  } else if (link_speed.ib_link_width_capability & LINK_SPEED_WITDH_2_MASK ) {
167  lanes_number = 2;
168  } else if (link_speed.ib_link_width_capability & LINK_SPEED_WITDH_1_MASK ) {
169  lanes_number = 1;
170  }
171  speed_giga = speed_giga * lanes_number;
172  }
173  // Return data in bits
174  *speed = speed_giga * GIGA_TO_BIT;
175 reg_err:
176 bad_param:
177  return status;
178 }
179 
180 
#define REG_ID_PTYS
#define MLX_INVALID_PARAMETER
uint8_t status
Status.
Definition: ena.h:16
uint32_t mlx_uint32
mlx_status mlx_memory_set(IN mlx_utils *utils, IN mlx_void *block, IN mlx_int32 value, IN mlx_size size)
Definition: mlx_memory.c:171
#define OUT
Definition: mlx_utils.h:29
#define MLX_SUCCESS
#define MLX_FAILED
#define IN
Definition: mlx_utils.h:28
__be16 port_num
Definition: CIB_PRM.h:31
uint8_t mlx_uint8
uint32_t type
Operating system type.
Definition: ena.h:12
#define MLX_DEBUG_ERROR(...)
Definition: mlx_logging.h:29
int mlx_status
mlx_status mlx_reg_access(IN mlx_utils *utils, IN mlx_uint16 reg_id, IN REG_ACCESS_OPT reg_opt, IN OUT mlx_void *reg_data, IN mlx_size reg_size, OUT mlx_uint32 *reg_status)
uint64_t mlx_uint64
#define MLX_CHECK_STATUS(id, status, label, message)
Definition: mlx_bail.h:37
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321