mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-05-07 03:49:20 +00:00
linux-ti335x-psp 3.1: add support for ST7735FB, but don't enable it in the beaglebone boardfile yet
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
@@ -2239,11 +2239,14 @@ CONFIG_FB_CFB_FILLRECT=y
|
||||
CONFIG_FB_CFB_COPYAREA=y
|
||||
CONFIG_FB_CFB_IMAGEBLIT=y
|
||||
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
|
||||
CONFIG_FB_SYS_FILLRECT=m
|
||||
CONFIG_FB_SYS_COPYAREA=m
|
||||
CONFIG_FB_SYS_IMAGEBLIT=m
|
||||
# CONFIG_FB_FOREIGN_ENDIAN is not set
|
||||
CONFIG_FB_SYS_FOPS=m
|
||||
CONFIG_FB_SYS_FILLRECT=y
|
||||
CONFIG_FB_SYS_COPYAREA=y
|
||||
CONFIG_FB_SYS_IMAGEBLIT=y
|
||||
CONFIG_FB_FOREIGN_ENDIAN=y
|
||||
CONFIG_FB_BOTH_ENDIAN=y
|
||||
# CONFIG_FB_BIG_ENDIAN is not set
|
||||
# CONFIG_FB_LITTLE_ENDIAN is not set
|
||||
CONFIG_FB_SYS_FOPS=y
|
||||
# CONFIG_FB_WMT_GE_ROPS is not set
|
||||
CONFIG_FB_DEFERRED_IO=y
|
||||
# CONFIG_FB_SVGALIB is not set
|
||||
@@ -2264,6 +2267,7 @@ CONFIG_FB_DA8XX_CONSISTENT_DMA_SIZE=4
|
||||
# CONFIG_FB_VIRTUAL is not set
|
||||
# CONFIG_FB_METRONOME is not set
|
||||
# CONFIG_FB_BROADSHEET is not set
|
||||
CONFIG_FB_ST7735=y
|
||||
# CONFIG_FB_OMAP_BOOTLOADER_INIT is not set
|
||||
CONFIG_OMAP2_VRAM=y
|
||||
CONFIG_OMAP2_VRFB=y
|
||||
|
||||
+667
@@ -0,0 +1,667 @@
|
||||
From a99fbc0639e6c42cd7c53c8d1d4852d04e9f8bb1 Mon Sep 17 00:00:00 2001
|
||||
From: Matt Porter <mporter@ti.com>
|
||||
Date: Mon, 21 Nov 2011 12:55:23 -0500
|
||||
Subject: [PATCH 1/2] st7735fb: WIP framebuffer driver supporting Adafruit 1.8" SPI LCD
|
||||
|
||||
Signed-off-by: Matt Porter <mporter@ti.com>
|
||||
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
||||
---
|
||||
drivers/video/Kconfig | 11 +
|
||||
drivers/video/Makefile | 1 +
|
||||
drivers/video/st7735fb.c | 516 ++++++++++++++++++++++++++++++++++++++++++++++
|
||||
include/video/st7735fb.h | 86 ++++++++
|
||||
4 files changed, 614 insertions(+), 0 deletions(-)
|
||||
create mode 100644 drivers/video/st7735fb.c
|
||||
create mode 100644 include/video/st7735fb.h
|
||||
|
||||
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
|
||||
index 792b7841..4ac5eb1 100644
|
||||
--- a/drivers/video/Kconfig
|
||||
+++ b/drivers/video/Kconfig
|
||||
@@ -2394,6 +2394,17 @@ config FB_PUV3_UNIGFX
|
||||
Choose this option if you want to use the Unigfx device as a
|
||||
framebuffer device. Without the support of PCI & AGP.
|
||||
|
||||
+config FB_ST7735
|
||||
+ tristate "ST7735 framebuffer support"
|
||||
+ depends on FB && SPI
|
||||
+ select FB_SYS_FILLRECT
|
||||
+ select FB_SYS_COPYAREA
|
||||
+ select FB_SYS_IMAGEBLIT
|
||||
+ select FB_SYS_FOPS
|
||||
+ select FB_DEFERRED_IO
|
||||
+ help
|
||||
+ Framebuffer support for the ST7735 display controller in SPI mode.
|
||||
+
|
||||
source "drivers/video/omap/Kconfig"
|
||||
source "drivers/video/omap2/Kconfig"
|
||||
|
||||
diff --git a/drivers/video/Makefile b/drivers/video/Makefile
|
||||
index 8b83129..6b67f05 100644
|
||||
--- a/drivers/video/Makefile
|
||||
+++ b/drivers/video/Makefile
|
||||
@@ -141,6 +141,7 @@ obj-$(CONFIG_FB_MSM) += msm/
|
||||
obj-$(CONFIG_FB_NUC900) += nuc900fb.o
|
||||
obj-$(CONFIG_FB_JZ4740) += jz4740_fb.o
|
||||
obj-$(CONFIG_FB_PUV3_UNIGFX) += fb-puv3.o
|
||||
+obj-$(CONFIG_FB_ST7735) += st7735fb.o
|
||||
|
||||
# Platform or fallback drivers go here
|
||||
obj-$(CONFIG_FB_UVESA) += uvesafb.o
|
||||
diff --git a/drivers/video/st7735fb.c b/drivers/video/st7735fb.c
|
||||
new file mode 100644
|
||||
index 0000000..500cc88
|
||||
--- /dev/null
|
||||
+++ b/drivers/video/st7735fb.c
|
||||
@@ -0,0 +1,516 @@
|
||||
+/*
|
||||
+ * linux/drivers/video/st7735fb.c -- FB driver for ST7735 LCD controller
|
||||
+ * Layout is based on skeletonfb.c by James Simmons and Geert Uytterhoeven.
|
||||
+ *
|
||||
+ * Copyright (C) 2011, Matt Porter
|
||||
+ *
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file COPYING in the main directory of this archive for
|
||||
+ * more details.
|
||||
+ */
|
||||
+
|
||||
+#include <linux/module.h>
|
||||
+#include <linux/kernel.h>
|
||||
+#include <linux/errno.h>
|
||||
+#include <linux/string.h>
|
||||
+#include <linux/mm.h>
|
||||
+#include <linux/vmalloc.h>
|
||||
+#include <linux/slab.h>
|
||||
+#include <linux/init.h>
|
||||
+#include <linux/fb.h>
|
||||
+#include <linux/gpio.h>
|
||||
+#include <linux/spi/spi.h>
|
||||
+#include <linux/delay.h>
|
||||
+#include <linux/uaccess.h>
|
||||
+
|
||||
+#include <video/st7735fb.h>
|
||||
+
|
||||
+static struct st7735_function st7735_cfg_script[] = {
|
||||
+ { ST7735_START, ST7735_START},
|
||||
+ { ST7735_CMD, ST7735_SWRESET},
|
||||
+ { ST7735_DELAY, 150},
|
||||
+ { ST7735_CMD, ST7735_SLPOUT},
|
||||
+ { ST7735_DELAY, 500},
|
||||
+ { ST7735_CMD, ST7735_FRMCTR1},
|
||||
+ { ST7735_DATA, 0x01},
|
||||
+ { ST7735_DATA, 0x2c},
|
||||
+ { ST7735_DATA, 0x2d},
|
||||
+ { ST7735_CMD, ST7735_FRMCTR2},
|
||||
+ { ST7735_DATA, 0x01},
|
||||
+ { ST7735_DATA, 0x2c},
|
||||
+ { ST7735_DATA, 0x2d},
|
||||
+ { ST7735_CMD, ST7735_FRMCTR3},
|
||||
+ { ST7735_DATA, 0x01},
|
||||
+ { ST7735_DATA, 0x2c},
|
||||
+ { ST7735_DATA, 0x2d},
|
||||
+ { ST7735_DATA, 0x01},
|
||||
+ { ST7735_DATA, 0x2c},
|
||||
+ { ST7735_DATA, 0x2d},
|
||||
+ { ST7735_CMD, ST7735_INVCTR},
|
||||
+ { ST7735_DATA, 0x07},
|
||||
+ { ST7735_CMD, ST7735_PWCTR1},
|
||||
+ { ST7735_DATA, 0xa2},
|
||||
+ { ST7735_DATA, 0x02},
|
||||
+ { ST7735_DATA, 0x84},
|
||||
+ { ST7735_CMD, ST7735_PWCTR2},
|
||||
+ { ST7735_DATA, 0xc5},
|
||||
+ { ST7735_CMD, ST7735_PWCTR3},
|
||||
+ { ST7735_DATA, 0x0a},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_CMD, ST7735_PWCTR4},
|
||||
+ { ST7735_DATA, 0x8a},
|
||||
+ { ST7735_DATA, 0x2a},
|
||||
+ { ST7735_CMD, ST7735_PWCTR5},
|
||||
+ { ST7735_DATA, 0x8a},
|
||||
+ { ST7735_DATA, 0xee},
|
||||
+ { ST7735_CMD, ST7735_VMCTR1},
|
||||
+ { ST7735_DATA, 0x0e},
|
||||
+ { ST7735_CMD, ST7735_INVOFF},
|
||||
+ { ST7735_CMD, ST7735_MADCTL},
|
||||
+ { ST7735_DATA, 0xc8},
|
||||
+ { ST7735_CMD, ST7735_COLMOD},
|
||||
+ { ST7735_DATA, 0x05},
|
||||
+ { ST7735_CMD, ST7735_CASET},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x7f},
|
||||
+ { ST7735_CMD, ST7735_RASET},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x9f},
|
||||
+ { ST7735_CMD, ST7735_GMCTRP1},
|
||||
+ { ST7735_DATA, 0x02},
|
||||
+ { ST7735_DATA, 0x1c},
|
||||
+ { ST7735_DATA, 0x07},
|
||||
+ { ST7735_DATA, 0x12},
|
||||
+ { ST7735_DATA, 0x37},
|
||||
+ { ST7735_DATA, 0x32},
|
||||
+ { ST7735_DATA, 0x29},
|
||||
+ { ST7735_DATA, 0x2d},
|
||||
+ { ST7735_DATA, 0x29},
|
||||
+ { ST7735_DATA, 0x25},
|
||||
+ { ST7735_DATA, 0x2b},
|
||||
+ { ST7735_DATA, 0x39},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x01},
|
||||
+ { ST7735_DATA, 0x03},
|
||||
+ { ST7735_DATA, 0x10},
|
||||
+ { ST7735_CMD, ST7735_GMCTRN1},
|
||||
+ { ST7735_DATA, 0x03},
|
||||
+ { ST7735_DATA, 0x1d},
|
||||
+ { ST7735_DATA, 0x07},
|
||||
+ { ST7735_DATA, 0x06},
|
||||
+ { ST7735_DATA, 0x2e},
|
||||
+ { ST7735_DATA, 0x2c},
|
||||
+ { ST7735_DATA, 0x29},
|
||||
+ { ST7735_DATA, 0x2d},
|
||||
+ { ST7735_DATA, 0x2e},
|
||||
+ { ST7735_DATA, 0x2e},
|
||||
+ { ST7735_DATA, 0x37},
|
||||
+ { ST7735_DATA, 0x3f},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x00},
|
||||
+ { ST7735_DATA, 0x02},
|
||||
+ { ST7735_DATA, 0x10},
|
||||
+ { ST7735_CMD, ST7735_DISPON},
|
||||
+ { ST7735_DELAY, 100},
|
||||
+ { ST7735_CMD, ST7735_NORON},
|
||||
+ { ST7735_DELAY, 10},
|
||||
+ { ST7735_END, ST7735_END},
|
||||
+};
|
||||
+
|
||||
+static struct fb_fix_screeninfo st7735fb_fix __devinitdata = {
|
||||
+ .id = "ST7735",
|
||||
+ .type = FB_TYPE_PACKED_PIXELS,
|
||||
+ .visual = FB_VISUAL_PSEUDOCOLOR,
|
||||
+ .xpanstep = 0,
|
||||
+ .ypanstep = 0,
|
||||
+ .ywrapstep = 0,
|
||||
+ .line_length = WIDTH*BPP/8,
|
||||
+ .accel = FB_ACCEL_NONE,
|
||||
+};
|
||||
+
|
||||
+static struct fb_var_screeninfo st7735fb_var __devinitdata = {
|
||||
+ .xres = WIDTH,
|
||||
+ .yres = HEIGHT,
|
||||
+ .xres_virtual = WIDTH,
|
||||
+ .yres_virtual = HEIGHT,
|
||||
+ .bits_per_pixel = BPP,
|
||||
+ .nonstd = 1,
|
||||
+};
|
||||
+
|
||||
+static int st7735_write(struct st7735fb_par *par, u8 data)
|
||||
+{
|
||||
+ u8 txbuf[2]; /* allocation from stack must go */
|
||||
+
|
||||
+ txbuf[0] = data;
|
||||
+
|
||||
+ return spi_write(par->spi, &txbuf[0], 1);
|
||||
+}
|
||||
+
|
||||
+static void st7735_write_data(struct st7735fb_par *par, u8 data)
|
||||
+{
|
||||
+ int ret = 0;
|
||||
+
|
||||
+ /* Set data mode */
|
||||
+ gpio_set_value(par->dc, 1);
|
||||
+
|
||||
+ ret = st7735_write(par, data);
|
||||
+ if (ret < 0)
|
||||
+ pr_err("%s: write data %02x failed with status %d\n",
|
||||
+ par->info->fix.id, data, ret);
|
||||
+}
|
||||
+
|
||||
+static int st7735_write_data_buf(struct st7735fb_par *par,
|
||||
+ u8 *txbuf, int size)
|
||||
+{
|
||||
+ /* Set data mode */
|
||||
+ gpio_set_value(par->dc, 1);
|
||||
+
|
||||
+ /* Write entire buffer */
|
||||
+ return spi_write(par->spi, txbuf, size);
|
||||
+}
|
||||
+
|
||||
+static void st7735_write_cmd(struct st7735fb_par *par, u8 data)
|
||||
+{
|
||||
+ int ret = 0;
|
||||
+
|
||||
+ /* Set command mode */
|
||||
+ gpio_set_value(par->dc, 0);
|
||||
+
|
||||
+ ret = st7735_write(par, data);
|
||||
+ if (ret < 0)
|
||||
+ pr_err("%s: write command %02x failed with status %d\n",
|
||||
+ par->info->fix.id, data, ret);
|
||||
+}
|
||||
+
|
||||
+static void st7735_run_cfg_script(struct st7735fb_par *par)
|
||||
+{
|
||||
+ int i = 0;
|
||||
+ int end_script = 0;
|
||||
+
|
||||
+ do {
|
||||
+ switch (st7735_cfg_script[i].cmd)
|
||||
+ {
|
||||
+ case ST7735_START:
|
||||
+ break;
|
||||
+ case ST7735_CMD:
|
||||
+ st7735_write_cmd(par,
|
||||
+ st7735_cfg_script[i].data & 0xff);
|
||||
+ break;
|
||||
+ case ST7735_DATA:
|
||||
+ st7735_write_data(par,
|
||||
+ st7735_cfg_script[i].data & 0xff);
|
||||
+ break;
|
||||
+ case ST7735_DELAY:
|
||||
+ mdelay(st7735_cfg_script[i].data);
|
||||
+ break;
|
||||
+ case ST7735_END:
|
||||
+ end_script = 1;
|
||||
+ }
|
||||
+ i++;
|
||||
+ } while (!end_script);
|
||||
+}
|
||||
+
|
||||
+static void st7735_set_addr_win(struct st7735fb_par *par,
|
||||
+ int xs, int ys, int xe, int ye)
|
||||
+{
|
||||
+ st7735_write_cmd(par, ST7735_CASET);
|
||||
+ st7735_write_data(par, 0x00);
|
||||
+ st7735_write_data(par, xs+2);
|
||||
+ st7735_write_data(par, 0x00);
|
||||
+ st7735_write_data(par, xe+2);
|
||||
+ st7735_write_cmd(par, ST7735_RASET);
|
||||
+ st7735_write_data(par, 0x00);
|
||||
+ st7735_write_data(par, ys+1);
|
||||
+ st7735_write_data(par, 0x00);
|
||||
+ st7735_write_data(par, ye+1);
|
||||
+}
|
||||
+
|
||||
+static void st7735_reset(struct st7735fb_par *par)
|
||||
+{
|
||||
+ /* Reset controller */
|
||||
+ gpio_set_value(par->rst, 0);
|
||||
+ udelay(10);
|
||||
+ gpio_set_value(par->rst, 1);
|
||||
+ mdelay(120);
|
||||
+}
|
||||
+
|
||||
+static void st7735fb_update_display(struct st7735fb_par *par)
|
||||
+{
|
||||
+ int ret = 0;
|
||||
+ u8 *vmem = par->info->screen_base;
|
||||
+
|
||||
+ /*
|
||||
+ TODO:
|
||||
+ Allow a subset of pages to be passed in
|
||||
+ (for deferred I/O). Check pages against
|
||||
+ pan display settings to see if they
|
||||
+ should be updated.
|
||||
+ */
|
||||
+ /* For now, just write the full 40KiB on each update */
|
||||
+
|
||||
+ /* Set row/column data window */
|
||||
+ st7735_set_addr_win(par, 0, 0, WIDTH-1, HEIGHT-1);
|
||||
+
|
||||
+ /* Internal RAM write command */
|
||||
+ st7735_write_cmd(par, ST7735_RAMWR);
|
||||
+
|
||||
+ /* Blast framebuffer to ST7735 internal display RAM */
|
||||
+ ret = st7735_write_data_buf(par, vmem, WIDTH*HEIGHT*BPP/8);
|
||||
+ if (ret < 0)
|
||||
+ pr_err("%s: spi_write failed to update display buffer\n",
|
||||
+ par->info->fix.id);
|
||||
+}
|
||||
+
|
||||
+static void st7735fb_deferred_io(struct fb_info *info,
|
||||
+ struct list_head *pagelist)
|
||||
+{
|
||||
+ st7735fb_update_display(info->par);
|
||||
+}
|
||||
+
|
||||
+static int st7735fb_init_display(struct st7735fb_par *par)
|
||||
+{
|
||||
+ /* TODO: Need some error checking on gpios */
|
||||
+
|
||||
+ /* Request GPIOs and initialize to default values */
|
||||
+ gpio_request_one(par->rst, GPIOF_OUT_INIT_HIGH,
|
||||
+ "ST7735 Reset Pin");
|
||||
+ gpio_request_one(par->dc, GPIOF_OUT_INIT_LOW,
|
||||
+ "ST7735 Data/Command Pin");
|
||||
+
|
||||
+ st7735_reset(par);
|
||||
+
|
||||
+ st7735_run_cfg_script(par);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+void st7735fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
|
||||
+{
|
||||
+ struct st7735fb_par *par = info->par;
|
||||
+
|
||||
+ sys_fillrect(info, rect);
|
||||
+
|
||||
+ st7735fb_update_display(par);
|
||||
+}
|
||||
+
|
||||
+void st7735fb_copyarea(struct fb_info *info, const struct fb_copyarea *area)
|
||||
+{
|
||||
+ struct st7735fb_par *par = info->par;
|
||||
+
|
||||
+ sys_copyarea(info, area);
|
||||
+
|
||||
+ st7735fb_update_display(par);
|
||||
+}
|
||||
+
|
||||
+void st7735fb_imageblit(struct fb_info *info, const struct fb_image *image)
|
||||
+{
|
||||
+ struct st7735fb_par *par = info->par;
|
||||
+
|
||||
+ sys_imageblit(info, image);
|
||||
+
|
||||
+ st7735fb_update_display(par);
|
||||
+}
|
||||
+
|
||||
+static ssize_t st7735fb_write(struct fb_info *info, const char __user *buf,
|
||||
+ size_t count, loff_t *ppos)
|
||||
+{
|
||||
+ struct st7735fb_par *par = info->par;
|
||||
+ unsigned long p = *ppos;
|
||||
+ void *dst;
|
||||
+ int err = 0;
|
||||
+ unsigned long total_size;
|
||||
+
|
||||
+ if (info->state != FBINFO_STATE_RUNNING)
|
||||
+ return -EPERM;
|
||||
+
|
||||
+ total_size = info->fix.smem_len;
|
||||
+
|
||||
+ if (p > total_size)
|
||||
+ return -EFBIG;
|
||||
+
|
||||
+ if (count > total_size) {
|
||||
+ err = -EFBIG;
|
||||
+ count = total_size;
|
||||
+ }
|
||||
+
|
||||
+ if (count + p > total_size) {
|
||||
+ if (!err)
|
||||
+ err = -ENOSPC;
|
||||
+
|
||||
+ count = total_size - p;
|
||||
+ }
|
||||
+
|
||||
+ dst = (void __force *) (info->screen_base + p);
|
||||
+
|
||||
+ if (copy_from_user(dst, buf, count))
|
||||
+ err = -EFAULT;
|
||||
+
|
||||
+ if (!err)
|
||||
+ *ppos += count;
|
||||
+
|
||||
+ st7735fb_update_display(par);
|
||||
+
|
||||
+ return (err) ? err : count;
|
||||
+}
|
||||
+
|
||||
+static struct fb_ops st7735fb_ops = {
|
||||
+ .owner = THIS_MODULE,
|
||||
+ .fb_read = fb_sys_read,
|
||||
+ .fb_write = st7735fb_write,
|
||||
+ .fb_fillrect = st7735fb_fillrect,
|
||||
+ .fb_copyarea = st7735fb_copyarea,
|
||||
+ .fb_imageblit = st7735fb_imageblit,
|
||||
+};
|
||||
+
|
||||
+static struct fb_deferred_io st7735fb_defio = {
|
||||
+ .delay = HZ,
|
||||
+ .deferred_io = st7735fb_deferred_io,
|
||||
+};
|
||||
+
|
||||
+static int __devinit st7735fb_probe (struct spi_device *spi)
|
||||
+{
|
||||
+ int chip = spi_get_device_id(spi)->driver_data;
|
||||
+ struct st7735fb_platform_data *pdata = spi->dev.platform_data;
|
||||
+ int vmem_size = WIDTH*HEIGHT*BPP/8;
|
||||
+ u8 *vmem;
|
||||
+ struct fb_info *info;
|
||||
+ struct st7735fb_par *par;
|
||||
+ int retval = -ENOMEM;
|
||||
+
|
||||
+ if (chip != ST7735_DISPLAY_AF_TFT18) {
|
||||
+ pr_err("%s: only the %s device is supported\n", DRVNAME,
|
||||
+ to_spi_driver(spi->dev.driver)->id_table->name);
|
||||
+ return -EINVAL;
|
||||
+ }
|
||||
+
|
||||
+ if (!pdata) {
|
||||
+ pr_err("%s: platform data required for rst and dc info\n",
|
||||
+ DRVNAME);
|
||||
+ return -EINVAL;
|
||||
+ }
|
||||
+
|
||||
+ vmem = vzalloc(vmem_size);
|
||||
+ if (!vmem)
|
||||
+ return retval;
|
||||
+
|
||||
+ info = framebuffer_alloc(sizeof(struct st7735fb_par), &spi->dev);
|
||||
+ if (!info)
|
||||
+ goto fballoc_fail;
|
||||
+
|
||||
+ info->screen_base = (u8 __force __iomem *)vmem;
|
||||
+ info->fbops = &st7735fb_ops;
|
||||
+ info->fix = st7735fb_fix;
|
||||
+ info->fix.smem_len = vmem_size;
|
||||
+ info->var = st7735fb_var;
|
||||
+ /* Choose any packed pixel format as long as it's RGB565 */
|
||||
+ info->var.red.offset = 11;
|
||||
+ info->var.red.length = 5;
|
||||
+ info->var.green.offset = 5;
|
||||
+ info->var.green.length = 6;
|
||||
+ info->var.blue.offset = 0;
|
||||
+ info->var.blue.length = 5;
|
||||
+ info->var.transp.offset = 0;
|
||||
+ info->var.transp.length = 0;
|
||||
+ info->flags = FBINFO_FLAG_DEFAULT |
|
||||
+#ifdef __LITTLE_ENDIAN
|
||||
+ FBINFO_FOREIGN_ENDIAN |
|
||||
+#endif
|
||||
+ FBINFO_VIRTFB;
|
||||
+
|
||||
+ info->fbdefio = &st7735fb_defio;
|
||||
+ fb_deferred_io_init(info);
|
||||
+
|
||||
+ par = info->par;
|
||||
+ par->info = info;
|
||||
+ par->spi = spi;
|
||||
+ par->rst = pdata->rst_gpio;
|
||||
+ par->dc = pdata->dc_gpio;
|
||||
+
|
||||
+ retval = register_framebuffer(info);
|
||||
+ if (retval < 0)
|
||||
+ goto fbreg_fail;
|
||||
+
|
||||
+ spi_set_drvdata(spi, info);
|
||||
+
|
||||
+ retval = st7735fb_init_display(par);
|
||||
+ if (retval < 0)
|
||||
+ goto init_fail;
|
||||
+
|
||||
+ printk(KERN_INFO
|
||||
+ "fb%d: %s frame buffer device,\n\tusing %d KiB of video memory\n",
|
||||
+ info->node, info->fix.id, vmem_size);
|
||||
+
|
||||
+ return 0;
|
||||
+
|
||||
+
|
||||
+ /* TODO: release gpios on fail */
|
||||
+init_fail:
|
||||
+ spi_set_drvdata(spi, NULL);
|
||||
+
|
||||
+fbreg_fail:
|
||||
+ framebuffer_release(info);
|
||||
+
|
||||
+fballoc_fail:
|
||||
+ vfree(vmem);
|
||||
+
|
||||
+ return retval;
|
||||
+}
|
||||
+
|
||||
+static int __devexit st7735fb_remove(struct spi_device *spi)
|
||||
+{
|
||||
+ struct fb_info *info = spi_get_drvdata(spi);
|
||||
+
|
||||
+ spi_set_drvdata(spi, NULL);
|
||||
+
|
||||
+ if (info) {
|
||||
+ unregister_framebuffer(info);
|
||||
+ vfree(info->screen_base);
|
||||
+ framebuffer_release(info);
|
||||
+ }
|
||||
+
|
||||
+ /* TODO: release gpios */
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+static const struct spi_device_id st7735fb_ids[] = {
|
||||
+ { "adafruit_tft18", ST7735_DISPLAY_AF_TFT18 },
|
||||
+ { },
|
||||
+};
|
||||
+
|
||||
+MODULE_DEVICE_TABLE(spi, st7735fb_ids);
|
||||
+
|
||||
+static struct spi_driver st7735fb_driver = {
|
||||
+ .driver = {
|
||||
+ .name = "st7735fb",
|
||||
+ .owner = THIS_MODULE,
|
||||
+ },
|
||||
+ .id_table = st7735fb_ids,
|
||||
+ .probe = st7735fb_probe,
|
||||
+ .remove = __devexit_p(st7735fb_remove),
|
||||
+};
|
||||
+
|
||||
+static int __init st7735fb_init(void)
|
||||
+{
|
||||
+ return spi_register_driver(&st7735fb_driver);
|
||||
+}
|
||||
+
|
||||
+static void __exit st7735fb_exit(void)
|
||||
+{
|
||||
+ spi_unregister_driver(&st7735fb_driver);
|
||||
+}
|
||||
+
|
||||
+/* ------------------------------------------------------------------------- */
|
||||
+
|
||||
+module_init(st7735fb_init);
|
||||
+module_exit(st7735fb_exit);
|
||||
+
|
||||
+MODULE_DESCRIPTION("FB driver for ST7735 display controller");
|
||||
+MODULE_AUTHOR("Matt Porter");
|
||||
+MODULE_LICENSE("GPL");
|
||||
diff --git a/include/video/st7735fb.h b/include/video/st7735fb.h
|
||||
new file mode 100644
|
||||
index 0000000..250f036
|
||||
--- /dev/null
|
||||
+++ b/include/video/st7735fb.h
|
||||
@@ -0,0 +1,86 @@
|
||||
+/*
|
||||
+ * linux/include/video/st7735fb.h -- FB driver for ST7735 LCD controller
|
||||
+ *
|
||||
+ * Copyright (C) 2011, Matt Porter
|
||||
+ *
|
||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||
+ * License. See the file COPYING in the main directory of this archive for
|
||||
+ * more details.
|
||||
+ */
|
||||
+
|
||||
+#define DRVNAME "st7735fb"
|
||||
+#define WIDTH 128
|
||||
+#define HEIGHT 160
|
||||
+#define BPP 16
|
||||
+
|
||||
+/* Supported display modules */
|
||||
+#define ST7735_DISPLAY_AF_TFT18 0 /* Adafruit SPI TFT 1.8" */
|
||||
+
|
||||
+/* Init script function */
|
||||
+struct st7735_function {
|
||||
+ u16 cmd;
|
||||
+ u16 data;
|
||||
+};
|
||||
+
|
||||
+/* Init script commands */
|
||||
+enum st7735_cmd {
|
||||
+ ST7735_START,
|
||||
+ ST7735_END,
|
||||
+ ST7735_CMD,
|
||||
+ ST7735_DATA,
|
||||
+ ST7735_DELAY
|
||||
+};
|
||||
+
|
||||
+struct st7735fb_par {
|
||||
+ struct spi_device *spi;
|
||||
+ struct fb_info *info;
|
||||
+ int rst;
|
||||
+ int dc;
|
||||
+};
|
||||
+
|
||||
+struct st7735fb_platform_data {
|
||||
+ int rst_gpio;
|
||||
+ int dc_gpio;
|
||||
+};
|
||||
+
|
||||
+/* ST7735 Commands */
|
||||
+#define ST7735_NOP 0x0
|
||||
+#define ST7735_SWRESET 0x01
|
||||
+#define ST7735_RDDID 0x04
|
||||
+#define ST7735_RDDST 0x09
|
||||
+#define ST7735_SLPIN 0x10
|
||||
+#define ST7735_SLPOUT 0x11
|
||||
+#define ST7735_PTLON 0x12
|
||||
+#define ST7735_NORON 0x13
|
||||
+#define ST7735_INVOFF 0x20
|
||||
+#define ST7735_INVON 0x21
|
||||
+#define ST7735_DISPOFF 0x28
|
||||
+#define ST7735_DISPON 0x29
|
||||
+#define ST7735_CASET 0x2A
|
||||
+#define ST7735_RASET 0x2B
|
||||
+#define ST7735_RAMWR 0x2C
|
||||
+#define ST7735_RAMRD 0x2E
|
||||
+#define ST7735_COLMOD 0x3A
|
||||
+#define ST7735_MADCTL 0x36
|
||||
+#define ST7735_FRMCTR1 0xB1
|
||||
+#define ST7735_FRMCTR2 0xB2
|
||||
+#define ST7735_FRMCTR3 0xB3
|
||||
+#define ST7735_INVCTR 0xB4
|
||||
+#define ST7735_DISSET5 0xB6
|
||||
+#define ST7735_PWCTR1 0xC0
|
||||
+#define ST7735_PWCTR2 0xC1
|
||||
+#define ST7735_PWCTR3 0xC2
|
||||
+#define ST7735_PWCTR4 0xC3
|
||||
+#define ST7735_PWCTR5 0xC4
|
||||
+#define ST7735_VMCTR1 0xC5
|
||||
+#define ST7735_RDID1 0xDA
|
||||
+#define ST7735_RDID2 0xDB
|
||||
+#define ST7735_RDID3 0xDC
|
||||
+#define ST7735_RDID4 0xDD
|
||||
+#define ST7735_GMCTRP1 0xE0
|
||||
+#define ST7735_GMCTRN1 0xE1
|
||||
+#define ST7735_PWCTR6 0xFC
|
||||
+
|
||||
+
|
||||
+
|
||||
+
|
||||
--
|
||||
1.7.2.5
|
||||
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
From dd3f24640c209d8186010dbf2bbabe11f3eb52ce Mon Sep 17 00:00:00 2001
|
||||
From: Matt Porter <mporter@ti.com>
|
||||
Date: Mon, 21 Nov 2011 12:56:52 -0500
|
||||
Subject: [PATCH 2/2] beaglebone: hack in support for the WIP st7735fb driver
|
||||
|
||||
Signed-off-by: Matt Porter <mporter@ti.com>
|
||||
---
|
||||
arch/arm/mach-omap2/board-am335xevm.c | 28 ++++++++++++++++++++++++++++
|
||||
1 files changed, 28 insertions(+), 0 deletions(-)
|
||||
|
||||
diff --git a/arch/arm/mach-omap2/board-am335xevm.c b/arch/arm/mach-omap2/board-am335xevm.c
|
||||
index b27fb97..f049aad 100644
|
||||
--- a/arch/arm/mach-omap2/board-am335xevm.c
|
||||
+++ b/arch/arm/mach-omap2/board-am335xevm.c
|
||||
@@ -51,6 +51,7 @@
|
||||
|
||||
/* LCD controller is similar to DA850 */
|
||||
#include <video/da8xx-fb.h>
|
||||
+#include <video/st7735fb.h>
|
||||
|
||||
#include "control.h"
|
||||
#include "board-flash.h"
|
||||
@@ -1094,6 +1095,23 @@ static struct spi_board_info am335x_spi1_slave_info[] = {
|
||||
},
|
||||
};
|
||||
|
||||
+static const struct st7735fb_platform_data bone_st7735fb_data = {
|
||||
+ .rst_gpio = GPIO_TO_PIN(3, 19),
|
||||
+ .dc_gpio = GPIO_TO_PIN(3, 21),
|
||||
+};
|
||||
+
|
||||
+static struct spi_board_info bone_spi1_slave_info[] = {
|
||||
+ {
|
||||
+ .modalias = "adafruit_tft18",
|
||||
+ .platform_data = &bone_st7735fb_data,
|
||||
+ .irq = -1,
|
||||
+ .max_speed_hz = 8000000,
|
||||
+ .bus_num = 2,
|
||||
+ .chip_select = 0,
|
||||
+ .mode = SPI_MODE_3,
|
||||
+ },
|
||||
+};
|
||||
+
|
||||
static void evm_nand_init(int evm_id, int profile)
|
||||
{
|
||||
setup_pin_mux(nand_pin_mux);
|
||||
@@ -1410,6 +1428,14 @@ static void spi1_init(int evm_id, int profile)
|
||||
return;
|
||||
}
|
||||
|
||||
+/* setup bone spi1 */
|
||||
+static void bone_spi1_init(int evm_id, int profile)
|
||||
+{
|
||||
+ setup_pin_mux(spi1_pin_mux);
|
||||
+ spi_register_board_info(bone_spi1_slave_info,
|
||||
+ ARRAY_SIZE(bone_spi1_slave_info));
|
||||
+ return;
|
||||
+}
|
||||
|
||||
static int beaglebone_phy_fixup(struct phy_device *phydev)
|
||||
{
|
||||
@@ -1567,6 +1593,8 @@ static struct evm_dev_cfg beaglebone_dev_cfg[] = {
|
||||
{i2c2_init, DEV_ON_BASEBOARD, PROFILE_NONE},
|
||||
{mmc0_init, DEV_ON_BASEBOARD, PROFILE_NONE},
|
||||
{boneleds_init, DEV_ON_BASEBOARD, PROFILE_ALL},
|
||||
+ /* HACK ALERT */
|
||||
+ {bone_spi1_init, DEV_ON_BASEBOARD, PROFILE_NONE},
|
||||
{NULL, 0, 0},
|
||||
};
|
||||
|
||||
--
|
||||
1.7.2.5
|
||||
|
||||
@@ -11,7 +11,7 @@ MULTI_CONFIG_BASE_SUFFIX = ""
|
||||
|
||||
BRANCH = "v3.1-meta-ti-r1r+gitr1d84d8853fa30cf3db2571a5aec572accca4e29d"
|
||||
SRCREV = "1d84d8853fa30cf3db2571a5aec572accca4e29d"
|
||||
MACHINE_KERNEL_PR_append = "d+gitr${SRCREV}"
|
||||
MACHINE_KERNEL_PR_append = "e+gitr${SRCREV}"
|
||||
|
||||
COMPATIBLE_MACHINE = "(ti33x)"
|
||||
|
||||
@@ -54,6 +54,7 @@ PATCHES_OVER_PSP = " \
|
||||
file://adc/0008-tscadc-Trigger-through-sysfs.patch \
|
||||
file://adc/0009-meta-ti-Remove-debug-messages-for-meta-ti.patch \
|
||||
file://adc/0010-tscadc-switch-to-polling-instead-of-interrupts.patch \
|
||||
file://st7735fb/0001-st7735fb-WIP-framebuffer-driver-supporting-Adafruit-.patch \
|
||||
"
|
||||
|
||||
SRC_URI += "${@base_contains('DISTRO_FEATURES', 'tipspkernel', "", "${PATCHES_OVER_PSP}", d)}"
|
||||
|
||||
Reference in New Issue
Block a user