mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-20 01:24:39 +08:00
Merge branch 'mlxsw-line-card-prep'
Ido Schimmel says: ==================== mlxsw: Preparations for line cards support Currently, mlxsw registers thermal zones as well as hwmon entries for objects such as transceiver modules and gearboxes. In upcoming modular systems, these objects are no longer found on the main board (i.e., slot 0), but on plug-able line cards. This patchset prepares mlxsw for such systems in terms of hwmon, thermal and cable access support. Patches #1-#3 gradually prepare mlxsw for transceiver modules access support for line cards by splitting some of the internal structures and some APIs. Patches #4-#5 gradually prepare mlxsw for hwmon support for line cards by splitting some of the internal structures and augmenting them with a slot index. Patches #6-#7 do the same for thermal zones. Patch #8 selects cooling device for binding to a thermal zone by exact name match to prevent binding to non-relevant devices. Patch #9 replaces internal define for thermal zone name length with a common define. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
25f428f990
File diff suppressed because it is too large
Load Diff
@ -9,47 +9,56 @@
|
||||
struct ethtool_modinfo;
|
||||
struct ethtool_eeprom;
|
||||
|
||||
int mlxsw_env_module_temp_thresholds_get(struct mlxsw_core *core, int module,
|
||||
int off, int *temp);
|
||||
int mlxsw_env_module_temp_thresholds_get(struct mlxsw_core *core,
|
||||
u8 slot_index, int module, int off,
|
||||
int *temp);
|
||||
|
||||
int mlxsw_env_get_module_info(struct net_device *netdev,
|
||||
struct mlxsw_core *mlxsw_core, int module,
|
||||
struct ethtool_modinfo *modinfo);
|
||||
struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
int module, struct ethtool_modinfo *modinfo);
|
||||
|
||||
int mlxsw_env_get_module_eeprom(struct net_device *netdev,
|
||||
struct mlxsw_core *mlxsw_core, int module,
|
||||
struct ethtool_eeprom *ee, u8 *data);
|
||||
struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
int module, struct ethtool_eeprom *ee,
|
||||
u8 *data);
|
||||
|
||||
int
|
||||
mlxsw_env_get_module_eeprom_by_page(struct mlxsw_core *mlxsw_core, u8 module,
|
||||
mlxsw_env_get_module_eeprom_by_page(struct mlxsw_core *mlxsw_core,
|
||||
u8 slot_index, u8 module,
|
||||
const struct ethtool_module_eeprom *page,
|
||||
struct netlink_ext_ack *extack);
|
||||
|
||||
int mlxsw_env_reset_module(struct net_device *netdev,
|
||||
struct mlxsw_core *mlxsw_core, u8 module,
|
||||
u32 *flags);
|
||||
struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
u8 module, u32 *flags);
|
||||
|
||||
int
|
||||
mlxsw_env_get_module_power_mode(struct mlxsw_core *mlxsw_core, u8 module,
|
||||
mlxsw_env_get_module_power_mode(struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
u8 module,
|
||||
struct ethtool_module_power_mode_params *params,
|
||||
struct netlink_ext_ack *extack);
|
||||
|
||||
int
|
||||
mlxsw_env_set_module_power_mode(struct mlxsw_core *mlxsw_core, u8 module,
|
||||
mlxsw_env_set_module_power_mode(struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
u8 module,
|
||||
enum ethtool_module_power_mode_policy policy,
|
||||
struct netlink_ext_ack *extack);
|
||||
|
||||
int
|
||||
mlxsw_env_module_overheat_counter_get(struct mlxsw_core *mlxsw_core, u8 module,
|
||||
u64 *p_counter);
|
||||
mlxsw_env_module_overheat_counter_get(struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
u8 module, u64 *p_counter);
|
||||
|
||||
void mlxsw_env_module_port_map(struct mlxsw_core *mlxsw_core, u8 module);
|
||||
void mlxsw_env_module_port_map(struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
u8 module);
|
||||
|
||||
void mlxsw_env_module_port_unmap(struct mlxsw_core *mlxsw_core, u8 module);
|
||||
void mlxsw_env_module_port_unmap(struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
u8 module);
|
||||
|
||||
int mlxsw_env_module_port_up(struct mlxsw_core *mlxsw_core, u8 module);
|
||||
int mlxsw_env_module_port_up(struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
u8 module);
|
||||
|
||||
void mlxsw_env_module_port_down(struct mlxsw_core *mlxsw_core, u8 module);
|
||||
void mlxsw_env_module_port_down(struct mlxsw_core *mlxsw_core, u8 slot_index,
|
||||
u8 module);
|
||||
|
||||
int mlxsw_env_init(struct mlxsw_core *core, struct mlxsw_env **p_env);
|
||||
void mlxsw_env_fini(struct mlxsw_env *env);
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
struct mlxsw_hwmon_attr {
|
||||
struct device_attribute dev_attr;
|
||||
struct mlxsw_hwmon *hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev;
|
||||
unsigned int type_index;
|
||||
char name[32];
|
||||
};
|
||||
@ -40,9 +40,8 @@ static int mlxsw_hwmon_get_attr_index(int index, int count)
|
||||
return index;
|
||||
}
|
||||
|
||||
struct mlxsw_hwmon {
|
||||
struct mlxsw_core *core;
|
||||
const struct mlxsw_bus_info *bus_info;
|
||||
struct mlxsw_hwmon_dev {
|
||||
struct mlxsw_hwmon *hwmon;
|
||||
struct device *hwmon_dev;
|
||||
struct attribute_group group;
|
||||
const struct attribute_group *groups[2];
|
||||
@ -51,6 +50,13 @@ struct mlxsw_hwmon {
|
||||
unsigned int attrs_count;
|
||||
u8 sensor_count;
|
||||
u8 module_sensor_max;
|
||||
u8 slot_index;
|
||||
};
|
||||
|
||||
struct mlxsw_hwmon {
|
||||
struct mlxsw_core *core;
|
||||
const struct mlxsw_bus_info *bus_info;
|
||||
struct mlxsw_hwmon_dev line_cards[];
|
||||
};
|
||||
|
||||
static ssize_t mlxsw_hwmon_temp_show(struct device *dev,
|
||||
@ -59,14 +65,16 @@ static ssize_t mlxsw_hwmon_temp_show(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mtmp_pl[MLXSW_REG_MTMP_LEN];
|
||||
int temp, index;
|
||||
int err;
|
||||
|
||||
index = mlxsw_hwmon_get_attr_index(mlxsw_hwmon_attr->type_index,
|
||||
mlxsw_hwmon->module_sensor_max);
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, 0, index, false, false);
|
||||
mlxsw_hwmon_dev->module_sensor_max);
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, mlxsw_hwmon_dev->slot_index, index, false,
|
||||
false);
|
||||
err = mlxsw_reg_query(mlxsw_hwmon->core, MLXSW_REG(mtmp), mtmp_pl);
|
||||
if (err) {
|
||||
dev_err(mlxsw_hwmon->bus_info->dev, "Failed to query temp sensor\n");
|
||||
@ -82,14 +90,16 @@ static ssize_t mlxsw_hwmon_temp_max_show(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mtmp_pl[MLXSW_REG_MTMP_LEN];
|
||||
int temp_max, index;
|
||||
int err;
|
||||
|
||||
index = mlxsw_hwmon_get_attr_index(mlxsw_hwmon_attr->type_index,
|
||||
mlxsw_hwmon->module_sensor_max);
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, 0, index, false, false);
|
||||
mlxsw_hwmon_dev->module_sensor_max);
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, mlxsw_hwmon_dev->slot_index, index, false,
|
||||
false);
|
||||
err = mlxsw_reg_query(mlxsw_hwmon->core, MLXSW_REG(mtmp), mtmp_pl);
|
||||
if (err) {
|
||||
dev_err(mlxsw_hwmon->bus_info->dev, "Failed to query temp sensor\n");
|
||||
@ -105,8 +115,9 @@ static ssize_t mlxsw_hwmon_temp_rst_store(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
char mtmp_pl[MLXSW_REG_MTMP_LEN] = {0};
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mtmp_pl[MLXSW_REG_MTMP_LEN];
|
||||
unsigned long val;
|
||||
int index;
|
||||
int err;
|
||||
@ -118,8 +129,9 @@ static ssize_t mlxsw_hwmon_temp_rst_store(struct device *dev,
|
||||
return -EINVAL;
|
||||
|
||||
index = mlxsw_hwmon_get_attr_index(mlxsw_hwmon_attr->type_index,
|
||||
mlxsw_hwmon->module_sensor_max);
|
||||
mlxsw_hwmon_dev->module_sensor_max);
|
||||
|
||||
mlxsw_reg_mtmp_slot_index_set(mtmp_pl, mlxsw_hwmon_dev->slot_index);
|
||||
mlxsw_reg_mtmp_sensor_index_set(mtmp_pl, index);
|
||||
err = mlxsw_reg_query(mlxsw_hwmon->core, MLXSW_REG(mtmp), mtmp_pl);
|
||||
if (err)
|
||||
@ -140,7 +152,8 @@ static ssize_t mlxsw_hwmon_fan_rpm_show(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mfsm_pl[MLXSW_REG_MFSM_LEN];
|
||||
int err;
|
||||
|
||||
@ -159,7 +172,8 @@ static ssize_t mlxsw_hwmon_fan_fault_show(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char fore_pl[MLXSW_REG_FORE_LEN];
|
||||
bool fault;
|
||||
int err;
|
||||
@ -180,7 +194,8 @@ static ssize_t mlxsw_hwmon_pwm_show(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mfsc_pl[MLXSW_REG_MFSC_LEN];
|
||||
int err;
|
||||
|
||||
@ -200,7 +215,8 @@ static ssize_t mlxsw_hwmon_pwm_store(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mfsc_pl[MLXSW_REG_MFSC_LEN];
|
||||
unsigned long val;
|
||||
int err;
|
||||
@ -226,13 +242,14 @@ static int mlxsw_hwmon_module_temp_get(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mtmp_pl[MLXSW_REG_MTMP_LEN];
|
||||
u8 module;
|
||||
int err;
|
||||
|
||||
module = mlxsw_hwmon_attr->type_index - mlxsw_hwmon->sensor_count;
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, 0,
|
||||
module = mlxsw_hwmon_attr->type_index - mlxsw_hwmon_dev->sensor_count;
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, mlxsw_hwmon_dev->slot_index,
|
||||
MLXSW_REG_MTMP_MODULE_INDEX_MIN + module, false,
|
||||
false);
|
||||
err = mlxsw_reg_query(mlxsw_hwmon->core, MLXSW_REG(mtmp), mtmp_pl);
|
||||
@ -264,14 +281,15 @@ static ssize_t mlxsw_hwmon_module_temp_fault_show(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mtbr_pl[MLXSW_REG_MTBR_LEN] = {0};
|
||||
u8 module, fault;
|
||||
u16 temp;
|
||||
int err;
|
||||
|
||||
module = mlxsw_hwmon_attr->type_index - mlxsw_hwmon->sensor_count;
|
||||
mlxsw_reg_mtbr_pack(mtbr_pl, 0,
|
||||
module = mlxsw_hwmon_attr->type_index - mlxsw_hwmon_dev->sensor_count;
|
||||
mlxsw_reg_mtbr_pack(mtbr_pl, mlxsw_hwmon_dev->slot_index,
|
||||
MLXSW_REG_MTBR_BASE_MODULE_INDEX + module, 1);
|
||||
err = mlxsw_reg_query(mlxsw_hwmon->core, MLXSW_REG(mtbr), mtbr_pl);
|
||||
if (err) {
|
||||
@ -306,13 +324,16 @@ static int mlxsw_hwmon_module_temp_critical_get(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
u8 module;
|
||||
int err;
|
||||
|
||||
module = mlxsw_hwmon_attr->type_index - mlxsw_hwmon->sensor_count;
|
||||
err = mlxsw_env_module_temp_thresholds_get(mlxsw_hwmon->core, module,
|
||||
SFP_TEMP_HIGH_WARN, p_temp);
|
||||
module = mlxsw_hwmon_attr->type_index - mlxsw_hwmon_dev->sensor_count;
|
||||
err = mlxsw_env_module_temp_thresholds_get(mlxsw_hwmon->core,
|
||||
mlxsw_hwmon_dev->slot_index,
|
||||
module, SFP_TEMP_HIGH_WARN,
|
||||
p_temp);
|
||||
if (err) {
|
||||
dev_err(dev, "Failed to query module temperature thresholds\n");
|
||||
return err;
|
||||
@ -340,13 +361,16 @@ static int mlxsw_hwmon_module_temp_emergency_get(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
u8 module;
|
||||
int err;
|
||||
|
||||
module = mlxsw_hwmon_attr->type_index - mlxsw_hwmon->sensor_count;
|
||||
err = mlxsw_env_module_temp_thresholds_get(mlxsw_hwmon->core, module,
|
||||
SFP_TEMP_HIGH_ALARM, p_temp);
|
||||
module = mlxsw_hwmon_attr->type_index - mlxsw_hwmon_dev->sensor_count;
|
||||
err = mlxsw_env_module_temp_thresholds_get(mlxsw_hwmon->core,
|
||||
mlxsw_hwmon_dev->slot_index,
|
||||
module, SFP_TEMP_HIGH_ALARM,
|
||||
p_temp);
|
||||
if (err) {
|
||||
dev_err(dev, "Failed to query module temperature thresholds\n");
|
||||
return err;
|
||||
@ -388,9 +412,9 @@ mlxsw_hwmon_gbox_temp_label_show(struct device *dev,
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr =
|
||||
container_of(attr, struct mlxsw_hwmon_attr, dev_attr);
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_attr->hwmon;
|
||||
struct mlxsw_hwmon_dev *mlxsw_hwmon_dev = mlxsw_hwmon_attr->mlxsw_hwmon_dev;
|
||||
int index = mlxsw_hwmon_attr->type_index -
|
||||
mlxsw_hwmon->module_sensor_max + 1;
|
||||
mlxsw_hwmon_dev->module_sensor_max + 1;
|
||||
|
||||
return sprintf(buf, "gearbox %03u\n", index);
|
||||
}
|
||||
@ -459,14 +483,15 @@ enum mlxsw_hwmon_attr_type {
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_EMERGENCY_ALARM,
|
||||
};
|
||||
|
||||
static void mlxsw_hwmon_attr_add(struct mlxsw_hwmon *mlxsw_hwmon,
|
||||
static void mlxsw_hwmon_attr_add(struct mlxsw_hwmon_dev *mlxsw_hwmon_dev,
|
||||
enum mlxsw_hwmon_attr_type attr_type,
|
||||
unsigned int type_index, unsigned int num) {
|
||||
unsigned int type_index, unsigned int num)
|
||||
{
|
||||
struct mlxsw_hwmon_attr *mlxsw_hwmon_attr;
|
||||
unsigned int attr_index;
|
||||
|
||||
attr_index = mlxsw_hwmon->attrs_count;
|
||||
mlxsw_hwmon_attr = &mlxsw_hwmon->hwmon_attrs[attr_index];
|
||||
attr_index = mlxsw_hwmon_dev->attrs_count;
|
||||
mlxsw_hwmon_attr = &mlxsw_hwmon_dev->hwmon_attrs[attr_index];
|
||||
|
||||
switch (attr_type) {
|
||||
case MLXSW_HWMON_ATTR_TYPE_TEMP:
|
||||
@ -566,16 +591,17 @@ static void mlxsw_hwmon_attr_add(struct mlxsw_hwmon *mlxsw_hwmon,
|
||||
}
|
||||
|
||||
mlxsw_hwmon_attr->type_index = type_index;
|
||||
mlxsw_hwmon_attr->hwmon = mlxsw_hwmon;
|
||||
mlxsw_hwmon_attr->mlxsw_hwmon_dev = mlxsw_hwmon_dev;
|
||||
mlxsw_hwmon_attr->dev_attr.attr.name = mlxsw_hwmon_attr->name;
|
||||
sysfs_attr_init(&mlxsw_hwmon_attr->dev_attr.attr);
|
||||
|
||||
mlxsw_hwmon->attrs[attr_index] = &mlxsw_hwmon_attr->dev_attr.attr;
|
||||
mlxsw_hwmon->attrs_count++;
|
||||
mlxsw_hwmon_dev->attrs[attr_index] = &mlxsw_hwmon_attr->dev_attr.attr;
|
||||
mlxsw_hwmon_dev->attrs_count++;
|
||||
}
|
||||
|
||||
static int mlxsw_hwmon_temp_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
static int mlxsw_hwmon_temp_init(struct mlxsw_hwmon_dev *mlxsw_hwmon_dev)
|
||||
{
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mtcap_pl[MLXSW_REG_MTCAP_LEN] = {0};
|
||||
int i;
|
||||
int err;
|
||||
@ -585,10 +611,12 @@ static int mlxsw_hwmon_temp_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
dev_err(mlxsw_hwmon->bus_info->dev, "Failed to get number of temp sensors\n");
|
||||
return err;
|
||||
}
|
||||
mlxsw_hwmon->sensor_count = mlxsw_reg_mtcap_sensor_count_get(mtcap_pl);
|
||||
for (i = 0; i < mlxsw_hwmon->sensor_count; i++) {
|
||||
mlxsw_hwmon_dev->sensor_count = mlxsw_reg_mtcap_sensor_count_get(mtcap_pl);
|
||||
for (i = 0; i < mlxsw_hwmon_dev->sensor_count; i++) {
|
||||
char mtmp_pl[MLXSW_REG_MTMP_LEN] = {0};
|
||||
|
||||
mlxsw_reg_mtmp_slot_index_set(mtmp_pl,
|
||||
mlxsw_hwmon_dev->slot_index);
|
||||
mlxsw_reg_mtmp_sensor_index_set(mtmp_pl, i);
|
||||
err = mlxsw_reg_query(mlxsw_hwmon->core, MLXSW_REG(mtmp),
|
||||
mtmp_pl);
|
||||
@ -603,18 +631,19 @@ static int mlxsw_hwmon_temp_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
i);
|
||||
return err;
|
||||
}
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP, i, i);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_MAX, i, i);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_RST, i, i);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mlxsw_hwmon_fans_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
static int mlxsw_hwmon_fans_init(struct mlxsw_hwmon_dev *mlxsw_hwmon_dev)
|
||||
{
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mfcr_pl[MLXSW_REG_MFCR_LEN] = {0};
|
||||
enum mlxsw_reg_mfcr_pwm_frequency freq;
|
||||
unsigned int type_index;
|
||||
@ -632,10 +661,10 @@ static int mlxsw_hwmon_fans_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
num = 0;
|
||||
for (type_index = 0; type_index < MLXSW_MFCR_TACHOS_MAX; type_index++) {
|
||||
if (tacho_active & BIT(type_index)) {
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_FAN_RPM,
|
||||
type_index, num);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_FAN_FAULT,
|
||||
type_index, num++);
|
||||
}
|
||||
@ -643,20 +672,21 @@ static int mlxsw_hwmon_fans_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
num = 0;
|
||||
for (type_index = 0; type_index < MLXSW_MFCR_PWMS_MAX; type_index++) {
|
||||
if (pwm_active & BIT(type_index))
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_PWM,
|
||||
type_index, num++);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mlxsw_hwmon_module_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
static int mlxsw_hwmon_module_init(struct mlxsw_hwmon_dev *mlxsw_hwmon_dev)
|
||||
{
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
char mgpir_pl[MLXSW_REG_MGPIR_LEN];
|
||||
u8 module_sensor_max;
|
||||
int i, err;
|
||||
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, 0);
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, mlxsw_hwmon_dev->slot_index);
|
||||
err = mlxsw_reg_query(mlxsw_hwmon->core, MLXSW_REG(mgpir), mgpir_pl);
|
||||
if (err)
|
||||
return err;
|
||||
@ -669,28 +699,28 @@ static int mlxsw_hwmon_module_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
* sensor_count are already utilized by the sensors connected through
|
||||
* mtmp register by mlxsw_hwmon_temp_init().
|
||||
*/
|
||||
mlxsw_hwmon->module_sensor_max = mlxsw_hwmon->sensor_count +
|
||||
module_sensor_max;
|
||||
for (i = mlxsw_hwmon->sensor_count;
|
||||
i < mlxsw_hwmon->module_sensor_max; i++) {
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_dev->module_sensor_max = mlxsw_hwmon_dev->sensor_count +
|
||||
module_sensor_max;
|
||||
for (i = mlxsw_hwmon_dev->sensor_count;
|
||||
i < mlxsw_hwmon_dev->module_sensor_max; i++) {
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_MODULE, i, i);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_MODULE_FAULT,
|
||||
i, i);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_MODULE_CRIT, i,
|
||||
i);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_MODULE_EMERG,
|
||||
i, i);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_MODULE_LABEL,
|
||||
i, i);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_CRIT_ALARM,
|
||||
i, i);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_EMERGENCY_ALARM,
|
||||
i, i);
|
||||
}
|
||||
@ -698,8 +728,9 @@ static int mlxsw_hwmon_module_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mlxsw_hwmon_gearbox_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
static int mlxsw_hwmon_gearbox_init(struct mlxsw_hwmon_dev *mlxsw_hwmon_dev)
|
||||
{
|
||||
struct mlxsw_hwmon *mlxsw_hwmon = mlxsw_hwmon_dev->hwmon;
|
||||
enum mlxsw_reg_mgpir_device_type device_type;
|
||||
int index, max_index, sensor_index;
|
||||
char mgpir_pl[MLXSW_REG_MGPIR_LEN];
|
||||
@ -707,7 +738,7 @@ static int mlxsw_hwmon_gearbox_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
u8 gbox_num;
|
||||
int err;
|
||||
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, 0);
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, mlxsw_hwmon_dev->slot_index);
|
||||
err = mlxsw_reg_query(mlxsw_hwmon->core, MLXSW_REG(mgpir), mgpir_pl);
|
||||
if (err)
|
||||
return err;
|
||||
@ -718,12 +749,13 @@ static int mlxsw_hwmon_gearbox_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
!gbox_num)
|
||||
return 0;
|
||||
|
||||
index = mlxsw_hwmon->module_sensor_max;
|
||||
max_index = mlxsw_hwmon->module_sensor_max + gbox_num;
|
||||
index = mlxsw_hwmon_dev->module_sensor_max;
|
||||
max_index = mlxsw_hwmon_dev->module_sensor_max + gbox_num;
|
||||
while (index < max_index) {
|
||||
sensor_index = index % mlxsw_hwmon->module_sensor_max +
|
||||
sensor_index = index % mlxsw_hwmon_dev->module_sensor_max +
|
||||
MLXSW_REG_MTMP_GBOX_INDEX_MIN;
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, 0, sensor_index, true, true);
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, mlxsw_hwmon_dev->slot_index,
|
||||
sensor_index, true, true);
|
||||
err = mlxsw_reg_write(mlxsw_hwmon->core,
|
||||
MLXSW_REG(mtmp), mtmp_pl);
|
||||
if (err) {
|
||||
@ -731,15 +763,15 @@ static int mlxsw_hwmon_gearbox_init(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
sensor_index);
|
||||
return err;
|
||||
}
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon, MLXSW_HWMON_ATTR_TYPE_TEMP,
|
||||
index, index);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP, index, index);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_MAX, index,
|
||||
index);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_RST, index,
|
||||
index);
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon,
|
||||
mlxsw_hwmon_attr_add(mlxsw_hwmon_dev,
|
||||
MLXSW_HWMON_ATTR_TYPE_TEMP_GBOX_LABEL,
|
||||
index, index);
|
||||
index++;
|
||||
@ -752,44 +784,59 @@ int mlxsw_hwmon_init(struct mlxsw_core *mlxsw_core,
|
||||
const struct mlxsw_bus_info *mlxsw_bus_info,
|
||||
struct mlxsw_hwmon **p_hwmon)
|
||||
{
|
||||
char mgpir_pl[MLXSW_REG_MGPIR_LEN];
|
||||
struct mlxsw_hwmon *mlxsw_hwmon;
|
||||
struct device *hwmon_dev;
|
||||
u8 num_of_slots;
|
||||
int err;
|
||||
|
||||
mlxsw_hwmon = kzalloc(sizeof(*mlxsw_hwmon), GFP_KERNEL);
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, 0);
|
||||
err = mlxsw_reg_query(mlxsw_core, MLXSW_REG(mgpir), mgpir_pl);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
mlxsw_reg_mgpir_unpack(mgpir_pl, NULL, NULL, NULL, NULL,
|
||||
&num_of_slots);
|
||||
|
||||
mlxsw_hwmon = kzalloc(struct_size(mlxsw_hwmon, line_cards,
|
||||
num_of_slots + 1), GFP_KERNEL);
|
||||
if (!mlxsw_hwmon)
|
||||
return -ENOMEM;
|
||||
|
||||
mlxsw_hwmon->core = mlxsw_core;
|
||||
mlxsw_hwmon->bus_info = mlxsw_bus_info;
|
||||
mlxsw_hwmon->line_cards[0].hwmon = mlxsw_hwmon;
|
||||
mlxsw_hwmon->line_cards[0].slot_index = 0;
|
||||
|
||||
err = mlxsw_hwmon_temp_init(mlxsw_hwmon);
|
||||
err = mlxsw_hwmon_temp_init(&mlxsw_hwmon->line_cards[0]);
|
||||
if (err)
|
||||
goto err_temp_init;
|
||||
|
||||
err = mlxsw_hwmon_fans_init(mlxsw_hwmon);
|
||||
err = mlxsw_hwmon_fans_init(&mlxsw_hwmon->line_cards[0]);
|
||||
if (err)
|
||||
goto err_fans_init;
|
||||
|
||||
err = mlxsw_hwmon_module_init(mlxsw_hwmon);
|
||||
err = mlxsw_hwmon_module_init(&mlxsw_hwmon->line_cards[0]);
|
||||
if (err)
|
||||
goto err_temp_module_init;
|
||||
|
||||
err = mlxsw_hwmon_gearbox_init(mlxsw_hwmon);
|
||||
err = mlxsw_hwmon_gearbox_init(&mlxsw_hwmon->line_cards[0]);
|
||||
if (err)
|
||||
goto err_temp_gearbox_init;
|
||||
|
||||
mlxsw_hwmon->groups[0] = &mlxsw_hwmon->group;
|
||||
mlxsw_hwmon->group.attrs = mlxsw_hwmon->attrs;
|
||||
mlxsw_hwmon->line_cards[0].groups[0] = &mlxsw_hwmon->line_cards[0].group;
|
||||
mlxsw_hwmon->line_cards[0].group.attrs = mlxsw_hwmon->line_cards[0].attrs;
|
||||
|
||||
hwmon_dev = hwmon_device_register_with_groups(mlxsw_bus_info->dev,
|
||||
"mlxsw", mlxsw_hwmon,
|
||||
mlxsw_hwmon->groups);
|
||||
"mlxsw",
|
||||
&mlxsw_hwmon->line_cards[0],
|
||||
mlxsw_hwmon->line_cards[0].groups);
|
||||
if (IS_ERR(hwmon_dev)) {
|
||||
err = PTR_ERR(hwmon_dev);
|
||||
goto err_hwmon_register;
|
||||
}
|
||||
|
||||
mlxsw_hwmon->hwmon_dev = hwmon_dev;
|
||||
mlxsw_hwmon->line_cards[0].hwmon_dev = hwmon_dev;
|
||||
*p_hwmon = mlxsw_hwmon;
|
||||
return 0;
|
||||
|
||||
@ -804,6 +851,6 @@ err_temp_init:
|
||||
|
||||
void mlxsw_hwmon_fini(struct mlxsw_hwmon *mlxsw_hwmon)
|
||||
{
|
||||
hwmon_device_unregister(mlxsw_hwmon->hwmon_dev);
|
||||
hwmon_device_unregister(mlxsw_hwmon->line_cards[0].hwmon_dev);
|
||||
kfree(mlxsw_hwmon);
|
||||
}
|
||||
|
@ -21,7 +21,6 @@
|
||||
#define MLXSW_THERMAL_ASIC_TEMP_HOT 105000 /* 105C */
|
||||
#define MLXSW_THERMAL_HYSTERESIS_TEMP 5000 /* 5C */
|
||||
#define MLXSW_THERMAL_MODULE_TEMP_SHIFT (MLXSW_THERMAL_HYSTERESIS_TEMP * 2)
|
||||
#define MLXSW_THERMAL_ZONE_MAX_NAME 16
|
||||
#define MLXSW_THERMAL_TEMP_SCORE_MAX GENMASK(31, 0)
|
||||
#define MLXSW_THERMAL_MAX_STATE 10
|
||||
#define MLXSW_THERMAL_MIN_STATE 2
|
||||
@ -82,6 +81,15 @@ struct mlxsw_thermal_module {
|
||||
struct thermal_zone_device *tzdev;
|
||||
struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS];
|
||||
int module; /* Module or gearbox number */
|
||||
u8 slot_index;
|
||||
};
|
||||
|
||||
struct mlxsw_thermal_area {
|
||||
struct mlxsw_thermal_module *tz_module_arr;
|
||||
u8 tz_module_num;
|
||||
struct mlxsw_thermal_module *tz_gearbox_arr;
|
||||
u8 tz_gearbox_num;
|
||||
u8 slot_index;
|
||||
};
|
||||
|
||||
struct mlxsw_thermal {
|
||||
@ -92,12 +100,9 @@ struct mlxsw_thermal {
|
||||
struct thermal_cooling_device *cdevs[MLXSW_MFCR_PWMS_MAX];
|
||||
u8 cooling_levels[MLXSW_THERMAL_MAX_STATE + 1];
|
||||
struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS];
|
||||
struct mlxsw_thermal_module *tz_module_arr;
|
||||
u8 tz_module_num;
|
||||
struct mlxsw_thermal_module *tz_gearbox_arr;
|
||||
u8 tz_gearbox_num;
|
||||
unsigned int tz_highest_score;
|
||||
struct thermal_zone_device *tz_highest_dev;
|
||||
struct mlxsw_thermal_area line_cards[];
|
||||
};
|
||||
|
||||
static inline u8 mlxsw_state_to_duty(int state)
|
||||
@ -123,8 +128,7 @@ static int mlxsw_get_cooling_device_idx(struct mlxsw_thermal *thermal,
|
||||
|
||||
/* Allow mlxsw thermal zone binding to an external cooling device */
|
||||
for (i = 0; i < ARRAY_SIZE(mlxsw_thermal_external_allowed_cdev); i++) {
|
||||
if (strnstr(cdev->type, mlxsw_thermal_external_allowed_cdev[i],
|
||||
strlen(cdev->type)))
|
||||
if (!strcmp(cdev->type, mlxsw_thermal_external_allowed_cdev[i]))
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -150,13 +154,15 @@ mlxsw_thermal_module_trips_update(struct device *dev, struct mlxsw_core *core,
|
||||
* EEPROM if we got valid thresholds from MTMP.
|
||||
*/
|
||||
if (!emerg_temp || !crit_temp) {
|
||||
err = mlxsw_env_module_temp_thresholds_get(core, tz->module,
|
||||
err = mlxsw_env_module_temp_thresholds_get(core, tz->slot_index,
|
||||
tz->module,
|
||||
SFP_TEMP_HIGH_WARN,
|
||||
&crit_temp);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
err = mlxsw_env_module_temp_thresholds_get(core, tz->module,
|
||||
err = mlxsw_env_module_temp_thresholds_get(core, tz->slot_index,
|
||||
tz->module,
|
||||
SFP_TEMP_HIGH_ALARM,
|
||||
&emerg_temp);
|
||||
if (err)
|
||||
@ -423,15 +429,16 @@ static int mlxsw_thermal_module_unbind(struct thermal_zone_device *tzdev,
|
||||
|
||||
static void
|
||||
mlxsw_thermal_module_temp_and_thresholds_get(struct mlxsw_core *core,
|
||||
u16 sensor_index, int *p_temp,
|
||||
int *p_crit_temp,
|
||||
u8 slot_index, u16 sensor_index,
|
||||
int *p_temp, int *p_crit_temp,
|
||||
int *p_emerg_temp)
|
||||
{
|
||||
char mtmp_pl[MLXSW_REG_MTMP_LEN];
|
||||
int err;
|
||||
|
||||
/* Read module temperature and thresholds. */
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, 0, sensor_index, false, false);
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, slot_index, sensor_index,
|
||||
false, false);
|
||||
err = mlxsw_reg_query(core, MLXSW_REG(mtmp), mtmp_pl);
|
||||
if (err) {
|
||||
/* Set temperature and thresholds to zero to avoid passing
|
||||
@ -462,6 +469,7 @@ static int mlxsw_thermal_module_temp_get(struct thermal_zone_device *tzdev,
|
||||
|
||||
/* Read module temperature and thresholds. */
|
||||
mlxsw_thermal_module_temp_and_thresholds_get(thermal->core,
|
||||
tz->slot_index,
|
||||
sensor_index, &temp,
|
||||
&crit_temp, &emerg_temp);
|
||||
*p_temp = temp;
|
||||
@ -576,7 +584,7 @@ static int mlxsw_thermal_gearbox_temp_get(struct thermal_zone_device *tzdev,
|
||||
int err;
|
||||
|
||||
index = MLXSW_REG_MTMP_GBOX_INDEX_MIN + tz->module;
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, 0, index, false, false);
|
||||
mlxsw_reg_mtmp_pack(mtmp_pl, tz->slot_index, index, false, false);
|
||||
|
||||
err = mlxsw_reg_query(thermal->core, MLXSW_REG(mtmp), mtmp_pl);
|
||||
if (err)
|
||||
@ -672,11 +680,15 @@ static const struct thermal_cooling_device_ops mlxsw_cooling_ops = {
|
||||
static int
|
||||
mlxsw_thermal_module_tz_init(struct mlxsw_thermal_module *module_tz)
|
||||
{
|
||||
char tz_name[MLXSW_THERMAL_ZONE_MAX_NAME];
|
||||
char tz_name[THERMAL_NAME_LENGTH];
|
||||
int err;
|
||||
|
||||
snprintf(tz_name, sizeof(tz_name), "mlxsw-module%d",
|
||||
module_tz->module + 1);
|
||||
if (module_tz->slot_index)
|
||||
snprintf(tz_name, sizeof(tz_name), "mlxsw-lc%d-module%d",
|
||||
module_tz->slot_index, module_tz->module + 1);
|
||||
else
|
||||
snprintf(tz_name, sizeof(tz_name), "mlxsw-module%d",
|
||||
module_tz->module + 1);
|
||||
module_tz->tzdev = thermal_zone_device_register(tz_name,
|
||||
MLXSW_THERMAL_NUM_TRIPS,
|
||||
MLXSW_THERMAL_TRIP_MASK,
|
||||
@ -704,25 +716,28 @@ static void mlxsw_thermal_module_tz_fini(struct thermal_zone_device *tzdev)
|
||||
|
||||
static int
|
||||
mlxsw_thermal_module_init(struct device *dev, struct mlxsw_core *core,
|
||||
struct mlxsw_thermal *thermal, u8 module)
|
||||
struct mlxsw_thermal *thermal,
|
||||
struct mlxsw_thermal_area *area, u8 module)
|
||||
{
|
||||
struct mlxsw_thermal_module *module_tz;
|
||||
int dummy_temp, crit_temp, emerg_temp;
|
||||
u16 sensor_index;
|
||||
|
||||
sensor_index = MLXSW_REG_MTMP_MODULE_INDEX_MIN + module;
|
||||
module_tz = &thermal->tz_module_arr[module];
|
||||
module_tz = &area->tz_module_arr[module];
|
||||
/* Skip if parent is already set (case of port split). */
|
||||
if (module_tz->parent)
|
||||
return 0;
|
||||
module_tz->module = module;
|
||||
module_tz->slot_index = area->slot_index;
|
||||
module_tz->parent = thermal;
|
||||
memcpy(module_tz->trips, default_thermal_trips,
|
||||
sizeof(thermal->trips));
|
||||
/* Initialize all trip point. */
|
||||
mlxsw_thermal_module_trips_reset(module_tz);
|
||||
/* Read module temperature and thresholds. */
|
||||
mlxsw_thermal_module_temp_and_thresholds_get(core, sensor_index, &dummy_temp,
|
||||
mlxsw_thermal_module_temp_and_thresholds_get(core, area->slot_index,
|
||||
sensor_index, &dummy_temp,
|
||||
&crit_temp, &emerg_temp);
|
||||
/* Update trip point according to the module data. */
|
||||
return mlxsw_thermal_module_trips_update(dev, core, module_tz,
|
||||
@ -740,34 +755,39 @@ static void mlxsw_thermal_module_fini(struct mlxsw_thermal_module *module_tz)
|
||||
|
||||
static int
|
||||
mlxsw_thermal_modules_init(struct device *dev, struct mlxsw_core *core,
|
||||
struct mlxsw_thermal *thermal)
|
||||
struct mlxsw_thermal *thermal,
|
||||
struct mlxsw_thermal_area *area)
|
||||
{
|
||||
struct mlxsw_thermal_module *module_tz;
|
||||
char mgpir_pl[MLXSW_REG_MGPIR_LEN];
|
||||
int i, err;
|
||||
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, 0);
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, area->slot_index);
|
||||
err = mlxsw_reg_query(core, MLXSW_REG(mgpir), mgpir_pl);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
mlxsw_reg_mgpir_unpack(mgpir_pl, NULL, NULL, NULL,
|
||||
&thermal->tz_module_num, NULL);
|
||||
&area->tz_module_num, NULL);
|
||||
|
||||
thermal->tz_module_arr = kcalloc(thermal->tz_module_num,
|
||||
sizeof(*thermal->tz_module_arr),
|
||||
GFP_KERNEL);
|
||||
if (!thermal->tz_module_arr)
|
||||
/* For modular system module counter could be zero. */
|
||||
if (!area->tz_module_num)
|
||||
return 0;
|
||||
|
||||
area->tz_module_arr = kcalloc(area->tz_module_num,
|
||||
sizeof(*area->tz_module_arr),
|
||||
GFP_KERNEL);
|
||||
if (!area->tz_module_arr)
|
||||
return -ENOMEM;
|
||||
|
||||
for (i = 0; i < thermal->tz_module_num; i++) {
|
||||
err = mlxsw_thermal_module_init(dev, core, thermal, i);
|
||||
for (i = 0; i < area->tz_module_num; i++) {
|
||||
err = mlxsw_thermal_module_init(dev, core, thermal, area, i);
|
||||
if (err)
|
||||
goto err_thermal_module_init;
|
||||
}
|
||||
|
||||
for (i = 0; i < thermal->tz_module_num; i++) {
|
||||
module_tz = &thermal->tz_module_arr[i];
|
||||
for (i = 0; i < area->tz_module_num; i++) {
|
||||
module_tz = &area->tz_module_arr[i];
|
||||
if (!module_tz->parent)
|
||||
continue;
|
||||
err = mlxsw_thermal_module_tz_init(module_tz);
|
||||
@ -779,30 +799,35 @@ mlxsw_thermal_modules_init(struct device *dev, struct mlxsw_core *core,
|
||||
|
||||
err_thermal_module_tz_init:
|
||||
err_thermal_module_init:
|
||||
for (i = thermal->tz_module_num - 1; i >= 0; i--)
|
||||
mlxsw_thermal_module_fini(&thermal->tz_module_arr[i]);
|
||||
kfree(thermal->tz_module_arr);
|
||||
for (i = area->tz_module_num - 1; i >= 0; i--)
|
||||
mlxsw_thermal_module_fini(&area->tz_module_arr[i]);
|
||||
kfree(area->tz_module_arr);
|
||||
return err;
|
||||
}
|
||||
|
||||
static void
|
||||
mlxsw_thermal_modules_fini(struct mlxsw_thermal *thermal)
|
||||
mlxsw_thermal_modules_fini(struct mlxsw_thermal *thermal,
|
||||
struct mlxsw_thermal_area *area)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = thermal->tz_module_num - 1; i >= 0; i--)
|
||||
mlxsw_thermal_module_fini(&thermal->tz_module_arr[i]);
|
||||
kfree(thermal->tz_module_arr);
|
||||
for (i = area->tz_module_num - 1; i >= 0; i--)
|
||||
mlxsw_thermal_module_fini(&area->tz_module_arr[i]);
|
||||
kfree(area->tz_module_arr);
|
||||
}
|
||||
|
||||
static int
|
||||
mlxsw_thermal_gearbox_tz_init(struct mlxsw_thermal_module *gearbox_tz)
|
||||
{
|
||||
char tz_name[MLXSW_THERMAL_ZONE_MAX_NAME];
|
||||
char tz_name[THERMAL_NAME_LENGTH];
|
||||
int ret;
|
||||
|
||||
snprintf(tz_name, sizeof(tz_name), "mlxsw-gearbox%d",
|
||||
gearbox_tz->module + 1);
|
||||
if (gearbox_tz->slot_index)
|
||||
snprintf(tz_name, sizeof(tz_name), "mlxsw-lc%d-gearbox%d",
|
||||
gearbox_tz->slot_index, gearbox_tz->module + 1);
|
||||
else
|
||||
snprintf(tz_name, sizeof(tz_name), "mlxsw-gearbox%d",
|
||||
gearbox_tz->module + 1);
|
||||
gearbox_tz->tzdev = thermal_zone_device_register(tz_name,
|
||||
MLXSW_THERMAL_NUM_TRIPS,
|
||||
MLXSW_THERMAL_TRIP_MASK,
|
||||
@ -828,7 +853,8 @@ mlxsw_thermal_gearbox_tz_fini(struct mlxsw_thermal_module *gearbox_tz)
|
||||
|
||||
static int
|
||||
mlxsw_thermal_gearboxes_init(struct device *dev, struct mlxsw_core *core,
|
||||
struct mlxsw_thermal *thermal)
|
||||
struct mlxsw_thermal *thermal,
|
||||
struct mlxsw_thermal_area *area)
|
||||
{
|
||||
enum mlxsw_reg_mgpir_device_type device_type;
|
||||
struct mlxsw_thermal_module *gearbox_tz;
|
||||
@ -837,7 +863,7 @@ mlxsw_thermal_gearboxes_init(struct device *dev, struct mlxsw_core *core,
|
||||
int i;
|
||||
int err;
|
||||
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, 0);
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, area->slot_index);
|
||||
err = mlxsw_reg_query(core, MLXSW_REG(mgpir), mgpir_pl);
|
||||
if (err)
|
||||
return err;
|
||||
@ -848,19 +874,20 @@ mlxsw_thermal_gearboxes_init(struct device *dev, struct mlxsw_core *core,
|
||||
!gbox_num)
|
||||
return 0;
|
||||
|
||||
thermal->tz_gearbox_num = gbox_num;
|
||||
thermal->tz_gearbox_arr = kcalloc(thermal->tz_gearbox_num,
|
||||
sizeof(*thermal->tz_gearbox_arr),
|
||||
GFP_KERNEL);
|
||||
if (!thermal->tz_gearbox_arr)
|
||||
area->tz_gearbox_num = gbox_num;
|
||||
area->tz_gearbox_arr = kcalloc(area->tz_gearbox_num,
|
||||
sizeof(*area->tz_gearbox_arr),
|
||||
GFP_KERNEL);
|
||||
if (!area->tz_gearbox_arr)
|
||||
return -ENOMEM;
|
||||
|
||||
for (i = 0; i < thermal->tz_gearbox_num; i++) {
|
||||
gearbox_tz = &thermal->tz_gearbox_arr[i];
|
||||
for (i = 0; i < area->tz_gearbox_num; i++) {
|
||||
gearbox_tz = &area->tz_gearbox_arr[i];
|
||||
memcpy(gearbox_tz->trips, default_thermal_trips,
|
||||
sizeof(thermal->trips));
|
||||
gearbox_tz->module = i;
|
||||
gearbox_tz->parent = thermal;
|
||||
gearbox_tz->slot_index = area->slot_index;
|
||||
err = mlxsw_thermal_gearbox_tz_init(gearbox_tz);
|
||||
if (err)
|
||||
goto err_thermal_gearbox_tz_init;
|
||||
@ -870,19 +897,20 @@ mlxsw_thermal_gearboxes_init(struct device *dev, struct mlxsw_core *core,
|
||||
|
||||
err_thermal_gearbox_tz_init:
|
||||
for (i--; i >= 0; i--)
|
||||
mlxsw_thermal_gearbox_tz_fini(&thermal->tz_gearbox_arr[i]);
|
||||
kfree(thermal->tz_gearbox_arr);
|
||||
mlxsw_thermal_gearbox_tz_fini(&area->tz_gearbox_arr[i]);
|
||||
kfree(area->tz_gearbox_arr);
|
||||
return err;
|
||||
}
|
||||
|
||||
static void
|
||||
mlxsw_thermal_gearboxes_fini(struct mlxsw_thermal *thermal)
|
||||
mlxsw_thermal_gearboxes_fini(struct mlxsw_thermal *thermal,
|
||||
struct mlxsw_thermal_area *area)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = thermal->tz_gearbox_num - 1; i >= 0; i--)
|
||||
mlxsw_thermal_gearbox_tz_fini(&thermal->tz_gearbox_arr[i]);
|
||||
kfree(thermal->tz_gearbox_arr);
|
||||
for (i = area->tz_gearbox_num - 1; i >= 0; i--)
|
||||
mlxsw_thermal_gearbox_tz_fini(&area->tz_gearbox_arr[i]);
|
||||
kfree(area->tz_gearbox_arr);
|
||||
}
|
||||
|
||||
int mlxsw_thermal_init(struct mlxsw_core *core,
|
||||
@ -892,19 +920,29 @@ int mlxsw_thermal_init(struct mlxsw_core *core,
|
||||
char mfcr_pl[MLXSW_REG_MFCR_LEN] = { 0 };
|
||||
enum mlxsw_reg_mfcr_pwm_frequency freq;
|
||||
struct device *dev = bus_info->dev;
|
||||
char mgpir_pl[MLXSW_REG_MGPIR_LEN];
|
||||
struct mlxsw_thermal *thermal;
|
||||
u8 pwm_active, num_of_slots;
|
||||
u16 tacho_active;
|
||||
u8 pwm_active;
|
||||
int err, i;
|
||||
|
||||
thermal = devm_kzalloc(dev, sizeof(*thermal),
|
||||
GFP_KERNEL);
|
||||
mlxsw_reg_mgpir_pack(mgpir_pl, 0);
|
||||
err = mlxsw_reg_query(core, MLXSW_REG(mgpir), mgpir_pl);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
mlxsw_reg_mgpir_unpack(mgpir_pl, NULL, NULL, NULL, NULL,
|
||||
&num_of_slots);
|
||||
|
||||
thermal = kzalloc(struct_size(thermal, line_cards, num_of_slots + 1),
|
||||
GFP_KERNEL);
|
||||
if (!thermal)
|
||||
return -ENOMEM;
|
||||
|
||||
thermal->core = core;
|
||||
thermal->bus_info = bus_info;
|
||||
memcpy(thermal->trips, default_thermal_trips, sizeof(thermal->trips));
|
||||
thermal->line_cards[0].slot_index = 0;
|
||||
|
||||
err = mlxsw_reg_query(thermal->core, MLXSW_REG(mfcr), mfcr_pl);
|
||||
if (err) {
|
||||
@ -970,11 +1008,13 @@ int mlxsw_thermal_init(struct mlxsw_core *core,
|
||||
goto err_thermal_zone_device_register;
|
||||
}
|
||||
|
||||
err = mlxsw_thermal_modules_init(dev, core, thermal);
|
||||
err = mlxsw_thermal_modules_init(dev, core, thermal,
|
||||
&thermal->line_cards[0]);
|
||||
if (err)
|
||||
goto err_thermal_modules_init;
|
||||
|
||||
err = mlxsw_thermal_gearboxes_init(dev, core, thermal);
|
||||
err = mlxsw_thermal_gearboxes_init(dev, core, thermal,
|
||||
&thermal->line_cards[0]);
|
||||
if (err)
|
||||
goto err_thermal_gearboxes_init;
|
||||
|
||||
@ -986,9 +1026,9 @@ int mlxsw_thermal_init(struct mlxsw_core *core,
|
||||
return 0;
|
||||
|
||||
err_thermal_zone_device_enable:
|
||||
mlxsw_thermal_gearboxes_fini(thermal);
|
||||
mlxsw_thermal_gearboxes_fini(thermal, &thermal->line_cards[0]);
|
||||
err_thermal_gearboxes_init:
|
||||
mlxsw_thermal_modules_fini(thermal);
|
||||
mlxsw_thermal_modules_fini(thermal, &thermal->line_cards[0]);
|
||||
err_thermal_modules_init:
|
||||
if (thermal->tzdev) {
|
||||
thermal_zone_device_unregister(thermal->tzdev);
|
||||
@ -1001,7 +1041,7 @@ err_thermal_cooling_device_register:
|
||||
thermal_cooling_device_unregister(thermal->cdevs[i]);
|
||||
err_reg_write:
|
||||
err_reg_query:
|
||||
devm_kfree(dev, thermal);
|
||||
kfree(thermal);
|
||||
return err;
|
||||
}
|
||||
|
||||
@ -1009,8 +1049,8 @@ void mlxsw_thermal_fini(struct mlxsw_thermal *thermal)
|
||||
{
|
||||
int i;
|
||||
|
||||
mlxsw_thermal_gearboxes_fini(thermal);
|
||||
mlxsw_thermal_modules_fini(thermal);
|
||||
mlxsw_thermal_gearboxes_fini(thermal, &thermal->line_cards[0]);
|
||||
mlxsw_thermal_modules_fini(thermal, &thermal->line_cards[0]);
|
||||
if (thermal->tzdev) {
|
||||
thermal_zone_device_unregister(thermal->tzdev);
|
||||
thermal->tzdev = NULL;
|
||||
@ -1023,5 +1063,5 @@ void mlxsw_thermal_fini(struct mlxsw_thermal *thermal)
|
||||
}
|
||||
}
|
||||
|
||||
devm_kfree(thermal->bus_info->dev, thermal);
|
||||
kfree(thermal);
|
||||
}
|
||||
|
@ -59,7 +59,8 @@ static int mlxsw_m_port_open(struct net_device *dev)
|
||||
struct mlxsw_m_port *mlxsw_m_port = netdev_priv(dev);
|
||||
struct mlxsw_m *mlxsw_m = mlxsw_m_port->mlxsw_m;
|
||||
|
||||
return mlxsw_env_module_port_up(mlxsw_m->core, mlxsw_m_port->module);
|
||||
return mlxsw_env_module_port_up(mlxsw_m->core, 0,
|
||||
mlxsw_m_port->module);
|
||||
}
|
||||
|
||||
static int mlxsw_m_port_stop(struct net_device *dev)
|
||||
@ -67,7 +68,7 @@ static int mlxsw_m_port_stop(struct net_device *dev)
|
||||
struct mlxsw_m_port *mlxsw_m_port = netdev_priv(dev);
|
||||
struct mlxsw_m *mlxsw_m = mlxsw_m_port->mlxsw_m;
|
||||
|
||||
mlxsw_env_module_port_down(mlxsw_m->core, mlxsw_m_port->module);
|
||||
mlxsw_env_module_port_down(mlxsw_m->core, 0, mlxsw_m_port->module);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -110,7 +111,7 @@ static int mlxsw_m_get_module_info(struct net_device *netdev,
|
||||
struct mlxsw_m_port *mlxsw_m_port = netdev_priv(netdev);
|
||||
struct mlxsw_core *core = mlxsw_m_port->mlxsw_m->core;
|
||||
|
||||
return mlxsw_env_get_module_info(netdev, core, mlxsw_m_port->module,
|
||||
return mlxsw_env_get_module_info(netdev, core, 0, mlxsw_m_port->module,
|
||||
modinfo);
|
||||
}
|
||||
|
||||
@ -121,8 +122,8 @@ mlxsw_m_get_module_eeprom(struct net_device *netdev, struct ethtool_eeprom *ee,
|
||||
struct mlxsw_m_port *mlxsw_m_port = netdev_priv(netdev);
|
||||
struct mlxsw_core *core = mlxsw_m_port->mlxsw_m->core;
|
||||
|
||||
return mlxsw_env_get_module_eeprom(netdev, core, mlxsw_m_port->module,
|
||||
ee, data);
|
||||
return mlxsw_env_get_module_eeprom(netdev, core, 0,
|
||||
mlxsw_m_port->module, ee, data);
|
||||
}
|
||||
|
||||
static int
|
||||
@ -133,7 +134,8 @@ mlxsw_m_get_module_eeprom_by_page(struct net_device *netdev,
|
||||
struct mlxsw_m_port *mlxsw_m_port = netdev_priv(netdev);
|
||||
struct mlxsw_core *core = mlxsw_m_port->mlxsw_m->core;
|
||||
|
||||
return mlxsw_env_get_module_eeprom_by_page(core, mlxsw_m_port->module,
|
||||
return mlxsw_env_get_module_eeprom_by_page(core, 0,
|
||||
mlxsw_m_port->module,
|
||||
page, extack);
|
||||
}
|
||||
|
||||
@ -142,7 +144,7 @@ static int mlxsw_m_reset(struct net_device *netdev, u32 *flags)
|
||||
struct mlxsw_m_port *mlxsw_m_port = netdev_priv(netdev);
|
||||
struct mlxsw_core *core = mlxsw_m_port->mlxsw_m->core;
|
||||
|
||||
return mlxsw_env_reset_module(netdev, core, mlxsw_m_port->module,
|
||||
return mlxsw_env_reset_module(netdev, core, 0, mlxsw_m_port->module,
|
||||
flags);
|
||||
}
|
||||
|
||||
@ -154,7 +156,7 @@ mlxsw_m_get_module_power_mode(struct net_device *netdev,
|
||||
struct mlxsw_m_port *mlxsw_m_port = netdev_priv(netdev);
|
||||
struct mlxsw_core *core = mlxsw_m_port->mlxsw_m->core;
|
||||
|
||||
return mlxsw_env_get_module_power_mode(core, mlxsw_m_port->module,
|
||||
return mlxsw_env_get_module_power_mode(core, 0, mlxsw_m_port->module,
|
||||
params, extack);
|
||||
}
|
||||
|
||||
@ -166,7 +168,7 @@ mlxsw_m_set_module_power_mode(struct net_device *netdev,
|
||||
struct mlxsw_m_port *mlxsw_m_port = netdev_priv(netdev);
|
||||
struct mlxsw_core *core = mlxsw_m_port->mlxsw_m->core;
|
||||
|
||||
return mlxsw_env_set_module_power_mode(core, mlxsw_m_port->module,
|
||||
return mlxsw_env_set_module_power_mode(core, 0, mlxsw_m_port->module,
|
||||
params->policy, extack);
|
||||
}
|
||||
|
||||
@ -311,7 +313,7 @@ static int mlxsw_m_port_module_map(struct mlxsw_m *mlxsw_m, u16 local_port,
|
||||
|
||||
if (WARN_ON_ONCE(module >= max_ports))
|
||||
return -EINVAL;
|
||||
mlxsw_env_module_port_map(mlxsw_m->core, module);
|
||||
mlxsw_env_module_port_map(mlxsw_m->core, 0, module);
|
||||
mlxsw_m->module_to_port[module] = ++mlxsw_m->max_ports;
|
||||
|
||||
return 0;
|
||||
@ -320,7 +322,7 @@ static int mlxsw_m_port_module_map(struct mlxsw_m *mlxsw_m, u16 local_port,
|
||||
static void mlxsw_m_port_module_unmap(struct mlxsw_m *mlxsw_m, u8 module)
|
||||
{
|
||||
mlxsw_m->module_to_port[module] = -1;
|
||||
mlxsw_env_module_port_unmap(mlxsw_m->core, module);
|
||||
mlxsw_env_module_port_unmap(mlxsw_m->core, 0, module);
|
||||
}
|
||||
|
||||
static int mlxsw_m_ports_create(struct mlxsw_m *mlxsw_m)
|
||||
|
@ -539,7 +539,7 @@ mlxsw_sp_port_module_map(struct mlxsw_sp *mlxsw_sp, u16 local_port,
|
||||
char pmlp_pl[MLXSW_REG_PMLP_LEN];
|
||||
int i, err;
|
||||
|
||||
mlxsw_env_module_port_map(mlxsw_sp->core, port_mapping->module);
|
||||
mlxsw_env_module_port_map(mlxsw_sp->core, 0, port_mapping->module);
|
||||
|
||||
mlxsw_reg_pmlp_pack(pmlp_pl, local_port);
|
||||
mlxsw_reg_pmlp_width_set(pmlp_pl, port_mapping->width);
|
||||
@ -554,19 +554,19 @@ mlxsw_sp_port_module_map(struct mlxsw_sp *mlxsw_sp, u16 local_port,
|
||||
return 0;
|
||||
|
||||
err_pmlp_write:
|
||||
mlxsw_env_module_port_unmap(mlxsw_sp->core, port_mapping->module);
|
||||
mlxsw_env_module_port_unmap(mlxsw_sp->core, 0, port_mapping->module);
|
||||
return err;
|
||||
}
|
||||
|
||||
static void mlxsw_sp_port_module_unmap(struct mlxsw_sp *mlxsw_sp, u16 local_port,
|
||||
u8 module)
|
||||
u8 slot_index, u8 module)
|
||||
{
|
||||
char pmlp_pl[MLXSW_REG_PMLP_LEN];
|
||||
|
||||
mlxsw_reg_pmlp_pack(pmlp_pl, local_port);
|
||||
mlxsw_reg_pmlp_width_set(pmlp_pl, 0);
|
||||
mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(pmlp), pmlp_pl);
|
||||
mlxsw_env_module_port_unmap(mlxsw_sp->core, module);
|
||||
mlxsw_env_module_port_unmap(mlxsw_sp->core, slot_index, module);
|
||||
}
|
||||
|
||||
static int mlxsw_sp_port_open(struct net_device *dev)
|
||||
@ -575,7 +575,7 @@ static int mlxsw_sp_port_open(struct net_device *dev)
|
||||
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
|
||||
int err;
|
||||
|
||||
err = mlxsw_env_module_port_up(mlxsw_sp->core,
|
||||
err = mlxsw_env_module_port_up(mlxsw_sp->core, 0,
|
||||
mlxsw_sp_port->mapping.module);
|
||||
if (err)
|
||||
return err;
|
||||
@ -586,7 +586,7 @@ static int mlxsw_sp_port_open(struct net_device *dev)
|
||||
return 0;
|
||||
|
||||
err_port_admin_status_set:
|
||||
mlxsw_env_module_port_down(mlxsw_sp->core,
|
||||
mlxsw_env_module_port_down(mlxsw_sp->core, 0,
|
||||
mlxsw_sp_port->mapping.module);
|
||||
return err;
|
||||
}
|
||||
@ -598,7 +598,7 @@ static int mlxsw_sp_port_stop(struct net_device *dev)
|
||||
|
||||
netif_stop_queue(dev);
|
||||
mlxsw_sp_port_admin_status_set(mlxsw_sp_port, false);
|
||||
mlxsw_env_module_port_down(mlxsw_sp->core,
|
||||
mlxsw_env_module_port_down(mlxsw_sp->core, 0,
|
||||
mlxsw_sp_port->mapping.module);
|
||||
return 0;
|
||||
}
|
||||
@ -1449,7 +1449,7 @@ static int mlxsw_sp_port_overheat_init_val_set(struct mlxsw_sp_port *mlxsw_sp_po
|
||||
u64 overheat_counter;
|
||||
int err;
|
||||
|
||||
err = mlxsw_env_module_overheat_counter_get(mlxsw_sp->core, module,
|
||||
err = mlxsw_env_module_overheat_counter_get(mlxsw_sp->core, 0, module,
|
||||
&overheat_counter);
|
||||
if (err)
|
||||
return err;
|
||||
@ -1775,7 +1775,8 @@ err_port_label_info_get:
|
||||
mlxsw_sp_port_swid_set(mlxsw_sp, local_port,
|
||||
MLXSW_PORT_SWID_DISABLED_PORT);
|
||||
err_port_swid_set:
|
||||
mlxsw_sp_port_module_unmap(mlxsw_sp, local_port, port_mapping->module);
|
||||
mlxsw_sp_port_module_unmap(mlxsw_sp, local_port, 0,
|
||||
port_mapping->module);
|
||||
return err;
|
||||
}
|
||||
|
||||
@ -1804,7 +1805,7 @@ static void mlxsw_sp_port_remove(struct mlxsw_sp *mlxsw_sp, u16 local_port)
|
||||
mlxsw_core_port_fini(mlxsw_sp->core, local_port);
|
||||
mlxsw_sp_port_swid_set(mlxsw_sp, local_port,
|
||||
MLXSW_PORT_SWID_DISABLED_PORT);
|
||||
mlxsw_sp_port_module_unmap(mlxsw_sp, local_port, module);
|
||||
mlxsw_sp_port_module_unmap(mlxsw_sp, local_port, 0, module);
|
||||
}
|
||||
|
||||
static int mlxsw_sp_cpu_port_create(struct mlxsw_sp *mlxsw_sp)
|
||||
|
@ -573,7 +573,7 @@ mlxsw_sp_port_get_transceiver_overheat_stats(struct mlxsw_sp_port *mlxsw_sp_port
|
||||
u64 stats;
|
||||
int err;
|
||||
|
||||
err = mlxsw_env_module_overheat_counter_get(mlxsw_core,
|
||||
err = mlxsw_env_module_overheat_counter_get(mlxsw_core, 0,
|
||||
port_mapping.module,
|
||||
&stats);
|
||||
if (err)
|
||||
@ -1035,7 +1035,7 @@ static int mlxsw_sp_get_module_info(struct net_device *netdev,
|
||||
struct mlxsw_sp_port *mlxsw_sp_port = netdev_priv(netdev);
|
||||
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
|
||||
|
||||
return mlxsw_env_get_module_info(netdev, mlxsw_sp->core,
|
||||
return mlxsw_env_get_module_info(netdev, mlxsw_sp->core, 0,
|
||||
mlxsw_sp_port->mapping.module,
|
||||
modinfo);
|
||||
}
|
||||
@ -1046,7 +1046,7 @@ static int mlxsw_sp_get_module_eeprom(struct net_device *netdev,
|
||||
struct mlxsw_sp_port *mlxsw_sp_port = netdev_priv(netdev);
|
||||
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
|
||||
|
||||
return mlxsw_env_get_module_eeprom(netdev, mlxsw_sp->core,
|
||||
return mlxsw_env_get_module_eeprom(netdev, mlxsw_sp->core, 0,
|
||||
mlxsw_sp_port->mapping.module, ee,
|
||||
data);
|
||||
}
|
||||
@ -1060,8 +1060,8 @@ mlxsw_sp_get_module_eeprom_by_page(struct net_device *dev,
|
||||
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
|
||||
u8 module = mlxsw_sp_port->mapping.module;
|
||||
|
||||
return mlxsw_env_get_module_eeprom_by_page(mlxsw_sp->core, module, page,
|
||||
extack);
|
||||
return mlxsw_env_get_module_eeprom_by_page(mlxsw_sp->core, 0, module,
|
||||
page, extack);
|
||||
}
|
||||
|
||||
static int
|
||||
@ -1204,7 +1204,7 @@ static int mlxsw_sp_reset(struct net_device *dev, u32 *flags)
|
||||
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
|
||||
u8 module = mlxsw_sp_port->mapping.module;
|
||||
|
||||
return mlxsw_env_reset_module(dev, mlxsw_sp->core, module, flags);
|
||||
return mlxsw_env_reset_module(dev, mlxsw_sp->core, 0, module, flags);
|
||||
}
|
||||
|
||||
static int
|
||||
@ -1216,8 +1216,8 @@ mlxsw_sp_get_module_power_mode(struct net_device *dev,
|
||||
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
|
||||
u8 module = mlxsw_sp_port->mapping.module;
|
||||
|
||||
return mlxsw_env_get_module_power_mode(mlxsw_sp->core, module, params,
|
||||
extack);
|
||||
return mlxsw_env_get_module_power_mode(mlxsw_sp->core, 0, module,
|
||||
params, extack);
|
||||
}
|
||||
|
||||
static int
|
||||
@ -1229,7 +1229,7 @@ mlxsw_sp_set_module_power_mode(struct net_device *dev,
|
||||
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
|
||||
u8 module = mlxsw_sp_port->mapping.module;
|
||||
|
||||
return mlxsw_env_set_module_power_mode(mlxsw_sp->core, module,
|
||||
return mlxsw_env_set_module_power_mode(mlxsw_sp->core, 0, module,
|
||||
params->policy, extack);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user