Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CA087C433FE for ; Fri, 10 Dec 2021 22:11:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344650AbhLJWPZ (ORCPT ); Fri, 10 Dec 2021 17:15:25 -0500 Received: from us-smtp-delivery-124.mimecast.com ([170.10.129.124]:58018 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344625AbhLJWPU (ORCPT ); Fri, 10 Dec 2021 17:15:20 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1639174303; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=zdG6JzkU/0I6/MAw0q9dKVgScNKDSQ20J5c1fGW3QQQ=; b=D//dx/UQmBpBKS/hE8ths1FJUJO5hi4UWR8tq/pSqp27MvOdAZr8z8snmUk0gQaei7bJF8 5XHM2gZvOaOFJHAUxuhNu4+DHUdhruWSYsbNxSU4oc8t/ObxIecW8BqSWL16U97kHrrW4o 8zSlLk7TIF5tyuY9bkE6in4nsX+8Z7I= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-291-mYG0z2OtNR6dfTjKaOTwUg-1; Fri, 10 Dec 2021 17:11:42 -0500 X-MC-Unique: mYG0z2OtNR6dfTjKaOTwUg-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id A42141006AA4; Fri, 10 Dec 2021 22:11:40 +0000 (UTC) Received: from cmirabil.remote.csb (unknown [10.22.8.67]) by smtp.corp.redhat.com (Postfix) with ESMTP id 81A4D694DE; Fri, 10 Dec 2021 22:11:39 +0000 (UTC) From: Charles Mirabile To: linux-kernel@vger.kernel.org Cc: Charles Mirabile , Miguel Ojeda , Serge Schneider , Stefan Wahren , Nicolas Saenz Julienne , Mattias Brugger , linux-rpi-kernel@lists.infradead.org, linux-arm-kernel@lists.infradead.org, fedora-rpi@googlegroups.com, Mwesigwa Guma , Joel Savitz Subject: [PATCH V5 3/6] drivers/auxdisplay: sensehat: Raspberry Pi Sense HAT display driver Date: Fri, 10 Dec 2021 17:10:30 -0500 Message-Id: <20211210221033.912430-4-cmirabil@redhat.com> In-Reply-To: <20211210221033.912430-1-cmirabil@redhat.com> References: <20211210221033.912430-1-cmirabil@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch implements control of the 8x8 RGB LED matrix display. Signed-off-by: Charles Mirabile Co-developed-by: Mwesigwa Guma Signed-off-by: Mwesigwa Guma Co-developed-by: Joel Savitz Signed-off-by: Joel Savitz --- drivers/auxdisplay/Kconfig | 8 + drivers/auxdisplay/Makefile | 1 + drivers/auxdisplay/sensehat-display.c | 268 ++++++++++++++++++++++++++ 3 files changed, 277 insertions(+) create mode 100644 drivers/auxdisplay/sensehat-display.c diff --git a/drivers/auxdisplay/Kconfig b/drivers/auxdisplay/Kconfig index 64012cda4d12..5b3a2feb34c9 100644 --- a/drivers/auxdisplay/Kconfig +++ b/drivers/auxdisplay/Kconfig @@ -203,6 +203,14 @@ config ARM_CHARLCD line and the Linux version on the second line, but that's still useful. +config SENSEHAT_DISPLAY + tristate "Raspberry pi Sense HAT display driver" + depends on I2C + select MFD_SENSEHAT_CORE + help + This is a driver for the Raspberry Pi Sensehat 8x8 RBG-LED matrix + you can access it as a misc device at /dev/sense-hat + menuconfig PARPORT_PANEL tristate "Parallel port LCD/Keypad Panel support" depends on PARPORT diff --git a/drivers/auxdisplay/Makefile b/drivers/auxdisplay/Makefile index 6968ed4d3f0a..30b2b7934046 100644 --- a/drivers/auxdisplay/Makefile +++ b/drivers/auxdisplay/Makefile @@ -14,3 +14,4 @@ obj-$(CONFIG_HT16K33) += ht16k33.o obj-$(CONFIG_PARPORT_PANEL) += panel.o obj-$(CONFIG_LCD2S) += lcd2s.o obj-$(CONFIG_LINEDISP) += line-display.o +obj-$(CONFIG_SENSEHAT_DISPLAY) += sensehat-display.o diff --git a/drivers/auxdisplay/sensehat-display.c b/drivers/auxdisplay/sensehat-display.c new file mode 100644 index 000000000000..ec88d64d41b6 --- /dev/null +++ b/drivers/auxdisplay/sensehat-display.c @@ -0,0 +1,268 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Raspberry Pi Sense HAT 8x8 LED matrix display driver + * http://raspberrypi.org + * + * Copyright (C) 2015 Raspberry Pi + * Copyright (C) 2021 Charles Mirabile, Mwesigwa Guma, Joel Savitz + * + * Original Author: Serge Schneider + * Revised for upstream Linux by: Charles Mirabile, Mwesigwa Guma, Joel Savitz + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define SENSEHAT_DISPLAY 0x00 + +#define GAMMA_SIZE sizeof_field(struct sensehat_display, gamma) +#define VMEM_SIZE sizeof_field(struct sensehat_display, vmem) + +static int sensehat_update_display(struct sensehat *sensehat); + +static bool lowlight; +module_param(lowlight, bool, 0); +MODULE_PARM_DESC(lowlight, "Reduce LED matrix brightness to one third"); + +static const u8 gamma_presets[][GAMMA_SIZE] = { + [GAMMA_DEFAULT] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, + 0x02, 0x02, 0x03, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0E, 0x0F, 0x11, + 0x12, 0x14, 0x15, 0x17, 0x19, 0x1B, 0x1D, 0x1F, + }, + [GAMMA_LOWLIGHT] = { + 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, + 0x03, 0x03, 0x03, 0x04, 0x04, 0x05, 0x05, 0x06, + 0x06, 0x07, 0x07, 0x08, 0x08, 0x09, 0x0A, 0x0A, + }, +}; + +static const struct file_operations sensehat_display_fops; + +static int sensehat_display_probe(struct platform_device *pdev) +{ + int ret; + + struct sensehat *sensehat = dev_get_drvdata(&pdev->dev); + struct sensehat_display *sensehat_display = &sensehat->display; + + memcpy(sensehat_display->gamma, gamma_presets[lowlight], GAMMA_SIZE); + + memset(sensehat_display->vmem, 0, VMEM_SIZE); + + mutex_init(&sensehat_display->rw_mtx); + + sensehat_display->mdev = (struct miscdevice){ + .minor = MISC_DYNAMIC_MINOR, + .name = "sense-hat", + .mode = 0666, + .fops = &sensehat_display_fops, + }; + + ret = misc_register(&sensehat_display->mdev); + if (ret < 0) { + dev_err(&pdev->dev, + "Could not register 8x8 LED matrix display.\n"); + return ret; + } + + dev_info(&pdev->dev, + "8x8 LED matrix display registered with minor number %i", + sensehat_display->mdev.minor); + + sensehat_update_display(sensehat); + return 0; +} + +static int sensehat_display_remove(struct platform_device *pdev) +{ + struct sensehat *sensehat = dev_get_drvdata(&pdev->dev); + struct sensehat_display *sensehat_display = &sensehat->display; + + misc_deregister(&sensehat_display->mdev); + return 0; +} + +static loff_t sensehat_display_llseek(struct file *filp, loff_t pos, int whence) +{ + loff_t base; + + switch (whence) { + case SEEK_SET: + base = 0; + break; + case SEEK_CUR: + base = filp->f_pos; + break; + case SEEK_END: + base = VMEM_SIZE; + break; + default: + return -EINVAL; + } + base += pos; + if (base < 0 || base >= VMEM_SIZE) + return -EINVAL; + filp->f_pos = base; + return base; +} + +static ssize_t sensehat_display_read(struct file *filp, char __user *buf, + size_t count, loff_t *f_pos) +{ + struct sensehat *sensehat = + container_of(filp->private_data, struct sensehat, display.mdev); + struct sensehat_display *sensehat_display = &sensehat->display; + ssize_t retval = -EFAULT; + + if (*f_pos >= VMEM_SIZE) + return 0; + if (*f_pos + count > VMEM_SIZE) + count = VMEM_SIZE - *f_pos; + if (mutex_lock_interruptible(&sensehat_display->rw_mtx)) + return -ERESTARTSYS; + if (copy_to_user(buf, sensehat_display->vmem + *f_pos, count)) + goto out; + *f_pos += count; + retval = count; +out: + mutex_unlock(&sensehat_display->rw_mtx); + return retval; +} + +static ssize_t sensehat_display_write(struct file *filp, const char __user *buf, + size_t count, loff_t *f_pos) +{ + struct sensehat *sensehat = + container_of(filp->private_data, struct sensehat, display.mdev); + struct sensehat_display *sensehat_display = &sensehat->display; + u8 temp[VMEM_SIZE]; + + if (*f_pos >= VMEM_SIZE) + return -EFBIG; + if (*f_pos + count > VMEM_SIZE) + count = VMEM_SIZE - *f_pos; + if (copy_from_user(temp, buf, count)) + return -EFAULT; + if (mutex_lock_interruptible(&sensehat_display->rw_mtx)) + return -ERESTARTSYS; + memcpy(sensehat_display->vmem + *f_pos, temp, count); + sensehat_update_display(sensehat); + *f_pos += count; + mutex_unlock(&sensehat_display->rw_mtx); + return count; +} + +static long sensehat_display_ioctl(struct file *filp, unsigned int cmd, + unsigned long arg) +{ + struct sensehat *sensehat = + container_of(filp->private_data, struct sensehat, display.mdev); + struct sensehat_display *sensehat_display = &sensehat->display; + void __user *user_ptr = (void __user *)arg; + u8 temp[GAMMA_SIZE]; + int ret = 0; + bool update = false; + + if (mutex_lock_interruptible(&sensehat_display->rw_mtx)) + return -ERESTARTSYS; + switch (cmd) { + case SENSEDISP_IOGET_GAMMA: + if (copy_to_user(user_ptr, sensehat_display->gamma, + GAMMA_SIZE)) { + ret = -EFAULT; + break; + } + break; + case SENSEDISP_IOSET_GAMMA: + if (copy_from_user(temp, user_ptr, GAMMA_SIZE)) { + ret = -EFAULT; + break; + } + update = true; + break; + case SENSEDISP_IORESET_GAMMA: + if (arg < GAMMA_DEFAULT || arg >= GAMMA_PRESET_COUNT) { + ret = -EINVAL; + break; + } + memcpy(temp, gamma_presets[arg], GAMMA_SIZE); + update = true; + break; + default: + ret = -EINVAL; + break; + } + if (update) { + memcpy(sensehat_display->gamma, temp, GAMMA_SIZE); + sensehat_update_display(sensehat); + } + mutex_unlock(&sensehat_display->rw_mtx); + return ret; +} + +int sensehat_update_display(struct sensehat *sensehat) +{ + int i, j, ret; + struct sensehat_display *display = &sensehat->display; + u8 pixel_data[8][3][8]; + + for (i = 0; i < 8; ++i) { + for (j = 0; j < 8; ++j) { + pixel_data[i][0][j] = + display->gamma[display->vmem[i][j].r]; + pixel_data[i][1][j] = + display->gamma[display->vmem[i][j].g]; + pixel_data[i][2][j] = + display->gamma[display->vmem[i][j].b]; + } + } + + ret = regmap_bulk_write(sensehat->regmap, SENSEHAT_DISPLAY, pixel_data, + sizeof(pixel_data)); + if (ret < 0) + dev_err(sensehat->dev, + "Update to 8x8 LED matrix display failed"); + return ret; +} + +static const struct file_operations sensehat_display_fops = { + .owner = THIS_MODULE, + .llseek = sensehat_display_llseek, + .read = sensehat_display_read, + .write = sensehat_display_write, + .unlocked_ioctl = sensehat_display_ioctl, +}; + +static struct platform_device_id sensehat_display_device_id[] = { + { .name = "sensehat-display" }, + {}, +}; +MODULE_DEVICE_TABLE(platform, sensehat_display_device_id); + +static struct platform_driver sensehat_display_driver = { + .probe = sensehat_display_probe, + .remove = sensehat_display_remove, + .driver = { + .name = "sensehat-display", + }, +}; + +module_platform_driver(sensehat_display_driver); + +MODULE_DESCRIPTION("Raspberry Pi Sense HAT 8x8 LED matrix display driver"); +MODULE_AUTHOR("Serge Schneider "); +MODULE_LICENSE("GPL"); -- 2.31.1