215 lines
5.3 KiB
C
215 lines
5.3 KiB
C
/*
|
|
* haptic motor driver for max77833_haptic.c
|
|
*
|
|
* Copyright (C) 2013 Ravi Shekhar Singh <shekhar.sr@samsung.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/hrtimer.h>
|
|
#include <linux/pwm.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/err.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/i2c.h>
|
|
#include <linux/regulator/consumer.h>
|
|
#include <linux/mfd/max77833.h>
|
|
#include <linux/mfd/max77833-private.h>
|
|
|
|
#define MOTOR_EN (1<<6)
|
|
#define MOTOR_EN_PWM 0x23
|
|
#define MAX77833_REG_MAINCTRL1_BIASEN (1<<7)
|
|
|
|
struct max77833_haptic_data {
|
|
struct max77833_dev *max77833;
|
|
struct i2c_client *i2c;
|
|
struct max77833_haptic_platform_data *pdata;
|
|
|
|
bool running;
|
|
};
|
|
|
|
struct max77833_haptic_data *max77833_g_hap_data;
|
|
|
|
static void max77833_haptic_i2c(struct max77833_haptic_data *hap_data, bool en)
|
|
{
|
|
int ret;
|
|
|
|
|
|
if (en) {
|
|
ret = max77833_update_reg(hap_data->i2c,
|
|
MAX77833_LRA_ENABLE_2, 0xdf, MOTOR_EN_PWM);
|
|
} else {
|
|
ret = max77833_update_reg(hap_data->i2c,
|
|
MAX77833_LRA_ENABLE_2, 0x20, MOTOR_EN_PWM);
|
|
}
|
|
if (ret)
|
|
pr_err("[VIB] i2c MOTOR_EN_PWM update error %d\n", ret);
|
|
|
|
}
|
|
|
|
#ifdef CONFIG_SS_VIBRATOR
|
|
void max77833_vibtonz_en(bool en)
|
|
{
|
|
if (max77833_g_hap_data == NULL) {
|
|
return ;
|
|
}
|
|
|
|
if (en) {
|
|
if (max77833_g_hap_data->running)
|
|
return;
|
|
max77833_haptic_i2c(max77833_g_hap_data, true);
|
|
|
|
max77833_g_hap_data->running = true;
|
|
} else {
|
|
if (!max77833_g_hap_data->running)
|
|
return;
|
|
max77833_haptic_i2c(max77833_g_hap_data, false);
|
|
|
|
max77833_g_hap_data->running = false;
|
|
}
|
|
}
|
|
EXPORT_SYMBOL(max77833_vibtonz_en);
|
|
#endif
|
|
|
|
#if defined(CONFIG_OF)
|
|
static struct max77833_haptic_platform_data *of_max77833_haptic_dt(struct device *dev)
|
|
{
|
|
struct device_node *np = dev->parent->of_node;
|
|
struct max77833_haptic_platform_data *pdata;
|
|
|
|
pdata = kzalloc(sizeof(struct max77833_haptic_platform_data), GFP_KERNEL);
|
|
if (pdata == NULL)
|
|
{
|
|
pr_err("[VIB] %s: failed to allocate driver data\n", __func__);
|
|
return NULL;
|
|
}
|
|
|
|
if (!of_property_read_u32(np, "haptic,mode", &pdata->mode))
|
|
pdata->mode = 1;
|
|
if (!of_property_read_u32(np, "haptic,divisor", &pdata->divisor))
|
|
pdata->divisor = 128;
|
|
pr_info("[VIB] %s: mode: %d \n", __func__, pdata->mode);
|
|
pr_info("[VIB] %s: divisor: %d \n", __func__, pdata->divisor);
|
|
|
|
return pdata;
|
|
}
|
|
#endif
|
|
|
|
static int max77833_haptic_probe(struct platform_device *pdev)
|
|
{
|
|
int error = 0;
|
|
struct max77833_dev *max77833 = dev_get_drvdata(pdev->dev.parent);
|
|
struct max77833_platform_data *max77833_pdata
|
|
= dev_get_platdata(max77833->dev);
|
|
struct max77833_haptic_platform_data *pdata
|
|
= max77833_pdata->haptic_data;
|
|
struct max77833_haptic_data *hap_data;
|
|
#if defined(CONFIG_OF)
|
|
if (pdata == NULL)
|
|
pdata = of_max77833_haptic_dt(&pdev->dev);
|
|
#endif
|
|
pr_err("[VIB] ++ %s\n", __func__);
|
|
if (pdata == NULL) {
|
|
pr_err("[VIB] %s: no pdata\n", __func__);
|
|
return -ENODEV;
|
|
}
|
|
|
|
hap_data = kzalloc(sizeof(struct max77833_haptic_data), GFP_KERNEL);
|
|
if (!hap_data)
|
|
return -ENOMEM;
|
|
|
|
max77833_g_hap_data = hap_data;
|
|
hap_data->max77833 = max77833;
|
|
hap_data->i2c = max77833->i2c;
|
|
hap_data->pdata = pdata;
|
|
platform_set_drvdata(pdev, hap_data);
|
|
|
|
pr_err("[VIB] -- %s\n", __func__);
|
|
|
|
return error;
|
|
}
|
|
|
|
static int max77833_haptic_remove(struct platform_device *pdev)
|
|
{
|
|
struct max77833_haptic_data *data = platform_get_drvdata(pdev);
|
|
int ret;
|
|
|
|
pr_info("[VIB] %s: Disable HAPTIC\n", __func__);
|
|
ret = max77833_update_reg(data->i2c, MAX77833_LRA_ENABLE_2, 0x20, MOTOR_EN_PWM);
|
|
if (ret < 0) {
|
|
pr_err("[VIB] %s: fail to update reg\n", __func__);
|
|
return -1;
|
|
}
|
|
|
|
kfree(data);
|
|
max77833_g_hap_data = NULL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void max77833_haptic_shutdown(struct device *dev)
|
|
{
|
|
struct max77833_haptic_data *data = dev_get_drvdata(dev);
|
|
int ret;
|
|
|
|
pr_info("[VIB] %s: Disable HAPTIC\n", __func__);
|
|
ret = max77833_update_reg(data->i2c, MAX77833_LRA_ENABLE_2, 0x20, MOTOR_EN_PWM);
|
|
if (ret < 0) {
|
|
pr_err("[VIB] %s: fail to update reg\n", __func__);
|
|
return;
|
|
}
|
|
}
|
|
|
|
static int max77833_haptic_suspend(struct platform_device *pdev,
|
|
pm_message_t state)
|
|
{
|
|
struct max77833_haptic_data *data = platform_get_drvdata(pdev);
|
|
int ret;
|
|
|
|
pr_info("[VIB] %s: Disable HAPTIC\n", __func__);
|
|
ret = max77833_update_reg(data->i2c, MAX77833_LRA_ENABLE_2, 0x20, MOTOR_EN_PWM);
|
|
if (ret < 0) {
|
|
pr_err("[VIB] %s: fail to update reg\n", __func__);
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
static int max77833_haptic_resume(struct platform_device *pdev)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static struct platform_driver max77833_haptic_driver = {
|
|
.probe = max77833_haptic_probe,
|
|
.remove = max77833_haptic_remove,
|
|
.suspend = max77833_haptic_suspend,
|
|
.resume = max77833_haptic_resume,
|
|
.driver = {
|
|
.name = "max77833-haptic",
|
|
.owner = THIS_MODULE,
|
|
.shutdown = max77833_haptic_shutdown,
|
|
},
|
|
};
|
|
|
|
static int __init max77833_haptic_init(void)
|
|
{
|
|
pr_debug("[VIB] %s\n", __func__);
|
|
return platform_driver_register(&max77833_haptic_driver);
|
|
}
|
|
module_init(max77833_haptic_init);
|
|
|
|
static void __exit max77833_haptic_exit(void)
|
|
{
|
|
platform_driver_unregister(&max77833_haptic_driver);
|
|
}
|
|
module_exit(max77833_haptic_exit);
|
|
|
|
MODULE_AUTHOR("Ravi Shekhar Singh <shekhar.sr@samsung.com>");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("max77833 haptic driver");
|
|
|