6db4831e98
Android 14
536 lines
12 KiB
C
536 lines
12 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/device.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/hrtimer.h>
|
|
#include <linux/ktime.h>
|
|
#include <linux/workqueue.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/of.h>
|
|
#include <linux/list.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/pinctrl/consumer.h>
|
|
|
|
#include "flashlight-core.h"
|
|
#include "flashlight-dt.h"
|
|
|
|
/* define device tree */
|
|
/* TODO: modify temp device tree name */
|
|
#ifndef DUMMY_GPIO_DTNAME
|
|
#define DUMMY_GPIO_DTNAME "mediatek,flashlights_dummy_gpio"
|
|
#endif
|
|
|
|
/* TODO: define driver name */
|
|
#define DUMMY_NAME "flashlights-dummy-gpio"
|
|
|
|
/* define registers */
|
|
/* TODO: define register */
|
|
|
|
/* define mutex and work queue */
|
|
static DEFINE_MUTEX(dummy_mutex);
|
|
static struct work_struct dummy_work;
|
|
|
|
/* define pinctrl */
|
|
/* TODO: define pinctrl */
|
|
#define DUMMY_PINCTRL_PIN_XXX 0
|
|
#define DUMMY_PINCTRL_PINSTATE_LOW 0
|
|
#define DUMMY_PINCTRL_PINSTATE_HIGH 1
|
|
#define DUMMY_PINCTRL_STATE_XXX_HIGH "xxx_high"
|
|
#define DUMMY_PINCTRL_STATE_XXX_LOW "xxx_low"
|
|
static struct pinctrl *dummy_pinctrl;
|
|
static struct pinctrl_state *dummy_xxx_high;
|
|
static struct pinctrl_state *dummy_xxx_low;
|
|
|
|
/* define usage count */
|
|
static int use_count;
|
|
|
|
/* platform data */
|
|
struct dummy_platform_data {
|
|
int channel_num;
|
|
struct flashlight_device_id *dev_id;
|
|
};
|
|
|
|
|
|
/******************************************************************************
|
|
* Pinctrl configuration
|
|
*****************************************************************************/
|
|
static int dummy_pinctrl_init(struct platform_device *pdev)
|
|
{
|
|
int ret = 0;
|
|
|
|
/* get pinctrl */
|
|
dummy_pinctrl = devm_pinctrl_get(&pdev->dev);
|
|
if (IS_ERR(dummy_pinctrl)) {
|
|
pr_info("Failed to get flashlight pinctrl.\n");
|
|
ret = PTR_ERR(dummy_pinctrl);
|
|
return ret;
|
|
}
|
|
|
|
/* TODO: Flashlight XXX pin initialization */
|
|
dummy_xxx_high = pinctrl_lookup_state(
|
|
dummy_pinctrl, DUMMY_PINCTRL_STATE_XXX_HIGH);
|
|
if (IS_ERR(dummy_xxx_high)) {
|
|
pr_info("Failed to init (%s)\n", DUMMY_PINCTRL_STATE_XXX_HIGH);
|
|
ret = PTR_ERR(dummy_xxx_high);
|
|
}
|
|
dummy_xxx_low = pinctrl_lookup_state(
|
|
dummy_pinctrl, DUMMY_PINCTRL_STATE_XXX_LOW);
|
|
if (IS_ERR(dummy_xxx_low)) {
|
|
pr_info("Failed to init (%s)\n", DUMMY_PINCTRL_STATE_XXX_LOW);
|
|
ret = PTR_ERR(dummy_xxx_low);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int dummy_pinctrl_set(int pin, int state)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (IS_ERR(dummy_pinctrl)) {
|
|
pr_info("pinctrl is not available\n");
|
|
return -1;
|
|
}
|
|
|
|
switch (pin) {
|
|
case DUMMY_PINCTRL_PIN_XXX:
|
|
if (state == DUMMY_PINCTRL_PINSTATE_LOW &&
|
|
!IS_ERR(dummy_xxx_low))
|
|
pinctrl_select_state(dummy_pinctrl, dummy_xxx_low);
|
|
else if (state == DUMMY_PINCTRL_PINSTATE_HIGH &&
|
|
!IS_ERR(dummy_xxx_high))
|
|
pinctrl_select_state(dummy_pinctrl, dummy_xxx_high);
|
|
else
|
|
pr_info("set err, pin(%d) state(%d)\n", pin, state);
|
|
break;
|
|
default:
|
|
pr_info("set err, pin(%d) state(%d)\n", pin, state);
|
|
break;
|
|
}
|
|
pr_debug("pin(%d) state(%d)\n", pin, state);
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
/******************************************************************************
|
|
* dummy operations
|
|
*****************************************************************************/
|
|
/* flashlight enable function */
|
|
static int dummy_enable(void)
|
|
{
|
|
int pin = 0, state = 0;
|
|
|
|
/* TODO: wrap enable function */
|
|
|
|
return dummy_pinctrl_set(pin, state);
|
|
}
|
|
|
|
/* flashlight disable function */
|
|
static int dummy_disable(void)
|
|
{
|
|
int pin = 0, state = 0;
|
|
|
|
/* TODO: wrap disable function */
|
|
|
|
return dummy_pinctrl_set(pin, state);
|
|
}
|
|
|
|
/* set flashlight level */
|
|
static int dummy_set_level(int level)
|
|
{
|
|
int pin = 0, state = 0;
|
|
|
|
/* TODO: wrap set level function */
|
|
|
|
return dummy_pinctrl_set(pin, state);
|
|
}
|
|
|
|
/* flashlight init */
|
|
static int dummy_init(void)
|
|
{
|
|
int pin = 0, state = 0;
|
|
|
|
/* TODO: wrap init function */
|
|
|
|
return dummy_pinctrl_set(pin, state);
|
|
}
|
|
|
|
/* flashlight uninit */
|
|
static int dummy_uninit(void)
|
|
{
|
|
int pin = 0, state = 0;
|
|
|
|
/* TODO: wrap uninit function */
|
|
|
|
return dummy_pinctrl_set(pin, state);
|
|
}
|
|
|
|
/******************************************************************************
|
|
* Timer and work queue
|
|
*****************************************************************************/
|
|
static struct hrtimer dummy_timer;
|
|
static unsigned int dummy_timeout_ms;
|
|
|
|
static void dummy_work_disable(struct work_struct *data)
|
|
{
|
|
pr_debug("work queue callback\n");
|
|
dummy_disable();
|
|
}
|
|
|
|
static enum hrtimer_restart dummy_timer_func(struct hrtimer *timer)
|
|
{
|
|
schedule_work(&dummy_work);
|
|
return HRTIMER_NORESTART;
|
|
}
|
|
|
|
|
|
/******************************************************************************
|
|
* Flashlight operations
|
|
*****************************************************************************/
|
|
static int dummy_ioctl(unsigned int cmd, unsigned long arg)
|
|
{
|
|
struct flashlight_dev_arg *fl_arg;
|
|
int channel;
|
|
ktime_t ktime;
|
|
unsigned int s;
|
|
unsigned int ns;
|
|
|
|
fl_arg = (struct flashlight_dev_arg *)arg;
|
|
channel = fl_arg->channel;
|
|
|
|
switch (cmd) {
|
|
case FLASH_IOC_SET_TIME_OUT_TIME_MS:
|
|
pr_debug("FLASH_IOC_SET_TIME_OUT_TIME_MS(%d): %d\n",
|
|
channel, (int)fl_arg->arg);
|
|
dummy_timeout_ms = fl_arg->arg;
|
|
break;
|
|
|
|
case FLASH_IOC_SET_DUTY:
|
|
pr_debug("FLASH_IOC_SET_DUTY(%d): %d\n",
|
|
channel, (int)fl_arg->arg);
|
|
dummy_set_level(fl_arg->arg);
|
|
break;
|
|
|
|
case FLASH_IOC_SET_ONOFF:
|
|
pr_debug("FLASH_IOC_SET_ONOFF(%d): %d\n",
|
|
channel, (int)fl_arg->arg);
|
|
if (fl_arg->arg == 1) {
|
|
if (dummy_timeout_ms) {
|
|
s = dummy_timeout_ms / 1000;
|
|
ns = dummy_timeout_ms % 1000 * 1000000;
|
|
ktime = ktime_set(s, ns);
|
|
hrtimer_start(&dummy_timer, ktime,
|
|
HRTIMER_MODE_REL);
|
|
}
|
|
dummy_enable();
|
|
} else {
|
|
dummy_disable();
|
|
hrtimer_cancel(&dummy_timer);
|
|
}
|
|
break;
|
|
default:
|
|
pr_info("No such command and arg(%d): (%d, %d)\n",
|
|
channel, _IOC_NR(cmd), (int)fl_arg->arg);
|
|
return -ENOTTY;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int dummy_open(void)
|
|
{
|
|
/* Move to set driver for saving power */
|
|
return 0;
|
|
}
|
|
|
|
static int dummy_release(void)
|
|
{
|
|
/* Move to set driver for saving power */
|
|
return 0;
|
|
}
|
|
|
|
static int dummy_set_driver(int set)
|
|
{
|
|
int ret = 0;
|
|
|
|
/* set chip and usage count */
|
|
mutex_lock(&dummy_mutex);
|
|
if (set) {
|
|
if (!use_count)
|
|
ret = dummy_init();
|
|
use_count++;
|
|
pr_debug("Set driver: %d\n", use_count);
|
|
} else {
|
|
use_count--;
|
|
if (!use_count)
|
|
ret = dummy_uninit();
|
|
if (use_count < 0)
|
|
use_count = 0;
|
|
pr_debug("Unset driver: %d\n", use_count);
|
|
}
|
|
mutex_unlock(&dummy_mutex);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static ssize_t dummy_strobe_store(struct flashlight_arg arg)
|
|
{
|
|
dummy_set_driver(1);
|
|
dummy_set_level(arg.level);
|
|
dummy_timeout_ms = 0;
|
|
dummy_enable();
|
|
msleep(arg.dur);
|
|
dummy_disable();
|
|
dummy_set_driver(0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct flashlight_operations dummy_ops = {
|
|
dummy_open,
|
|
dummy_release,
|
|
dummy_ioctl,
|
|
dummy_strobe_store,
|
|
dummy_set_driver
|
|
};
|
|
|
|
|
|
/******************************************************************************
|
|
* Platform device and driver
|
|
*****************************************************************************/
|
|
static int dummy_chip_init(void)
|
|
{
|
|
/* NOTE: Chip initialication move to "set driver" for power saving.
|
|
* dummy_init();
|
|
*/
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int dummy_parse_dt(struct device *dev,
|
|
struct dummy_platform_data *pdata)
|
|
{
|
|
struct device_node *np, *cnp;
|
|
u32 decouple = 0;
|
|
int i = 0;
|
|
|
|
if (!dev || !dev->of_node || !pdata)
|
|
return -ENODEV;
|
|
|
|
np = dev->of_node;
|
|
|
|
pdata->channel_num = of_get_child_count(np);
|
|
if (!pdata->channel_num) {
|
|
pr_info("Parse no dt, node.\n");
|
|
return 0;
|
|
}
|
|
pr_info("Channel number(%d).\n", pdata->channel_num);
|
|
|
|
if (of_property_read_u32(np, "decouple", &decouple))
|
|
pr_info("Parse no dt, decouple.\n");
|
|
|
|
pdata->dev_id = devm_kzalloc(dev,
|
|
pdata->channel_num *
|
|
sizeof(struct flashlight_device_id),
|
|
GFP_KERNEL);
|
|
if (!pdata->dev_id)
|
|
return -ENOMEM;
|
|
|
|
for_each_child_of_node(np, cnp) {
|
|
if (of_property_read_u32(cnp, "type", &pdata->dev_id[i].type))
|
|
goto err_node_put;
|
|
if (of_property_read_u32(cnp, "ct", &pdata->dev_id[i].ct))
|
|
goto err_node_put;
|
|
if (of_property_read_u32(cnp, "part", &pdata->dev_id[i].part))
|
|
goto err_node_put;
|
|
snprintf(pdata->dev_id[i].name, FLASHLIGHT_NAME_SIZE,
|
|
DUMMY_NAME);
|
|
pdata->dev_id[i].channel = i;
|
|
pdata->dev_id[i].decouple = decouple;
|
|
|
|
pr_info("Parse dt (type,ct,part,name,channel,decouple)=(%d,%d,%d,%s,%d,%d).\n",
|
|
pdata->dev_id[i].type, pdata->dev_id[i].ct,
|
|
pdata->dev_id[i].part, pdata->dev_id[i].name,
|
|
pdata->dev_id[i].channel,
|
|
pdata->dev_id[i].decouple);
|
|
i++;
|
|
}
|
|
|
|
return 0;
|
|
|
|
err_node_put:
|
|
of_node_put(cnp);
|
|
return -EINVAL;
|
|
}
|
|
|
|
static int dummy_probe(struct platform_device *pdev)
|
|
{
|
|
struct dummy_platform_data *pdata = dev_get_platdata(&pdev->dev);
|
|
int err;
|
|
int i;
|
|
|
|
pr_debug("Probe start.\n");
|
|
|
|
/* init pinctrl */
|
|
if (dummy_pinctrl_init(pdev)) {
|
|
pr_debug("Failed to init pinctrl.\n");
|
|
err = -EFAULT;
|
|
goto err;
|
|
}
|
|
|
|
/* init platform data */
|
|
if (!pdata) {
|
|
pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
|
|
if (!pdata) {
|
|
err = -ENOMEM;
|
|
goto err;
|
|
}
|
|
pdev->dev.platform_data = pdata;
|
|
err = dummy_parse_dt(&pdev->dev, pdata);
|
|
if (err)
|
|
goto err;
|
|
}
|
|
|
|
/* init work queue */
|
|
INIT_WORK(&dummy_work, dummy_work_disable);
|
|
|
|
/* init timer */
|
|
hrtimer_init(&dummy_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
|
dummy_timer.function = dummy_timer_func;
|
|
dummy_timeout_ms = 100;
|
|
|
|
/* init chip hw */
|
|
dummy_chip_init();
|
|
|
|
/* clear usage count */
|
|
use_count = 0;
|
|
|
|
/* register flashlight device */
|
|
if (pdata->channel_num) {
|
|
for (i = 0; i < pdata->channel_num; i++)
|
|
if (flashlight_dev_register_by_device_id(
|
|
&pdata->dev_id[i],
|
|
&dummy_ops)) {
|
|
err = -EFAULT;
|
|
goto err;
|
|
}
|
|
} else {
|
|
if (flashlight_dev_register(DUMMY_NAME, &dummy_ops)) {
|
|
err = -EFAULT;
|
|
goto err;
|
|
}
|
|
}
|
|
|
|
pr_debug("Probe done.\n");
|
|
|
|
return 0;
|
|
err:
|
|
return err;
|
|
}
|
|
|
|
static int dummy_remove(struct platform_device *pdev)
|
|
{
|
|
struct dummy_platform_data *pdata = dev_get_platdata(&pdev->dev);
|
|
int i;
|
|
|
|
pr_debug("Remove start.\n");
|
|
|
|
pdev->dev.platform_data = NULL;
|
|
|
|
/* unregister flashlight device */
|
|
if (pdata && pdata->channel_num)
|
|
for (i = 0; i < pdata->channel_num; i++)
|
|
flashlight_dev_unregister_by_device_id(
|
|
&pdata->dev_id[i]);
|
|
else
|
|
flashlight_dev_unregister(DUMMY_NAME);
|
|
|
|
/* flush work queue */
|
|
flush_work(&dummy_work);
|
|
|
|
pr_debug("Remove done.\n");
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_OF
|
|
static const struct of_device_id dummy_gpio_of_match[] = {
|
|
{.compatible = DUMMY_GPIO_DTNAME},
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, dummy_gpio_of_match);
|
|
#else
|
|
static struct platform_device dummy_gpio_platform_device[] = {
|
|
{
|
|
.name = DUMMY_NAME,
|
|
.id = 0,
|
|
.dev = {}
|
|
},
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(platform, dummy_gpio_platform_device);
|
|
#endif
|
|
|
|
static struct platform_driver dummy_platform_driver = {
|
|
.probe = dummy_probe,
|
|
.remove = dummy_remove,
|
|
.driver = {
|
|
.name = DUMMY_NAME,
|
|
.owner = THIS_MODULE,
|
|
#ifdef CONFIG_OF
|
|
.of_match_table = dummy_gpio_of_match,
|
|
#endif
|
|
},
|
|
};
|
|
|
|
static int __init flashlight_dummy_init(void)
|
|
{
|
|
int ret;
|
|
|
|
pr_debug("Init start.\n");
|
|
|
|
#ifndef CONFIG_OF
|
|
ret = platform_device_register(&dummy_gpio_platform_device);
|
|
if (ret) {
|
|
pr_info("Failed to register platform device\n");
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
ret = platform_driver_register(&dummy_platform_driver);
|
|
if (ret) {
|
|
pr_info("Failed to register platform driver\n");
|
|
return ret;
|
|
}
|
|
|
|
pr_debug("Init done.\n");
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void __exit flashlight_dummy_exit(void)
|
|
{
|
|
pr_debug("Exit start.\n");
|
|
|
|
platform_driver_unregister(&dummy_platform_driver);
|
|
|
|
pr_debug("Exit done.\n");
|
|
}
|
|
|
|
module_init(flashlight_dummy_init);
|
|
module_exit(flashlight_dummy_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Simon Wang <Simon-TCH.Wang@mediatek.com>");
|
|
MODULE_DESCRIPTION("MTK Flashlight DUMMY GPIO Driver");
|
|
|