Driver for Synaptics touchscreens using RMI4 protocol. Please see the email 0/9 for a description of this patch. Signed-off-by: Christopher Heiny <cheiny@xxxxxxxxxxxxx> Signed-off-by: William Manson <wmanson@xxxxxxxxxxxxx> Signed-off-by: Allie Xiong <axiong@xxxxxxxxxxxxx> Signed-off-by: Peichen Chang <peichen.chang@xxxxxxxxxxxxx> Cc: Dmitry Torokhov <dmitry.torokhov@xxxxxxxxx> Cc: Linus Walleij <linus.walleij@xxxxxxxxxxxxxx> Cc: Naveen Kumar Gaddipati <naveen.gaddipati@xxxxxxxxxxxxxx> Cc: Joeri de Gram <j.de.gram@xxxxxxxxx> Acked-by: Jean Delvare <khali@xxxxxxxxxxxx> --- diff --git a/drivers/input/touchscreen/rmi_f05.h b/drivers/input/touchscreen/rmi_f05.h new file mode 100644 index 0000000..10e4df4 --- /dev/null +++ b/drivers/input/touchscreen/rmi_f05.h @@ -0,0 +1,42 @@ +/** + * + * Synaptics Register Mapped Interface (RMI4) Function $11 header. + * Copyright (c) 2007 - 2010, Synaptics Incorporated + * + * For every RMI4 function that has a data source - like 2D sensors, + * buttons, LEDs, GPIOs, etc. - the user will create a new rmi_function_xx.c + * file and add these functions to perform the config(), init(), report() + * and detect() functionality. The function pointers are then srored under + * the RMI function info and these functions will automatically be called by + * the global config(), init(), report() and detect() functions that will + * loop through all data sources and call the data sources functions using + * these functions pointed to by the function ptrs. + */ +/* + * This file is licensed under the GPL2 license. + * + *############################################################################# + * GPL + * + * 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. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + *############################################################################# + */ + +#if !defined(_RMI_F05_H) +#define _RMI_F05_H + +void FN_05_inthandler(struct rmi_function_info *rmifninfo, + unsigned int asserted_IRQs); +int FN_05_config(struct rmi_function_info *rmifninfo); +int FN_05_init(struct rmi_function_device *function_device); +int FN_05_detect(struct rmi_function_info *rmifninfo); +/* No attention function for F05 */ +#endif diff --git a/drivers/input/touchscreen/rmi_f05.c b/drivers/input/touchscreen/rmi_f05.c new file mode 100644 index 0000000..2446216 --- /dev/null +++ b/drivers/input/touchscreen/rmi_f05.c @@ -0,0 +1,123 @@ +/** + * + * Synaptics Register Mapped Interface (RMI4) Function $11 support for 2D. + * Copyright (c) 2007 - 2011, Synaptics Incorporated + * + */ +/* + * This file is licensed under the GPL2 license. + * + *############################################################################# + * GPL + * + * 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. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + *############################################################################# + */ + +#include <linux/kernel.h> +#include <linux/device.h> +#include <linux/delay.h> +#include <linux/kthread.h> +#include <linux/freezer.h> +#include <linux/input.h> +#include <linux/slab.h> + +#include "rmi.h" +#include "rmi_drvr.h" +#include "rmi_bus.h" +#include "rmi_sensor.h" +#include "rmi_function.h" +#include "rmi_f05.h" +#include "rmi_platformdata.h" + +struct f05_instance_data { + int dummy; /* TODO: Write this */ +}; + +/* + * There is no attention function for F05 - it is left NULL + * in the function table so it is not called. + * + */ + +/* + * This reads in a sample and reports the F05 source data to the + * input subsystem. It is used for both polling and interrupt driven + * operation. This is called a lot so don't put in any informational + * printks since they will slow things way down! + * + * This is a stub for now, and will be fleshed out when the implementation + * is completed. + */ +void FN_05_inthandler(struct rmi_function_info *rmifninfo, + unsigned int asserted_IRQs) +{ +} +EXPORT_SYMBOL(FN_05_inthandler); + +/* This is a stub for now, and will be fleshed out when the implementation + * is completed. + */ +int FN_05_config(struct rmi_function_info *rmifninfo) +{ + int retval = 0; + + pr_debug("%s: RMI4 F05 config\n", __func__); + + /* TODO: Perform configuration. In particular, write any cached control + * register values to the device. */ + + return retval; +} +EXPORT_SYMBOL(FN_05_config); + +/* This is a stub for now, and will be fleshed out when the implementation + * is completed. + */ +int FN_05_init(struct rmi_function_device *function_device) +{ + int retval = 0; +/* + struct f05_instance_data *instance_data = function_device->rfi->fndata; + struct rmi_f05_functiondata *functiondata = + rmi_sensor_get_functiondata(function_device->sensor, RMI_F05_INDEX); +*/ + + pr_debug("%s: RMI4 F05 init\n", __func__); + + return retval; +} +EXPORT_SYMBOL(FN_05_init); + +int FN_05_detect(struct rmi_function_info *rmifninfo) +{ + int retval = 0; + struct f05_instance_data *instance_data; + + pr_debug("%s: RMI4 F05 detect\n", __func__); + + if (rmifninfo->fndata) { + /* detect routine should only ever be called once + * per rmifninfo. */ + pr_err("%s: WTF?!? F05 instance data is already present!", + __func__); + return -EINVAL; + } + instance_data = kzalloc(sizeof(struct f05_instance_data), GFP_KERNEL); + if (!instance_data) { + pr_err("%s: Error allocating F05 instance data.\n", __func__); + return -ENOMEM; + } + rmifninfo->fndata = instance_data; + + return retval; +} +EXPORT_SYMBOL(FN_05_detect); -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html