From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753809Ab3LRJXL (ORCPT ); Wed, 18 Dec 2013 04:23:11 -0500 Received: from comal.ext.ti.com ([198.47.26.152]:51660 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753582Ab3LRJXD (ORCPT ); Wed, 18 Dec 2013 04:23:03 -0500 From: Roger Quadros To: CC: , , , , , Roger Quadros Subject: [PATCH 8/9] Input: pixcir_i2c_ts: Add support for TangoC family Date: Wed, 18 Dec 2013 14:51:19 +0530 Message-ID: <1387358480-8313-9-git-send-email-rogerq@ti.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1387358480-8313-1-git-send-email-rogerq@ti.com> References: <1387358480-8313-1-git-send-email-rogerq@ti.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add support for Pixcir TangoC controller. Signed-off-by: Roger Quadros Acked-by: Mugunthan V N --- .../devicetree/bindings/input/touchscreen/pixcir_i2c_ts.txt | 2 +- drivers/input/touchscreen/pixcir_i2c_ts.c | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/input/touchscreen/pixcir_i2c_ts.txt b/Documentation/devicetree/bindings/input/touchscreen/pixcir_i2c_ts.txt index c0b0b270..0ab9505 100644 --- a/Documentation/devicetree/bindings/input/touchscreen/pixcir_i2c_ts.txt +++ b/Documentation/devicetree/bindings/input/touchscreen/pixcir_i2c_ts.txt @@ -1,7 +1,7 @@ * Pixcir I2C touchscreen controllers Required properties: -- compatible: must be "pixcir,pixcir_ts" +- compatible: must be "pixcir,pixcir_ts" or "pixcir,pixcir_tangoc" - reg: I2C address of the chip - interrupts: interrupt to which the chip is connected - attb-gpio: GPIO connected to the ATTB line of the chip diff --git a/drivers/input/touchscreen/pixcir_i2c_ts.c b/drivers/input/touchscreen/pixcir_i2c_ts.c index 9e14415..3575eab 100644 --- a/drivers/input/touchscreen/pixcir_i2c_ts.c +++ b/drivers/input/touchscreen/pixcir_i2c_ts.c @@ -549,13 +549,19 @@ static int pixcir_i2c_ts_remove(struct i2c_client *client) static const struct i2c_device_id pixcir_i2c_ts_id[] = { { "pixcir_ts", 0 }, + { "pixcir_tangoc", 0}, { } }; MODULE_DEVICE_TABLE(i2c, pixcir_i2c_ts_id); #if defined(CONFIG_OF) +static const struct pixcir_i2c_chip_data tangoc_data = { + .num_report_ids = 5, +}; + static const struct of_device_id pixcir_of_match[] = { { .compatible = "pixcir,pixcir_ts", }, + { .compatible = "pixcir,pixcir_tangoc", .data = &tangoc_data, }, { } }; MODULE_DEVICE_TABLE(of, pixcir_of_match); -- 1.8.3.2