mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 23:00:21 +00:00
ed5c2f5fd1
The value returned by an i2c driver's remove function is mostly ignored. (Only an error message is printed if the value is non-zero that the error is ignored.) So change the prototype of the remove function to return no value. This way driver authors are not tempted to assume that passing an error to the upper layer is a good idea. All drivers are adapted accordingly. There is no intended change of behaviour, all callbacks were prepared to return 0 before. Reviewed-by: Peter Senna Tschudin <peter.senna@gmail.com> Reviewed-by: Jeremy Kerr <jk@codeconstruct.com.au> Reviewed-by: Benjamin Mugnier <benjamin.mugnier@foss.st.com> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Reviewed-by: Crt Mori <cmo@melexis.com> Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Marek Behún <kabel@kernel.org> # for leds-turris-omnia Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Petr Machata <petrm@nvidia.com> # for mlxsw Reviewed-by: Maximilian Luz <luzmaximilian@gmail.com> # for surface3_power Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> # for bmc150-accel-i2c + kxcjk-1013 Reviewed-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> # for media/* + staging/media/* Acked-by: Miguel Ojeda <ojeda@kernel.org> # for auxdisplay/ht16k33 + auxdisplay/lcd2s Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com> # for versaclock5 Reviewed-by: Ajay Gupta <ajayg@nvidia.com> # for ucsi_ccg Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> # for iio Acked-by: Peter Rosin <peda@axentia.se> # for i2c-mux-*, max9860 Acked-by: Adrien Grassein <adrien.grassein@gmail.com> # for lontium-lt8912b Reviewed-by: Jean Delvare <jdelvare@suse.de> # for hwmon, i2c-core and i2c/muxes Acked-by: Corey Minyard <cminyard@mvista.com> # for IPMI Reviewed-by: Vladimir Oltean <olteanv@gmail.com> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Acked-by: Sebastian Reichel <sebastian.reichel@collabora.com> # for drivers/power Acked-by: Krzysztof Hałasa <khalasa@piap.pl> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Wolfram Sang <wsa@kernel.org>
225 lines
4.8 KiB
C
225 lines
4.8 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Power Management and GPIO expander driver for MPC8349E-mITX-compatible MCU
|
|
*
|
|
* Copyright (c) 2008 MontaVista Software, Inc.
|
|
*
|
|
* Author: Anton Vorontsov <avorontsov@ru.mvista.com>
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/mod_devicetable.h>
|
|
#include <linux/module.h>
|
|
#include <linux/device.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/i2c.h>
|
|
#include <linux/gpio/driver.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/kthread.h>
|
|
#include <linux/property.h>
|
|
#include <linux/reboot.h>
|
|
#include <asm/machdep.h>
|
|
|
|
/*
|
|
* I don't have specifications for the MCU firmware, I found this register
|
|
* and bits positions by the trial&error method.
|
|
*/
|
|
#define MCU_REG_CTRL 0x20
|
|
#define MCU_CTRL_POFF 0x40
|
|
#define MCU_CTRL_BTN 0x80
|
|
|
|
#define MCU_NUM_GPIO 2
|
|
|
|
struct mcu {
|
|
struct mutex lock;
|
|
struct i2c_client *client;
|
|
struct gpio_chip gc;
|
|
u8 reg_ctrl;
|
|
};
|
|
|
|
static struct mcu *glob_mcu;
|
|
|
|
struct task_struct *shutdown_thread;
|
|
static int shutdown_thread_fn(void *data)
|
|
{
|
|
int ret;
|
|
struct mcu *mcu = glob_mcu;
|
|
|
|
while (!kthread_should_stop()) {
|
|
ret = i2c_smbus_read_byte_data(mcu->client, MCU_REG_CTRL);
|
|
if (ret < 0)
|
|
pr_err("MCU status reg read failed.\n");
|
|
mcu->reg_ctrl = ret;
|
|
|
|
|
|
if (mcu->reg_ctrl & MCU_CTRL_BTN) {
|
|
i2c_smbus_write_byte_data(mcu->client, MCU_REG_CTRL,
|
|
mcu->reg_ctrl & ~MCU_CTRL_BTN);
|
|
|
|
ctrl_alt_del();
|
|
}
|
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
|
schedule_timeout(HZ);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static ssize_t show_status(struct device *d,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
int ret;
|
|
struct mcu *mcu = glob_mcu;
|
|
|
|
ret = i2c_smbus_read_byte_data(mcu->client, MCU_REG_CTRL);
|
|
if (ret < 0)
|
|
return -ENODEV;
|
|
mcu->reg_ctrl = ret;
|
|
|
|
return sprintf(buf, "%02x\n", ret);
|
|
}
|
|
static DEVICE_ATTR(status, 0444, show_status, NULL);
|
|
|
|
static void mcu_power_off(void)
|
|
{
|
|
struct mcu *mcu = glob_mcu;
|
|
|
|
pr_info("Sending power-off request to the MCU...\n");
|
|
mutex_lock(&mcu->lock);
|
|
i2c_smbus_write_byte_data(mcu->client, MCU_REG_CTRL,
|
|
mcu->reg_ctrl | MCU_CTRL_POFF);
|
|
mutex_unlock(&mcu->lock);
|
|
}
|
|
|
|
static void mcu_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
|
|
{
|
|
struct mcu *mcu = gpiochip_get_data(gc);
|
|
u8 bit = 1 << (4 + gpio);
|
|
|
|
mutex_lock(&mcu->lock);
|
|
if (val)
|
|
mcu->reg_ctrl &= ~bit;
|
|
else
|
|
mcu->reg_ctrl |= bit;
|
|
|
|
i2c_smbus_write_byte_data(mcu->client, MCU_REG_CTRL, mcu->reg_ctrl);
|
|
mutex_unlock(&mcu->lock);
|
|
}
|
|
|
|
static int mcu_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
|
|
{
|
|
mcu_gpio_set(gc, gpio, val);
|
|
return 0;
|
|
}
|
|
|
|
static int mcu_gpiochip_add(struct mcu *mcu)
|
|
{
|
|
struct device *dev = &mcu->client->dev;
|
|
struct gpio_chip *gc = &mcu->gc;
|
|
|
|
gc->owner = THIS_MODULE;
|
|
gc->label = kasprintf(GFP_KERNEL, "%pfw", dev_fwnode(dev));
|
|
gc->can_sleep = 1;
|
|
gc->ngpio = MCU_NUM_GPIO;
|
|
gc->base = -1;
|
|
gc->set = mcu_gpio_set;
|
|
gc->direction_output = mcu_gpio_dir_out;
|
|
gc->parent = dev;
|
|
|
|
return gpiochip_add_data(gc, mcu);
|
|
}
|
|
|
|
static void mcu_gpiochip_remove(struct mcu *mcu)
|
|
{
|
|
kfree(mcu->gc.label);
|
|
gpiochip_remove(&mcu->gc);
|
|
}
|
|
|
|
static int mcu_probe(struct i2c_client *client)
|
|
{
|
|
struct mcu *mcu;
|
|
int ret;
|
|
|
|
mcu = kzalloc(sizeof(*mcu), GFP_KERNEL);
|
|
if (!mcu)
|
|
return -ENOMEM;
|
|
|
|
mutex_init(&mcu->lock);
|
|
mcu->client = client;
|
|
i2c_set_clientdata(client, mcu);
|
|
|
|
ret = i2c_smbus_read_byte_data(mcu->client, MCU_REG_CTRL);
|
|
if (ret < 0)
|
|
goto err;
|
|
mcu->reg_ctrl = ret;
|
|
|
|
ret = mcu_gpiochip_add(mcu);
|
|
if (ret)
|
|
goto err;
|
|
|
|
/* XXX: this is potentially racy, but there is no lock for pm_power_off */
|
|
if (!pm_power_off) {
|
|
glob_mcu = mcu;
|
|
pm_power_off = mcu_power_off;
|
|
dev_info(&client->dev, "will provide power-off service\n");
|
|
}
|
|
|
|
if (device_create_file(&client->dev, &dev_attr_status))
|
|
dev_err(&client->dev,
|
|
"couldn't create device file for status\n");
|
|
|
|
shutdown_thread = kthread_run(shutdown_thread_fn, NULL,
|
|
"mcu-i2c-shdn");
|
|
|
|
return 0;
|
|
err:
|
|
kfree(mcu);
|
|
return ret;
|
|
}
|
|
|
|
static void mcu_remove(struct i2c_client *client)
|
|
{
|
|
struct mcu *mcu = i2c_get_clientdata(client);
|
|
|
|
kthread_stop(shutdown_thread);
|
|
|
|
device_remove_file(&client->dev, &dev_attr_status);
|
|
|
|
if (glob_mcu == mcu) {
|
|
pm_power_off = NULL;
|
|
glob_mcu = NULL;
|
|
}
|
|
|
|
mcu_gpiochip_remove(mcu);
|
|
kfree(mcu);
|
|
}
|
|
|
|
static const struct i2c_device_id mcu_ids[] = {
|
|
{ "mcu-mpc8349emitx", },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(i2c, mcu_ids);
|
|
|
|
static const struct of_device_id mcu_of_match_table[] = {
|
|
{ .compatible = "fsl,mcu-mpc8349emitx", },
|
|
{ },
|
|
};
|
|
|
|
static struct i2c_driver mcu_driver = {
|
|
.driver = {
|
|
.name = "mcu-mpc8349emitx",
|
|
.of_match_table = mcu_of_match_table,
|
|
},
|
|
.probe_new = mcu_probe,
|
|
.remove = mcu_remove,
|
|
.id_table = mcu_ids,
|
|
};
|
|
|
|
module_i2c_driver(mcu_driver);
|
|
|
|
MODULE_DESCRIPTION("Power Management and GPIO expander driver for "
|
|
"MPC8349E-mITX-compatible MCU");
|
|
MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
|
|
MODULE_LICENSE("GPL");
|