From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EF432C2D0A3 for ; Thu, 29 Oct 2020 09:59:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A2F872076D for ; Thu, 29 Oct 2020 09:59:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727582AbgJ2J7v (ORCPT ); Thu, 29 Oct 2020 05:59:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51216 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726866AbgJ2J6B (ORCPT ); Thu, 29 Oct 2020 05:58:01 -0400 Received: from smtp3-1.goneo.de (smtp3.goneo.de [IPv6:2001:1640:5::8:37]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 421AEC0613D7 for ; Thu, 29 Oct 2020 02:58:01 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by smtp3.goneo.de (Postfix) with ESMTP id 1D14123FF12; Thu, 29 Oct 2020 10:58:00 +0100 (CET) X-Virus-Scanned: by goneo Received: from smtp3.goneo.de ([127.0.0.1]) by localhost (smtp3.goneo.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TgJ_yHtDUzq0; Thu, 29 Oct 2020 10:57:58 +0100 (CET) Received: from lem-wkst-02.lemonage.de. (hq.lemonage.de [87.138.178.34]) by smtp3.goneo.de (Postfix) with ESMTPA id 14F1F240289; Thu, 29 Oct 2020 10:57:58 +0100 (CET) From: poeschel@lemonage.de To: Miguel Ojeda Sandonis , linux-kernel@vger.kernel.org (open list) Cc: Lars Poeschel , kernel test robot , Willy Tarreau Subject: [PATCH v5 08/25] auxdisplay: hd44780_common_print Date: Thu, 29 Oct 2020 10:57:12 +0100 Message-Id: <20201029095731.311528-7-poeschel@lemonage.de> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201029095731.311528-1-poeschel@lemonage.de> References: <20201029095231.311083-1-poeschel@lemonage.de> <20201029095731.311528-1-poeschel@lemonage.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Lars Poeschel We create a hd44780_common_print function. It is derived from the original charlcd_print. charlcd_print becomes a device independent print function, that then only calls via its ops function pointers, into the print function offered by drivers. Reported-by: kernel test robot Reviewed-by: Willy Tarreau Signed-off-by: Lars Poeschel --- Changes in v5: - Fix some typos Changes in v3: - Fix kernel test robot reported error: Missed EXPORT_SYMBOL_GPL --- drivers/auxdisplay/charlcd.c | 28 +++++++++++++++------------- drivers/auxdisplay/charlcd.h | 12 ++++++++++++ drivers/auxdisplay/hd44780.c | 2 ++ drivers/auxdisplay/hd44780_common.c | 14 ++++++++++++++ drivers/auxdisplay/hd44780_common.h | 1 + 5 files changed, 44 insertions(+), 13 deletions(-) diff --git a/drivers/auxdisplay/charlcd.c b/drivers/auxdisplay/charlcd.c index 1b37d4bc38f9..72ed004a8980 100644 --- a/drivers/auxdisplay/charlcd.c +++ b/drivers/auxdisplay/charlcd.c @@ -167,18 +167,15 @@ static void charlcd_home(struct charlcd *lcd) static void charlcd_print(struct charlcd *lcd, char c) { - struct hd44780_common *hdc = lcd->drvdata; + if (lcd->char_conv) + c = lcd->char_conv[(unsigned char)c]; - if (lcd->addr.x < hdc->bwidth) { - if (lcd->char_conv) - c = lcd->char_conv[(unsigned char)c]; - hdc->write_data(hdc, c); + if (!lcd->ops->print(lcd, c)) lcd->addr.x++; - /* prevents the cursor from wrapping onto the next line */ - if (lcd->addr.x == hdc->bwidth) - charlcd_gotoxy(lcd); - } + /* prevents the cursor from wrapping onto the next line */ + if (lcd->addr.x == lcd->width) + charlcd_gotoxy(lcd); } static void charlcd_clear_fast(struct charlcd *lcd) @@ -192,7 +189,7 @@ static void charlcd_clear_fast(struct charlcd *lcd) lcd->ops->clear_fast(lcd); else for (pos = 0; pos < min(2, lcd->height) * hdc->hwidth; pos++) - hdc->write_data(hdc, ' '); + lcd->ops->print(lcd, ' '); charlcd_home(lcd); } @@ -433,12 +430,16 @@ static inline int handle_lcd_special_code(struct charlcd *lcd) processed = 1; break; case 'k': { /* kill end of line */ - int x; + int x, xs, ys; + xs = lcd->addr.x; + ys = lcd->addr.y; for (x = lcd->addr.x; x < hdc->bwidth; x++) - hdc->write_data(hdc, ' '); + lcd->ops->print(lcd, ' '); /* restore cursor position */ + lcd->addr.x = xs; + lcd->addr.y = ys; charlcd_gotoxy(lcd); processed = 1; break; @@ -591,7 +592,8 @@ static void charlcd_write_char(struct charlcd *lcd, char c) * go to the beginning of the next line */ for (; lcd->addr.x < hdc->bwidth; lcd->addr.x++) - hdc->write_data(hdc, ' '); + lcd->ops->print(lcd, ' '); + lcd->addr.x = 0; lcd->addr.y = (lcd->addr.y + 1) % lcd->height; charlcd_gotoxy(lcd); diff --git a/drivers/auxdisplay/charlcd.h b/drivers/auxdisplay/charlcd.h index ff4896af2189..94922e3c1c4c 100644 --- a/drivers/auxdisplay/charlcd.h +++ b/drivers/auxdisplay/charlcd.h @@ -30,9 +30,21 @@ struct charlcd { void *drvdata; }; +/** + * struct charlcd_ops - Functions used by charlcd. Drivers have to implement + * these. + * @clear_fast: Clear the whole display and set cursor to position 0, 0. + * Optional. + * @backlight: Turn backlight on or off. Optional. + * @print: Print one character to the display at current cursor position. + * The cursor is advanced by charlcd. + * The buffered cursor position is advanced by charlcd. The cursor should not + * wrap to the next line at the end of a line. + */ struct charlcd_ops { void (*clear_fast)(struct charlcd *lcd); void (*backlight)(struct charlcd *lcd, enum charlcd_onoff on); + int (*print)(struct charlcd *lcd, int c); }; struct charlcd *charlcd_alloc(void); diff --git a/drivers/auxdisplay/hd44780.c b/drivers/auxdisplay/hd44780.c index dc4738563298..9680bb611639 100644 --- a/drivers/auxdisplay/hd44780.c +++ b/drivers/auxdisplay/hd44780.c @@ -126,6 +126,7 @@ static void hd44780_write_data_gpio8(struct hd44780_common *hdc, int data) static const struct charlcd_ops hd44780_ops_gpio8 = { .backlight = hd44780_backlight, + .print = hd44780_common_print, }; /* Send a command to the LCD panel in 4 bit GPIO mode */ @@ -169,6 +170,7 @@ static void hd44780_write_data_gpio4(struct hd44780_common *hdc, int data) static const struct charlcd_ops hd44780_ops_gpio4 = { .backlight = hd44780_backlight, + .print = hd44780_common_print, }; static int hd44780_probe(struct platform_device *pdev) diff --git a/drivers/auxdisplay/hd44780_common.c b/drivers/auxdisplay/hd44780_common.c index 4968461f0c4a..1dfcb2cdbc70 100644 --- a/drivers/auxdisplay/hd44780_common.c +++ b/drivers/auxdisplay/hd44780_common.c @@ -2,8 +2,22 @@ #include #include +#include "charlcd.h" #include "hd44780_common.h" +int hd44780_common_print(struct charlcd *lcd, int c) +{ + struct hd44780_common *hdc = lcd->drvdata; + + if (lcd->addr.x < hdc->bwidth) { + hdc->write_data(hdc, c); + return 0; + } + + return 1; +} +EXPORT_SYMBOL_GPL(hd44780_common_print); + struct hd44780_common *hd44780_common_alloc(void) { struct hd44780_common *hd; diff --git a/drivers/auxdisplay/hd44780_common.h b/drivers/auxdisplay/hd44780_common.h index 73dd4c7c6de3..ac404a44889b 100644 --- a/drivers/auxdisplay/hd44780_common.h +++ b/drivers/auxdisplay/hd44780_common.h @@ -14,4 +14,5 @@ struct hd44780_common { void *hd44780; }; +int hd44780_common_print(struct charlcd *lcd, int c); struct hd44780_common *hd44780_common_alloc(void); -- 2.28.0