|
@@ -1,7 +1,6 @@
|
|
|
/*
|
|
|
- * drivers/platform/x86/mlxcpld-hotplug.c
|
|
|
- * Copyright (c) 2016 Mellanox Technologies. All rights reserved.
|
|
|
- * Copyright (c) 2016 Vadim Pasternak <vadimp@mellanox.com>
|
|
|
+ * Copyright (c) 2016-2018 Mellanox Technologies. All rights reserved.
|
|
|
+ * Copyright (c) 2016-2018 Vadim Pasternak <vadimp@mellanox.com>
|
|
|
*
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
@@ -40,39 +39,39 @@
|
|
|
#include <linux/interrupt.h>
|
|
|
#include <linux/io.h>
|
|
|
#include <linux/module.h>
|
|
|
-#include <linux/platform_data/mlxcpld-hotplug.h>
|
|
|
+#include <linux/platform_data/mlxreg.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/spinlock.h>
|
|
|
#include <linux/wait.h>
|
|
|
#include <linux/workqueue.h>
|
|
|
|
|
|
/* Offset of event and mask registers from status register */
|
|
|
-#define MLXCPLD_HOTPLUG_EVENT_OFF 1
|
|
|
-#define MLXCPLD_HOTPLUG_MASK_OFF 2
|
|
|
-#define MLXCPLD_HOTPLUG_AGGR_MASK_OFF 1
|
|
|
+#define MLXREG_HOTPLUG_EVENT_OFF 1
|
|
|
+#define MLXREG_HOTPLUG_MASK_OFF 2
|
|
|
+#define MLXREG_HOTPLUG_AGGR_MASK_OFF 1
|
|
|
|
|
|
-#define MLXCPLD_HOTPLUG_ATTRS_NUM 8
|
|
|
+#define MLXREG_HOTPLUG_ATTRS_NUM 8
|
|
|
|
|
|
/**
|
|
|
- * enum mlxcpld_hotplug_attr_type - sysfs attributes for hotplug events:
|
|
|
- * @MLXCPLD_HOTPLUG_ATTR_TYPE_PSU: power supply unit attribute;
|
|
|
- * @MLXCPLD_HOTPLUG_ATTR_TYPE_PWR: power cable attribute;
|
|
|
- * @MLXCPLD_HOTPLUG_ATTR_TYPE_FAN: FAN drawer attribute;
|
|
|
+ * enum mlxreg_hotplug_attr_type - sysfs attributes for hotplug events:
|
|
|
+ * @MLXREG_HOTPLUG_ATTR_TYPE_PSU: power supply unit attribute;
|
|
|
+ * @MLXREG_HOTPLUG_ATTR_TYPE_PWR: power cable attribute;
|
|
|
+ * @MLXREG_HOTPLUG_ATTR_TYPE_FAN: FAN drawer attribute;
|
|
|
*/
|
|
|
-enum mlxcpld_hotplug_attr_type {
|
|
|
- MLXCPLD_HOTPLUG_ATTR_TYPE_PSU,
|
|
|
- MLXCPLD_HOTPLUG_ATTR_TYPE_PWR,
|
|
|
- MLXCPLD_HOTPLUG_ATTR_TYPE_FAN,
|
|
|
+enum mlxreg_hotplug_attr_type {
|
|
|
+ MLXREG_HOTPLUG_ATTR_TYPE_PSU,
|
|
|
+ MLXREG_HOTPLUG_ATTR_TYPE_PWR,
|
|
|
+ MLXREG_HOTPLUG_ATTR_TYPE_FAN,
|
|
|
};
|
|
|
|
|
|
/**
|
|
|
- * struct mlxcpld_hotplug_priv_data - platform private data:
|
|
|
+ * struct mlxreg_hotplug_priv_data - platform private data:
|
|
|
* @irq: platform interrupt number;
|
|
|
* @pdev: platform device;
|
|
|
* @plat: platform data;
|
|
|
* @hwmon: hwmon device;
|
|
|
- * @mlxcpld_hotplug_attr: sysfs attributes array;
|
|
|
- * @mlxcpld_hotplug_dev_attr: sysfs sensor device attribute array;
|
|
|
+ * @mlxreg_hotplug_attr: sysfs attributes array;
|
|
|
+ * @mlxreg_hotplug_dev_attr: sysfs sensor device attribute array;
|
|
|
* @group: sysfs attribute group;
|
|
|
* @groups: list of sysfs attribute group for hwmon registration;
|
|
|
* @dwork: delayed work template;
|
|
@@ -82,14 +81,14 @@ enum mlxcpld_hotplug_attr_type {
|
|
|
* @pwr_cache: last value of power register status;
|
|
|
* @fan_cache: last value of FAN register status;
|
|
|
*/
|
|
|
-struct mlxcpld_hotplug_priv_data {
|
|
|
+struct mlxreg_hotplug_priv_data {
|
|
|
int irq;
|
|
|
struct platform_device *pdev;
|
|
|
- struct mlxcpld_hotplug_platform_data *plat;
|
|
|
+ struct mlxreg_hotplug_platform_data *plat;
|
|
|
struct device *hwmon;
|
|
|
- struct attribute *mlxcpld_hotplug_attr[MLXCPLD_HOTPLUG_ATTRS_NUM + 1];
|
|
|
+ struct attribute *mlxreg_hotplug_attr[MLXREG_HOTPLUG_ATTRS_NUM + 1];
|
|
|
struct sensor_device_attribute_2
|
|
|
- mlxcpld_hotplug_dev_attr[MLXCPLD_HOTPLUG_ATTRS_NUM];
|
|
|
+ mlxreg_hotplug_dev_attr[MLXREG_HOTPLUG_ATTRS_NUM];
|
|
|
struct attribute_group group;
|
|
|
const struct attribute_group *groups[2];
|
|
|
struct delayed_work dwork;
|
|
@@ -100,29 +99,29 @@ struct mlxcpld_hotplug_priv_data {
|
|
|
u8 fan_cache;
|
|
|
};
|
|
|
|
|
|
-static ssize_t mlxcpld_hotplug_attr_show(struct device *dev,
|
|
|
- struct device_attribute *attr,
|
|
|
- char *buf)
|
|
|
+static ssize_t mlxreg_hotplug_attr_show(struct device *dev,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ char *buf)
|
|
|
{
|
|
|
struct platform_device *pdev = to_platform_device(dev);
|
|
|
- struct mlxcpld_hotplug_priv_data *priv = platform_get_drvdata(pdev);
|
|
|
+ struct mlxreg_hotplug_priv_data *priv = platform_get_drvdata(pdev);
|
|
|
int index = to_sensor_dev_attr_2(attr)->index;
|
|
|
int nr = to_sensor_dev_attr_2(attr)->nr;
|
|
|
u8 reg_val = 0;
|
|
|
|
|
|
switch (nr) {
|
|
|
- case MLXCPLD_HOTPLUG_ATTR_TYPE_PSU:
|
|
|
+ case MLXREG_HOTPLUG_ATTR_TYPE_PSU:
|
|
|
/* Bit = 0 : PSU is present. */
|
|
|
reg_val = !!!(inb(priv->plat->psu_reg_offset) & BIT(index));
|
|
|
break;
|
|
|
|
|
|
- case MLXCPLD_HOTPLUG_ATTR_TYPE_PWR:
|
|
|
+ case MLXREG_HOTPLUG_ATTR_TYPE_PWR:
|
|
|
/* Bit = 1 : power cable is attached. */
|
|
|
reg_val = !!(inb(priv->plat->pwr_reg_offset) & BIT(index %
|
|
|
priv->plat->pwr_count));
|
|
|
break;
|
|
|
|
|
|
- case MLXCPLD_HOTPLUG_ATTR_TYPE_FAN:
|
|
|
+ case MLXREG_HOTPLUG_ATTR_TYPE_FAN:
|
|
|
/* Bit = 0 : FAN is present. */
|
|
|
reg_val = !!!(inb(priv->plat->fan_reg_offset) & BIT(index %
|
|
|
priv->plat->fan_count));
|
|
@@ -132,9 +131,9 @@ static ssize_t mlxcpld_hotplug_attr_show(struct device *dev,
|
|
|
return sprintf(buf, "%u\n", reg_val);
|
|
|
}
|
|
|
|
|
|
-#define PRIV_ATTR(i) priv->mlxcpld_hotplug_attr[i]
|
|
|
-#define PRIV_DEV_ATTR(i) priv->mlxcpld_hotplug_dev_attr[i]
|
|
|
-static int mlxcpld_hotplug_attr_init(struct mlxcpld_hotplug_priv_data *priv)
|
|
|
+#define PRIV_ATTR(i) priv->mlxreg_hotplug_attr[i]
|
|
|
+#define PRIV_DEV_ATTR(i) priv->mlxreg_hotplug_dev_attr[i]
|
|
|
+static int mlxreg_hotplug_attr_init(struct mlxreg_hotplug_priv_data *priv)
|
|
|
{
|
|
|
int num_attrs = priv->plat->psu_count + priv->plat->pwr_count +
|
|
|
priv->plat->fan_count;
|
|
@@ -152,17 +151,17 @@ static int mlxcpld_hotplug_attr_init(struct mlxcpld_hotplug_priv_data *priv)
|
|
|
if (i < priv->plat->psu_count) {
|
|
|
PRIV_ATTR(i)->name = devm_kasprintf(&priv->pdev->dev,
|
|
|
GFP_KERNEL, "psu%u", i + 1);
|
|
|
- PRIV_DEV_ATTR(i).nr = MLXCPLD_HOTPLUG_ATTR_TYPE_PSU;
|
|
|
+ PRIV_DEV_ATTR(i).nr = MLXREG_HOTPLUG_ATTR_TYPE_PSU;
|
|
|
} else if (i < priv->plat->psu_count + priv->plat->pwr_count) {
|
|
|
PRIV_ATTR(i)->name = devm_kasprintf(&priv->pdev->dev,
|
|
|
GFP_KERNEL, "pwr%u", i %
|
|
|
priv->plat->pwr_count + 1);
|
|
|
- PRIV_DEV_ATTR(i).nr = MLXCPLD_HOTPLUG_ATTR_TYPE_PWR;
|
|
|
+ PRIV_DEV_ATTR(i).nr = MLXREG_HOTPLUG_ATTR_TYPE_PWR;
|
|
|
} else {
|
|
|
PRIV_ATTR(i)->name = devm_kasprintf(&priv->pdev->dev,
|
|
|
GFP_KERNEL, "fan%u", i %
|
|
|
priv->plat->fan_count + 1);
|
|
|
- PRIV_DEV_ATTR(i).nr = MLXCPLD_HOTPLUG_ATTR_TYPE_FAN;
|
|
|
+ PRIV_DEV_ATTR(i).nr = MLXREG_HOTPLUG_ATTR_TYPE_FAN;
|
|
|
}
|
|
|
|
|
|
if (!PRIV_ATTR(i)->name) {
|
|
@@ -173,20 +172,20 @@ static int mlxcpld_hotplug_attr_init(struct mlxcpld_hotplug_priv_data *priv)
|
|
|
|
|
|
PRIV_DEV_ATTR(i).dev_attr.attr.name = PRIV_ATTR(i)->name;
|
|
|
PRIV_DEV_ATTR(i).dev_attr.attr.mode = S_IRUGO;
|
|
|
- PRIV_DEV_ATTR(i).dev_attr.show = mlxcpld_hotplug_attr_show;
|
|
|
+ PRIV_DEV_ATTR(i).dev_attr.show = mlxreg_hotplug_attr_show;
|
|
|
PRIV_DEV_ATTR(i).index = i;
|
|
|
sysfs_attr_init(&PRIV_DEV_ATTR(i).dev_attr.attr);
|
|
|
}
|
|
|
|
|
|
- priv->group.attrs = priv->mlxcpld_hotplug_attr;
|
|
|
+ priv->group.attrs = priv->mlxreg_hotplug_attr;
|
|
|
priv->groups[0] = &priv->group;
|
|
|
priv->groups[1] = NULL;
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int mlxcpld_hotplug_device_create(struct device *dev,
|
|
|
- struct mlxcpld_hotplug_device *item)
|
|
|
+static int mlxreg_hotplug_device_create(struct device *dev,
|
|
|
+ struct mlxreg_hotplug_device *item)
|
|
|
{
|
|
|
item->adapter = i2c_get_adapter(item->bus);
|
|
|
if (!item->adapter) {
|
|
@@ -207,7 +206,7 @@ static int mlxcpld_hotplug_device_create(struct device *dev,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void mlxcpld_hotplug_device_destroy(struct mlxcpld_hotplug_device *item)
|
|
|
+static void mlxreg_hotplug_device_destroy(struct mlxreg_hotplug_device *item)
|
|
|
{
|
|
|
if (item->client) {
|
|
|
i2c_unregister_device(item->client);
|
|
@@ -221,15 +220,15 @@ static void mlxcpld_hotplug_device_destroy(struct mlxcpld_hotplug_device *item)
|
|
|
}
|
|
|
|
|
|
static inline void
|
|
|
-mlxcpld_hotplug_work_helper(struct device *dev,
|
|
|
- struct mlxcpld_hotplug_device *item, u8 is_inverse,
|
|
|
- u16 offset, u8 mask, u8 *cache)
|
|
|
+mlxreg_hotplug_work_helper(struct device *dev,
|
|
|
+ struct mlxreg_hotplug_device *item, u8 is_inverse,
|
|
|
+ u16 offset, u8 mask, u8 *cache)
|
|
|
{
|
|
|
u8 val, asserted;
|
|
|
int bit;
|
|
|
|
|
|
/* Mask event. */
|
|
|
- outb(0, offset + MLXCPLD_HOTPLUG_MASK_OFF);
|
|
|
+ outb(0, offset + MLXREG_HOTPLUG_MASK_OFF);
|
|
|
/* Read status. */
|
|
|
val = inb(offset) & mask;
|
|
|
asserted = *cache ^ val;
|
|
@@ -251,25 +250,25 @@ mlxcpld_hotplug_work_helper(struct device *dev,
|
|
|
for_each_set_bit(bit, (unsigned long *)&asserted, 8) {
|
|
|
if (val & BIT(bit)) {
|
|
|
if (is_inverse)
|
|
|
- mlxcpld_hotplug_device_destroy(item + bit);
|
|
|
+ mlxreg_hotplug_device_destroy(item + bit);
|
|
|
else
|
|
|
- mlxcpld_hotplug_device_create(dev, item + bit);
|
|
|
+ mlxreg_hotplug_device_create(dev, item + bit);
|
|
|
} else {
|
|
|
if (is_inverse)
|
|
|
- mlxcpld_hotplug_device_create(dev, item + bit);
|
|
|
+ mlxreg_hotplug_device_create(dev, item + bit);
|
|
|
else
|
|
|
- mlxcpld_hotplug_device_destroy(item + bit);
|
|
|
+ mlxreg_hotplug_device_destroy(item + bit);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/* Acknowledge event. */
|
|
|
- outb(0, offset + MLXCPLD_HOTPLUG_EVENT_OFF);
|
|
|
+ outb(0, offset + MLXREG_HOTPLUG_EVENT_OFF);
|
|
|
/* Unmask event. */
|
|
|
- outb(mask, offset + MLXCPLD_HOTPLUG_MASK_OFF);
|
|
|
+ outb(mask, offset + MLXREG_HOTPLUG_MASK_OFF);
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
- * mlxcpld_hotplug_work_handler - performs traversing of CPLD interrupt
|
|
|
+ * mlxreg_hotplug_work_handler - performs traversing of CPLD interrupt
|
|
|
* registers according to the below hierarchy schema:
|
|
|
*
|
|
|
* Aggregation registers (status/mask)
|
|
@@ -289,15 +288,15 @@ mlxcpld_hotplug_work_helper(struct device *dev,
|
|
|
* In case some system changed are detected: FAN in/out, PSU in/out, power
|
|
|
* cable attached/detached, relevant device is created or destroyed.
|
|
|
*/
|
|
|
-static void mlxcpld_hotplug_work_handler(struct work_struct *work)
|
|
|
+static void mlxreg_hotplug_work_handler(struct work_struct *work)
|
|
|
{
|
|
|
- struct mlxcpld_hotplug_priv_data *priv = container_of(work,
|
|
|
- struct mlxcpld_hotplug_priv_data, dwork.work);
|
|
|
+ struct mlxreg_hotplug_priv_data *priv = container_of(work,
|
|
|
+ struct mlxreg_hotplug_priv_data, dwork.work);
|
|
|
u8 val, aggr_asserted;
|
|
|
unsigned long flags;
|
|
|
|
|
|
/* Mask aggregation event. */
|
|
|
- outb(0, priv->plat->top_aggr_offset + MLXCPLD_HOTPLUG_AGGR_MASK_OFF);
|
|
|
+ outb(0, priv->plat->top_aggr_offset + MLXREG_HOTPLUG_AGGR_MASK_OFF);
|
|
|
/* Read aggregation status. */
|
|
|
val = inb(priv->plat->top_aggr_offset) & priv->plat->top_aggr_mask;
|
|
|
aggr_asserted = priv->aggr_cache ^ val;
|
|
@@ -305,31 +304,31 @@ static void mlxcpld_hotplug_work_handler(struct work_struct *work)
|
|
|
|
|
|
/* Handle PSU configuration changes. */
|
|
|
if (aggr_asserted & priv->plat->top_aggr_psu_mask)
|
|
|
- mlxcpld_hotplug_work_helper(&priv->pdev->dev, priv->plat->psu,
|
|
|
- 1, priv->plat->psu_reg_offset,
|
|
|
- priv->plat->psu_mask,
|
|
|
- &priv->psu_cache);
|
|
|
+ mlxreg_hotplug_work_helper(&priv->pdev->dev, priv->plat->psu,
|
|
|
+ 1, priv->plat->psu_reg_offset,
|
|
|
+ priv->plat->psu_mask,
|
|
|
+ &priv->psu_cache);
|
|
|
|
|
|
/* Handle power cable configuration changes. */
|
|
|
if (aggr_asserted & priv->plat->top_aggr_pwr_mask)
|
|
|
- mlxcpld_hotplug_work_helper(&priv->pdev->dev, priv->plat->pwr,
|
|
|
- 0, priv->plat->pwr_reg_offset,
|
|
|
- priv->plat->pwr_mask,
|
|
|
- &priv->pwr_cache);
|
|
|
+ mlxreg_hotplug_work_helper(&priv->pdev->dev, priv->plat->pwr,
|
|
|
+ 0, priv->plat->pwr_reg_offset,
|
|
|
+ priv->plat->pwr_mask,
|
|
|
+ &priv->pwr_cache);
|
|
|
|
|
|
/* Handle FAN configuration changes. */
|
|
|
if (aggr_asserted & priv->plat->top_aggr_fan_mask)
|
|
|
- mlxcpld_hotplug_work_helper(&priv->pdev->dev, priv->plat->fan,
|
|
|
- 1, priv->plat->fan_reg_offset,
|
|
|
- priv->plat->fan_mask,
|
|
|
- &priv->fan_cache);
|
|
|
+ mlxreg_hotplug_work_helper(&priv->pdev->dev, priv->plat->fan,
|
|
|
+ 1, priv->plat->fan_reg_offset,
|
|
|
+ priv->plat->fan_mask,
|
|
|
+ &priv->fan_cache);
|
|
|
|
|
|
if (aggr_asserted) {
|
|
|
spin_lock_irqsave(&priv->lock, flags);
|
|
|
|
|
|
/*
|
|
|
* It is possible, that some signals have been inserted, while
|
|
|
- * interrupt has been masked by mlxcpld_hotplug_work_handler.
|
|
|
+ * interrupt has been masked by mlxreg_hotplug_work_handler.
|
|
|
* In this case such signals will be missed. In order to handle
|
|
|
* these signals delayed work is canceled and work task
|
|
|
* re-scheduled for immediate execution. It allows to handle
|
|
@@ -347,42 +346,42 @@ static void mlxcpld_hotplug_work_handler(struct work_struct *work)
|
|
|
|
|
|
/* Unmask aggregation event (no need acknowledge). */
|
|
|
outb(priv->plat->top_aggr_mask, priv->plat->top_aggr_offset +
|
|
|
- MLXCPLD_HOTPLUG_AGGR_MASK_OFF);
|
|
|
+ MLXREG_HOTPLUG_AGGR_MASK_OFF);
|
|
|
}
|
|
|
|
|
|
-static void mlxcpld_hotplug_set_irq(struct mlxcpld_hotplug_priv_data *priv)
|
|
|
+static void mlxreg_hotplug_set_irq(struct mlxreg_hotplug_priv_data *priv)
|
|
|
{
|
|
|
/* Clear psu presense event. */
|
|
|
- outb(0, priv->plat->psu_reg_offset + MLXCPLD_HOTPLUG_EVENT_OFF);
|
|
|
+ outb(0, priv->plat->psu_reg_offset + MLXREG_HOTPLUG_EVENT_OFF);
|
|
|
/* Set psu initial status as mask and unmask psu event. */
|
|
|
priv->psu_cache = priv->plat->psu_mask;
|
|
|
outb(priv->plat->psu_mask, priv->plat->psu_reg_offset +
|
|
|
- MLXCPLD_HOTPLUG_MASK_OFF);
|
|
|
+ MLXREG_HOTPLUG_MASK_OFF);
|
|
|
|
|
|
/* Clear power cable event. */
|
|
|
- outb(0, priv->plat->pwr_reg_offset + MLXCPLD_HOTPLUG_EVENT_OFF);
|
|
|
+ outb(0, priv->plat->pwr_reg_offset + MLXREG_HOTPLUG_EVENT_OFF);
|
|
|
/* Keep power initial status as zero and unmask power event. */
|
|
|
outb(priv->plat->pwr_mask, priv->plat->pwr_reg_offset +
|
|
|
- MLXCPLD_HOTPLUG_MASK_OFF);
|
|
|
+ MLXREG_HOTPLUG_MASK_OFF);
|
|
|
|
|
|
/* Clear fan presense event. */
|
|
|
- outb(0, priv->plat->fan_reg_offset + MLXCPLD_HOTPLUG_EVENT_OFF);
|
|
|
+ outb(0, priv->plat->fan_reg_offset + MLXREG_HOTPLUG_EVENT_OFF);
|
|
|
/* Set fan initial status as mask and unmask fan event. */
|
|
|
priv->fan_cache = priv->plat->fan_mask;
|
|
|
outb(priv->plat->fan_mask, priv->plat->fan_reg_offset +
|
|
|
- MLXCPLD_HOTPLUG_MASK_OFF);
|
|
|
+ MLXREG_HOTPLUG_MASK_OFF);
|
|
|
|
|
|
/* Keep aggregation initial status as zero and unmask events. */
|
|
|
outb(priv->plat->top_aggr_mask, priv->plat->top_aggr_offset +
|
|
|
- MLXCPLD_HOTPLUG_AGGR_MASK_OFF);
|
|
|
+ MLXREG_HOTPLUG_AGGR_MASK_OFF);
|
|
|
|
|
|
/* Invoke work handler for initializing hot plug devices setting. */
|
|
|
- mlxcpld_hotplug_work_handler(&priv->dwork.work);
|
|
|
+ mlxreg_hotplug_work_handler(&priv->dwork.work);
|
|
|
|
|
|
enable_irq(priv->irq);
|
|
|
}
|
|
|
|
|
|
-static void mlxcpld_hotplug_unset_irq(struct mlxcpld_hotplug_priv_data *priv)
|
|
|
+static void mlxreg_hotplug_unset_irq(struct mlxreg_hotplug_priv_data *priv)
|
|
|
{
|
|
|
int i;
|
|
|
|
|
@@ -390,38 +389,38 @@ static void mlxcpld_hotplug_unset_irq(struct mlxcpld_hotplug_priv_data *priv)
|
|
|
cancel_delayed_work_sync(&priv->dwork);
|
|
|
|
|
|
/* Mask aggregation event. */
|
|
|
- outb(0, priv->plat->top_aggr_offset + MLXCPLD_HOTPLUG_AGGR_MASK_OFF);
|
|
|
+ outb(0, priv->plat->top_aggr_offset + MLXREG_HOTPLUG_AGGR_MASK_OFF);
|
|
|
|
|
|
/* Mask psu presense event. */
|
|
|
- outb(0, priv->plat->psu_reg_offset + MLXCPLD_HOTPLUG_MASK_OFF);
|
|
|
+ outb(0, priv->plat->psu_reg_offset + MLXREG_HOTPLUG_MASK_OFF);
|
|
|
/* Clear psu presense event. */
|
|
|
- outb(0, priv->plat->psu_reg_offset + MLXCPLD_HOTPLUG_EVENT_OFF);
|
|
|
+ outb(0, priv->plat->psu_reg_offset + MLXREG_HOTPLUG_EVENT_OFF);
|
|
|
|
|
|
/* Mask power cable event. */
|
|
|
- outb(0, priv->plat->pwr_reg_offset + MLXCPLD_HOTPLUG_MASK_OFF);
|
|
|
+ outb(0, priv->plat->pwr_reg_offset + MLXREG_HOTPLUG_MASK_OFF);
|
|
|
/* Clear power cable event. */
|
|
|
- outb(0, priv->plat->pwr_reg_offset + MLXCPLD_HOTPLUG_EVENT_OFF);
|
|
|
+ outb(0, priv->plat->pwr_reg_offset + MLXREG_HOTPLUG_EVENT_OFF);
|
|
|
|
|
|
/* Mask fan presense event. */
|
|
|
- outb(0, priv->plat->fan_reg_offset + MLXCPLD_HOTPLUG_MASK_OFF);
|
|
|
+ outb(0, priv->plat->fan_reg_offset + MLXREG_HOTPLUG_MASK_OFF);
|
|
|
/* Clear fan presense event. */
|
|
|
- outb(0, priv->plat->fan_reg_offset + MLXCPLD_HOTPLUG_EVENT_OFF);
|
|
|
+ outb(0, priv->plat->fan_reg_offset + MLXREG_HOTPLUG_EVENT_OFF);
|
|
|
|
|
|
/* Remove all the attached devices. */
|
|
|
for (i = 0; i < priv->plat->psu_count; i++)
|
|
|
- mlxcpld_hotplug_device_destroy(priv->plat->psu + i);
|
|
|
+ mlxreg_hotplug_device_destroy(priv->plat->psu + i);
|
|
|
|
|
|
for (i = 0; i < priv->plat->pwr_count; i++)
|
|
|
- mlxcpld_hotplug_device_destroy(priv->plat->pwr + i);
|
|
|
+ mlxreg_hotplug_device_destroy(priv->plat->pwr + i);
|
|
|
|
|
|
for (i = 0; i < priv->plat->fan_count; i++)
|
|
|
- mlxcpld_hotplug_device_destroy(priv->plat->fan + i);
|
|
|
+ mlxreg_hotplug_device_destroy(priv->plat->fan + i);
|
|
|
}
|
|
|
|
|
|
-static irqreturn_t mlxcpld_hotplug_irq_handler(int irq, void *dev)
|
|
|
+static irqreturn_t mlxreg_hotplug_irq_handler(int irq, void *dev)
|
|
|
{
|
|
|
- struct mlxcpld_hotplug_priv_data *priv =
|
|
|
- (struct mlxcpld_hotplug_priv_data *)dev;
|
|
|
+ struct mlxreg_hotplug_priv_data *priv =
|
|
|
+ (struct mlxreg_hotplug_priv_data *)dev;
|
|
|
|
|
|
/* Schedule work task for immediate execution.*/
|
|
|
schedule_delayed_work(&priv->dwork, 0);
|
|
@@ -429,10 +428,10 @@ static irqreturn_t mlxcpld_hotplug_irq_handler(int irq, void *dev)
|
|
|
return IRQ_HANDLED;
|
|
|
}
|
|
|
|
|
|
-static int mlxcpld_hotplug_probe(struct platform_device *pdev)
|
|
|
+static int mlxreg_hotplug_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
- struct mlxcpld_hotplug_platform_data *pdata;
|
|
|
- struct mlxcpld_hotplug_priv_data *priv;
|
|
|
+ struct mlxreg_hotplug_platform_data *pdata;
|
|
|
+ struct mlxreg_hotplug_priv_data *priv;
|
|
|
int err;
|
|
|
|
|
|
pdata = dev_get_platdata(&pdev->dev);
|
|
@@ -456,25 +455,25 @@ static int mlxcpld_hotplug_probe(struct platform_device *pdev)
|
|
|
}
|
|
|
|
|
|
err = devm_request_irq(&pdev->dev, priv->irq,
|
|
|
- mlxcpld_hotplug_irq_handler, 0, pdev->name,
|
|
|
- priv);
|
|
|
+ mlxreg_hotplug_irq_handler, 0, pdev->name,
|
|
|
+ priv);
|
|
|
if (err) {
|
|
|
dev_err(&pdev->dev, "Failed to request irq: %d\n", err);
|
|
|
return err;
|
|
|
}
|
|
|
disable_irq(priv->irq);
|
|
|
|
|
|
- INIT_DELAYED_WORK(&priv->dwork, mlxcpld_hotplug_work_handler);
|
|
|
+ INIT_DELAYED_WORK(&priv->dwork, mlxreg_hotplug_work_handler);
|
|
|
spin_lock_init(&priv->lock);
|
|
|
|
|
|
- err = mlxcpld_hotplug_attr_init(priv);
|
|
|
+ err = mlxreg_hotplug_attr_init(priv);
|
|
|
if (err) {
|
|
|
dev_err(&pdev->dev, "Failed to allocate attributes: %d\n", err);
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
priv->hwmon = devm_hwmon_device_register_with_groups(&pdev->dev,
|
|
|
- "mlxcpld_hotplug", priv, priv->groups);
|
|
|
+ "mlxreg_hotplug", priv, priv->groups);
|
|
|
if (IS_ERR(priv->hwmon)) {
|
|
|
dev_err(&pdev->dev, "Failed to register hwmon device %ld\n",
|
|
|
PTR_ERR(priv->hwmon));
|
|
@@ -484,32 +483,32 @@ static int mlxcpld_hotplug_probe(struct platform_device *pdev)
|
|
|
platform_set_drvdata(pdev, priv);
|
|
|
|
|
|
/* Perform initial interrupts setup. */
|
|
|
- mlxcpld_hotplug_set_irq(priv);
|
|
|
+ mlxreg_hotplug_set_irq(priv);
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int mlxcpld_hotplug_remove(struct platform_device *pdev)
|
|
|
+static int mlxreg_hotplug_remove(struct platform_device *pdev)
|
|
|
{
|
|
|
- struct mlxcpld_hotplug_priv_data *priv = platform_get_drvdata(pdev);
|
|
|
+ struct mlxreg_hotplug_priv_data *priv = platform_get_drvdata(pdev);
|
|
|
|
|
|
/* Clean interrupts setup. */
|
|
|
- mlxcpld_hotplug_unset_irq(priv);
|
|
|
+ mlxreg_hotplug_unset_irq(priv);
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static struct platform_driver mlxcpld_hotplug_driver = {
|
|
|
+static struct platform_driver mlxreg_hotplug_driver = {
|
|
|
.driver = {
|
|
|
- .name = "mlxcpld-hotplug",
|
|
|
+ .name = "mlxreg-hotplug",
|
|
|
},
|
|
|
- .probe = mlxcpld_hotplug_probe,
|
|
|
- .remove = mlxcpld_hotplug_remove,
|
|
|
+ .probe = mlxreg_hotplug_probe,
|
|
|
+ .remove = mlxreg_hotplug_remove,
|
|
|
};
|
|
|
|
|
|
-module_platform_driver(mlxcpld_hotplug_driver);
|
|
|
+module_platform_driver(mlxreg_hotplug_driver);
|
|
|
|
|
|
MODULE_AUTHOR("Vadim Pasternak <vadimp@mellanox.com>");
|
|
|
-MODULE_DESCRIPTION("Mellanox CPLD hotplug platform driver");
|
|
|
+MODULE_DESCRIPTION("Mellanox regmap hotplug platform driver");
|
|
|
MODULE_LICENSE("Dual BSD/GPL");
|
|
|
-MODULE_ALIAS("platform:mlxcpld-hotplug");
|
|
|
+MODULE_ALIAS("platform:mlxreg-hotplug");
|