From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754444AbbCQUjD (ORCPT ); Tue, 17 Mar 2015 16:39:03 -0400 Received: from mail-bn1on0088.outbound.protection.outlook.com ([157.56.110.88]:41650 "EHLO na01-bn1-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752026AbbCQUjA (ORCPT ); Tue, 17 Mar 2015 16:39:00 -0400 From: Alan Tull To: Greg Kroah-Hartman CC: Jiri Slaby , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Alan Tull , , , , , Subject: [PATCH 0/2] TTY Driver for Newhaven LCD module Date: Tue, 17 Mar 2015 15:36:45 -0500 Message-ID: <1426624607-2832-1-git-send-email-atull@opensource.altera.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Originating-IP: [64.129.157.38] X-ClientProxiedBy: BLUPR08CA0058.namprd08.prod.outlook.com (10.141.200.38) To BN3PR0301MB1236.namprd03.prod.outlook.com (25.161.207.24) Authentication-Results: linuxfoundation.org; dkim=none (message not signed) header.d=none;codeaurora.org; dkim=none (message not signed) header.d=none; X-Microsoft-Antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BN3PR0301MB1236;UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BN3PR0301MB1267;UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BY2PR03MB393; X-Forefront-Antispam-Report-Untrusted: BMV:1;SFV:NSPM;SFS:(10009020)(6009001)(86362001)(53416004)(50986999)(23676002)(19580395003)(33646002)(50466002)(42186005)(110136001)(229853001)(46102003)(77156002)(50226001)(62966003)(66066001)(47776003)(87976001)(122386002)(40100003)(5820100001)(92566002);DIR:OUT;SFP:1101;SCL:1;SRVR:BN3PR0301MB1236;H:linuxheads99.altera.com;FPR:;SPF:None;MLV:sfv;LANG:en; X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:;UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:(601004)(5002010)(5005006);SRVR:BN3PR0301MB1236;BCL:0;PCL:0;RULEID:;SRVR:BN3PR0301MB1236;BCL:0;PCL:0;RULEID:(601004)(5002010)(5005006);SRVR:BY2PR03MB393;BCL:0;PCL:0;RULEID:;SRVR:BY2PR03MB393; X-Forefront-PRVS: 0518EEFB48 X-MS-Exchange-Transport-CrossTenantHeadersStamped: BN3PR0301MB1236 X-EOPAttributedMessage: 0 X-MS-Exchange-Transport-CrossTenantHeadersStripped: BY2FFO11FD017.protection.gbl Authentication-Results: spf=fail (sender IP is 66.35.236.236) smtp.mailfrom=atull@opensource.altera.com; X-Forefront-Antispam-Report: CIP:66.35.236.236;CTRY:US;IPV:NLI;EFV:NLI;BMV:1;SFV:NSPM;SFS:(10009020)(6009001)(339900001)(199003)(189002)(85426001)(53416004)(23676002)(19580395003)(50986999)(87936001)(50466002)(46102003)(33646002)(105606002)(110136001)(5820100001)(50226001)(66066001)(47776003)(92566002)(86362001)(62966003)(106466001)(77156002)(40100003)(122386002)(229853001)(6806004)(7099025);DIR:OUT;SFP:1101;SCL:1;SRVR:BY2PR03MB393;H:sj-itexedge04.altera.priv.altera.com;FPR:;SPF:Fail;MLV:ovrnspm;A:0;MX:1;PTR:InfoDomainNonexistent;LANG:en; X-Forefront-PRVS: 0518EEFB48 X-OriginatorOrg: opensource.altera.com X-MS-Exchange-CrossTenant-OriginalArrivalTime: 17 Mar 2015 20:38:54.5901 (UTC) X-MS-Exchange-CrossTenant-Id: fbd72e03-d4a5-4110-adce-614d51f2077a X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=fbd72e03-d4a5-4110-adce-614d51f2077a;Ip=[66.35.236.236];Helo=[sj-itexedge04.altera.priv.altera.com] X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem X-MS-Exchange-Transport-CrossTenantHeadersStamped: BY2PR03MB393 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Supports a 2 line by 16 character LCD module over I2C. Alan Tull (2): newhaven lcd: device tree bindings documentation add newhaven lcd tty driver on i2c .../devicetree/bindings/tty/newhaven_lcd.txt | 21 + drivers/tty/Kconfig | 5 + drivers/tty/Makefile | 1 + drivers/tty/newhaven_lcd.c | 733 ++++++++++++++++++++ include/linux/platform_data/newhaven_lcd.h | 25 + 5 files changed, 785 insertions(+) create mode 100644 Documentation/devicetree/bindings/tty/newhaven_lcd.txt create mode 100644 drivers/tty/newhaven_lcd.c create mode 100644 include/linux/platform_data/newhaven_lcd.h -- 1.7.9.5