123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- /*
- * Copyright (c) 2013-2016, Mellanox Technologies. All rights reserved.
- *
- * This software is available to you under a choice of one of two
- * licenses. You may choose to be licensed under the terms of the GNU
- * General Public License (GPL) Version 2, available from the file
- * COPYING in the main directory of this source tree, or the
- * OpenIB.org BSD license below:
- *
- * Redistribution and use in source and binary forms, with or
- * without modification, are permitted provided that the following
- * conditions are met:
- *
- * - Redistributions of source code must retain the above
- * copyright notice, this list of conditions and the following
- * disclaimer.
- *
- * - Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following
- * disclaimer in the documentation and/or other materials
- * provided with the distribution.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/mlx5/driver.h>
- #include <linux/mlx5/cmd.h>
- #include "mlx5_core.h"
- /* Scheduling element fw management */
- int mlx5_create_scheduling_element_cmd(struct mlx5_core_dev *dev, u8 hierarchy,
- void *ctx, u32 *element_id)
- {
- u32 in[MLX5_ST_SZ_DW(create_scheduling_element_in)] = {0};
- u32 out[MLX5_ST_SZ_DW(create_scheduling_element_in)] = {0};
- void *schedc;
- int err;
- schedc = MLX5_ADDR_OF(create_scheduling_element_in, in,
- scheduling_context);
- MLX5_SET(create_scheduling_element_in, in, opcode,
- MLX5_CMD_OP_CREATE_SCHEDULING_ELEMENT);
- MLX5_SET(create_scheduling_element_in, in, scheduling_hierarchy,
- hierarchy);
- memcpy(schedc, ctx, MLX5_ST_SZ_BYTES(scheduling_context));
- err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
- if (err)
- return err;
- *element_id = MLX5_GET(create_scheduling_element_out, out,
- scheduling_element_id);
- return 0;
- }
- int mlx5_modify_scheduling_element_cmd(struct mlx5_core_dev *dev, u8 hierarchy,
- void *ctx, u32 element_id,
- u32 modify_bitmask)
- {
- u32 in[MLX5_ST_SZ_DW(modify_scheduling_element_in)] = {0};
- u32 out[MLX5_ST_SZ_DW(modify_scheduling_element_in)] = {0};
- void *schedc;
- schedc = MLX5_ADDR_OF(modify_scheduling_element_in, in,
- scheduling_context);
- MLX5_SET(modify_scheduling_element_in, in, opcode,
- MLX5_CMD_OP_MODIFY_SCHEDULING_ELEMENT);
- MLX5_SET(modify_scheduling_element_in, in, scheduling_element_id,
- element_id);
- MLX5_SET(modify_scheduling_element_in, in, modify_bitmask,
- modify_bitmask);
- MLX5_SET(modify_scheduling_element_in, in, scheduling_hierarchy,
- hierarchy);
- memcpy(schedc, ctx, MLX5_ST_SZ_BYTES(scheduling_context));
- return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
- }
- int mlx5_destroy_scheduling_element_cmd(struct mlx5_core_dev *dev, u8 hierarchy,
- u32 element_id)
- {
- u32 in[MLX5_ST_SZ_DW(destroy_scheduling_element_in)] = {0};
- u32 out[MLX5_ST_SZ_DW(destroy_scheduling_element_in)] = {0};
- MLX5_SET(destroy_scheduling_element_in, in, opcode,
- MLX5_CMD_OP_DESTROY_SCHEDULING_ELEMENT);
- MLX5_SET(destroy_scheduling_element_in, in, scheduling_element_id,
- element_id);
- MLX5_SET(destroy_scheduling_element_in, in, scheduling_hierarchy,
- hierarchy);
- return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
- }
- /* Finds an entry where we can register the given rate
- * If the rate already exists, return the entry where it is registered,
- * otherwise return the first available entry.
- * If the table is full, return NULL
- */
- static struct mlx5_rl_entry *find_rl_entry(struct mlx5_rl_table *table,
- struct mlx5_rate_limit *rl)
- {
- struct mlx5_rl_entry *ret_entry = NULL;
- bool empty_found = false;
- int i;
- for (i = 0; i < table->max_size; i++) {
- if (mlx5_rl_are_equal(&table->rl_entry[i].rl, rl))
- return &table->rl_entry[i];
- if (!empty_found && !table->rl_entry[i].rl.rate) {
- empty_found = true;
- ret_entry = &table->rl_entry[i];
- }
- }
- return ret_entry;
- }
- static int mlx5_set_pp_rate_limit_cmd(struct mlx5_core_dev *dev,
- u16 index,
- struct mlx5_rate_limit *rl)
- {
- u32 in[MLX5_ST_SZ_DW(set_pp_rate_limit_in)] = {0};
- u32 out[MLX5_ST_SZ_DW(set_pp_rate_limit_out)] = {0};
- MLX5_SET(set_pp_rate_limit_in, in, opcode,
- MLX5_CMD_OP_SET_PP_RATE_LIMIT);
- MLX5_SET(set_pp_rate_limit_in, in, rate_limit_index, index);
- MLX5_SET(set_pp_rate_limit_in, in, rate_limit, rl->rate);
- MLX5_SET(set_pp_rate_limit_in, in, burst_upper_bound, rl->max_burst_sz);
- MLX5_SET(set_pp_rate_limit_in, in, typical_packet_size, rl->typical_pkt_sz);
- return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
- }
- bool mlx5_rl_is_in_range(struct mlx5_core_dev *dev, u32 rate)
- {
- struct mlx5_rl_table *table = &dev->priv.rl_table;
- return (rate <= table->max_rate && rate >= table->min_rate);
- }
- EXPORT_SYMBOL(mlx5_rl_is_in_range);
- bool mlx5_rl_are_equal(struct mlx5_rate_limit *rl_0,
- struct mlx5_rate_limit *rl_1)
- {
- return ((rl_0->rate == rl_1->rate) &&
- (rl_0->max_burst_sz == rl_1->max_burst_sz) &&
- (rl_0->typical_pkt_sz == rl_1->typical_pkt_sz));
- }
- EXPORT_SYMBOL(mlx5_rl_are_equal);
- int mlx5_rl_add_rate(struct mlx5_core_dev *dev, u16 *index,
- struct mlx5_rate_limit *rl)
- {
- struct mlx5_rl_table *table = &dev->priv.rl_table;
- struct mlx5_rl_entry *entry;
- int err = 0;
- mutex_lock(&table->rl_lock);
- if (!rl->rate || !mlx5_rl_is_in_range(dev, rl->rate)) {
- mlx5_core_err(dev, "Invalid rate: %u, should be %u to %u\n",
- rl->rate, table->min_rate, table->max_rate);
- err = -EINVAL;
- goto out;
- }
- entry = find_rl_entry(table, rl);
- if (!entry) {
- mlx5_core_err(dev, "Max number of %u rates reached\n",
- table->max_size);
- err = -ENOSPC;
- goto out;
- }
- if (entry->refcount) {
- /* rate already configured */
- entry->refcount++;
- } else {
- /* new rate limit */
- err = mlx5_set_pp_rate_limit_cmd(dev, entry->index, rl);
- if (err) {
- mlx5_core_err(dev, "Failed configuring rate limit(err %d): \
- rate %u, max_burst_sz %u, typical_pkt_sz %u\n",
- err, rl->rate, rl->max_burst_sz,
- rl->typical_pkt_sz);
- goto out;
- }
- entry->rl = *rl;
- entry->refcount = 1;
- }
- *index = entry->index;
- out:
- mutex_unlock(&table->rl_lock);
- return err;
- }
- EXPORT_SYMBOL(mlx5_rl_add_rate);
- void mlx5_rl_remove_rate(struct mlx5_core_dev *dev, struct mlx5_rate_limit *rl)
- {
- struct mlx5_rl_table *table = &dev->priv.rl_table;
- struct mlx5_rl_entry *entry = NULL;
- struct mlx5_rate_limit reset_rl = {0};
- /* 0 is a reserved value for unlimited rate */
- if (rl->rate == 0)
- return;
- mutex_lock(&table->rl_lock);
- entry = find_rl_entry(table, rl);
- if (!entry || !entry->refcount) {
- mlx5_core_warn(dev, "Rate %u, max_burst_sz %u typical_pkt_sz %u \
- are not configured\n",
- rl->rate, rl->max_burst_sz, rl->typical_pkt_sz);
- goto out;
- }
- entry->refcount--;
- if (!entry->refcount) {
- /* need to remove rate */
- mlx5_set_pp_rate_limit_cmd(dev, entry->index, &reset_rl);
- entry->rl = reset_rl;
- }
- out:
- mutex_unlock(&table->rl_lock);
- }
- EXPORT_SYMBOL(mlx5_rl_remove_rate);
- int mlx5_init_rl_table(struct mlx5_core_dev *dev)
- {
- struct mlx5_rl_table *table = &dev->priv.rl_table;
- int i;
- mutex_init(&table->rl_lock);
- if (!MLX5_CAP_GEN(dev, qos) || !MLX5_CAP_QOS(dev, packet_pacing)) {
- table->max_size = 0;
- return 0;
- }
- /* First entry is reserved for unlimited rate */
- table->max_size = MLX5_CAP_QOS(dev, packet_pacing_rate_table_size) - 1;
- table->max_rate = MLX5_CAP_QOS(dev, packet_pacing_max_rate);
- table->min_rate = MLX5_CAP_QOS(dev, packet_pacing_min_rate);
- table->rl_entry = kcalloc(table->max_size, sizeof(struct mlx5_rl_entry),
- GFP_KERNEL);
- if (!table->rl_entry)
- return -ENOMEM;
- /* The index represents the index in HW rate limit table
- * Index 0 is reserved for unlimited rate
- */
- for (i = 0; i < table->max_size; i++)
- table->rl_entry[i].index = i + 1;
- /* Index 0 is reserved */
- mlx5_core_info(dev, "Rate limit: %u rates are supported, range: %uMbps to %uMbps\n",
- table->max_size,
- table->min_rate >> 10,
- table->max_rate >> 10);
- return 0;
- }
- void mlx5_cleanup_rl_table(struct mlx5_core_dev *dev)
- {
- struct mlx5_rl_table *table = &dev->priv.rl_table;
- struct mlx5_rate_limit rl = {0};
- int i;
- /* Clear all configured rates */
- for (i = 0; i < table->max_size; i++)
- if (table->rl_entry[i].rl.rate)
- mlx5_set_pp_rate_limit_cmd(dev, table->rl_entry[i].index,
- &rl);
- kfree(dev->priv.rl_table.rl_entry);
- }
|