Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751930AbbFZDLb (ORCPT ); Thu, 25 Jun 2015 23:11:31 -0400 Received: from mail-by2on0133.outbound.protection.outlook.com ([207.46.100.133]:22194 "EHLO na01-by2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751195AbbFZDLW convert rfc822-to-8bit (ORCPT ); Thu, 25 Jun 2015 23:11:22 -0400 X-Greylist: delayed 3660 seconds by postgrey-1.27 at vger.kernel.org; Thu, 25 Jun 2015 23:11:22 EDT From: Dudley Du To: "dmitry.torokhov@gmail.com" , "mark.rutland@arm.com" , "robh+dt@kernel.org" , "rydberg@euromail.se" CC: "bleung@google.com" , "jmmahler@gmail.com" , "devicetree@vger.kernel.org" , "linux-input@vger.kernel.org" , "linux-kernel@vger.kernel.org" Subject: RE: [PATCH v1 0/7] input: cyapa: instruction of cyapa patches.patch Thread-Topic: [PATCH v1 0/7] input: cyapa: instruction of cyapa patches.patch Thread-Index: AdCvsCVHb5DK4MJYT3qPM5VWhTORJg== Date: Fri, 26 Jun 2015 01:37:26 +0000 Message-ID: Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: gmail.com; dkim=none (message not signed) header.d=none; x-originating-ip: [157.95.211.187] x-microsoft-exchange-diagnostics: 1;CY1PR06MB1820;5:F7hsaWpgXO0K46QPg9/Qf5sih4IXE0sVhXkLszMrESNjb7VAGrqss7dtTHfrMkOOA2b6yrLRFS0chObSNSLKXFY/+byMFX6pfGwwpetG0717WolMJRUntdVMfu3z7/F4IkTOg+Lo9fF8Obo50tzYbg==;24:zTuAHGMMg1JOHJWbirmqnqkWLiIh1Q79UaZvIBZwX67zOl7ieytEi2lksY6YQDnkyEnBp9ONTBmhLPxQCp1HrzrToXAGqSaqdvM+tVCp7ZA=;20:sw387OZ+XfLi9CNdRXhWB2KCtxIayGJjZ+gTsxvr2VtGeyWi9FOG/g5klZNTKlCL0KBLpV0iqxMukPZvFl0iZg== x-microsoft-antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:CY1PR06MB1820; x-loop: 1 x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:; x-exchange-antispam-report-cfa-test: BCL:0;PCL:0;RULEID:(601004)(5005006)(3002001);SRVR:CY1PR06MB1820;BCL:0;PCL:0;RULEID:;SRVR:CY1PR06MB1820; x-forefront-prvs: 0619D53754 x-forefront-antispam-report: SFV:NSPM;SFS:(10019020)(6009001)(51874003)(51164003)(77156002)(62966003)(74316001)(77096005)(40100003)(54356999)(50986999)(86362001)(33656002)(87936001)(102836002)(122556002)(5890100001)(76576001)(2900100001)(46102003)(99286002)(2501003)(66066001)(5002640100001)(5003600100002)(19580395003)(92566002)(5001960100002)(189998001)(5001770100001)(2656002)(5001920100001);DIR:OUT;SFP:1102;SCL:1;SRVR:CY1PR06MB1820;H:CY1PR06MB1817.namprd06.prod.outlook.com;FPR:;SPF:None;MLV:sfv;LANG:en; Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 X-OriginatorOrg: cypress.com X-MS-Exchange-CrossTenant-originalarrivaltime: 26 Jun 2015 01:37:26.2324 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: 011addfc-2c09-450d-8938-e0bbc2dd2376 X-MS-Exchange-Transport-CrossTenantHeadersStamped: CY1PR06MB1820 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2618 Lines: 62 Hi Dmitry, Jmmahler, All, Is there any review points or comments on the v1 patches? Thanks in advance, Dudley V1 patches mainly have following updates compared with V0 patches: 1) This patch series is generated base on code base linux-next 20150612, so fix the patch v0 6/7 failed to apply on linux-next 20150611 issue. 1) Fix spelling errors, space and black line format errors in patch v1 1/7. 2) Add detail description of the new interrupt and proximity interfaces in patch v1 5/7. This patch series is mainly aimed to add new gen6 trackpad devices support, and also new function to report proximity data/vent for Gen5 and Gen6 trackpad devices. Dudley Du (7): input: cyapa: change strings of gen5 to pip in the name when they are shared input: cyapa: add gen6 device module support in driver input: cyapa: add proximity function support for gen5 and gen6 modules input: cyapa: fully support runtime suspend power management input: cyapa: add proximity and interrupt sysfs interfaces support input: cyapa: add of match device support and description document input: cyapa: add CYAP0002 Gen6 device for ACPI configuration .../devicetree/bindings/input/cypress,cyapa.txt | 44 + .../devicetree/bindings/vendor-prefixes.txt | 1 + drivers/input/mouse/Makefile | 2 +- drivers/input/mouse/cyapa.c | 266 ++++- drivers/input/mouse/cyapa.h | 161 ++- drivers/input/mouse/cyapa_gen3.c | 11 +- drivers/input/mouse/cyapa_gen5.c | 1254 +++++++++++--------- drivers/input/mouse/cyapa_gen6.c | 760 ++++++++++++ 8 files changed, 1854 insertions(+), 645 deletions(-) create mode 100644 Documentation/devicetree/bindings/input/cypress,cyapa.txt create mode 100644 drivers/input/mouse/cyapa_gen6.c History patch series modifications list: V0 patches mainly have following updates: 1) Add Gen6 trackpad device support; 2) Add report proximity data function support for Gen5 and Gen6 devices; 3) Fully support runtime suspend/resume power management; 4) Add of_match_table mechanism support. -- 1.9.1 This message and any attachments may contain Cypress (or its subsidiaries) confidential information. If it has been received in error, please advise the sender and immediately delete this message. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/