2013-06-22 01:09:45 +00:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2018-10-01 15:32:39 +00:00
|
|
|
* http://ugfx.io/license.html
|
2013-06-22 01:09:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gfx.h"
|
|
|
|
|
|
|
|
#if GFX_USE_GDISP /*|| defined(__DOXYGEN__)*/
|
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
#define GDISP_DRIVER_VMT GDISPVMT_RA8875
|
2015-11-21 09:27:08 +00:00
|
|
|
#include "gdisp_lld_config.h"
|
|
|
|
#include "../../../src/gdisp/gdisp_driver.h"
|
2013-10-17 07:33:56 +00:00
|
|
|
|
|
|
|
/* include the users board interface */
|
2013-10-24 12:08:35 +00:00
|
|
|
#include "board_RA8875.h"
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local definitions. */
|
|
|
|
/*===========================================================================*/
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
#ifndef GDISP_SCREEN_HEIGHT
|
|
|
|
#define GDISP_SCREEN_HEIGHT 272
|
|
|
|
#endif
|
|
|
|
#ifndef GDISP_SCREEN_WIDTH
|
|
|
|
#define GDISP_SCREEN_WIDTH 480
|
|
|
|
#endif
|
|
|
|
#ifndef GDISP_INITIAL_CONTRAST
|
|
|
|
#define GDISP_INITIAL_CONTRAST 50
|
|
|
|
#endif
|
|
|
|
#ifndef GDISP_INITIAL_BACKLIGHT
|
|
|
|
#define GDISP_INITIAL_BACKLIGHT 74
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
// Some common routines and macros
|
2018-11-03 00:51:23 +00:00
|
|
|
#define dummy_read(g) { volatile gU16 dummy; dummy = read_data(g); (void) dummy; }
|
2013-10-17 07:33:56 +00:00
|
|
|
#define write_reg8(g, reg, data) { write_index(g, reg); write_data(g, data); }
|
|
|
|
#define write_reg16(g, reg, data) { write_index(g, reg); write_data(g, data); write_index(g, reg+1); write_data(g, (data)>>8); }
|
|
|
|
#define write_reg8x2(g, reg, d1, d2) { write_index(g, reg); write_data(g, d1); write_data(g, d2); }
|
|
|
|
|
2015-10-23 08:24:49 +00:00
|
|
|
static GFXINLINE void set_cursor(GDisplay *g) {
|
2013-10-17 07:33:56 +00:00
|
|
|
write_reg16(g, 0x46, g->p.x);
|
|
|
|
write_reg16(g, 0x48, g->p.y);
|
2013-10-17 07:38:44 +00:00
|
|
|
write_index(g, 0x02);
|
2013-10-17 07:33:56 +00:00
|
|
|
}
|
|
|
|
|
2015-10-23 08:24:49 +00:00
|
|
|
static GFXINLINE void set_viewport(GDisplay* g) {
|
2013-10-17 07:33:56 +00:00
|
|
|
write_reg16(g, 0x30, g->p.x); //HSAW0 & HSAW1
|
|
|
|
write_reg16(g, 0x34, g->p.x+g->p.cx-1); //HEAW0 & HEAW1
|
|
|
|
write_reg16(g, 0x32, g->p.y); //VSAW0 & VSAW1
|
|
|
|
write_reg16(g, 0x36, g->p.y+g->p.cy-1); //VEAW0 & VEAW1
|
|
|
|
}
|
|
|
|
|
|
|
|
// On this controller the back-light is controlled by the controllers internal PWM
|
|
|
|
// which is why it is in this file rather than the board file.
|
2018-11-03 00:51:23 +00:00
|
|
|
static GFXINLINE void set_backlight(GDisplay* g, gU8 percent) {
|
|
|
|
gU8 temp;
|
2013-10-17 07:33:56 +00:00
|
|
|
|
|
|
|
//Work in progress: the RA8875 has a built-in PWM, its output can
|
|
|
|
//be used by a Dynamic Background Control or by a host (user)
|
|
|
|
|
|
|
|
// Enable PWM1
|
|
|
|
write_index(g, 0x8a); //MCLR
|
|
|
|
setreadmode(g);
|
|
|
|
temp = read_data(g);
|
|
|
|
setwritemode(g);
|
|
|
|
temp |= 1<<7 ;
|
|
|
|
write_data(g, temp);
|
|
|
|
|
|
|
|
// PWM1 function select
|
|
|
|
write_index(g, 0x8a); //MCLR
|
|
|
|
setreadmode(g);
|
|
|
|
temp = read_data(g);
|
|
|
|
setwritemode(g);
|
|
|
|
temp &= ~(1<<4);
|
|
|
|
write_data(g, temp);
|
|
|
|
|
|
|
|
// PWM1 Clock ratio
|
|
|
|
write_index(g, 0x8a); //MCLR
|
|
|
|
setreadmode(g);
|
|
|
|
temp = read_data(g);
|
|
|
|
setwritemode(g);
|
|
|
|
temp &= 0xf0;
|
|
|
|
temp |= 0x0b & 0x0f;
|
|
|
|
write_data(g, temp);
|
|
|
|
|
|
|
|
// PWM1 Write duty cycle
|
|
|
|
write_reg8(g, 0x8b, 54+percent); // PTNO: Also change percent to range from 0x00 to 0xFF
|
|
|
|
}
|
2013-06-22 01:09:45 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver interrupt handlers. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2018-06-23 03:02:07 +00:00
|
|
|
LLDSPEC gBool gdisp_lld_init(GDisplay *g) {
|
2013-10-21 05:13:10 +00:00
|
|
|
// No private area for this controller
|
|
|
|
g->priv = 0;
|
|
|
|
|
|
|
|
// Initialise the board interface
|
2013-10-19 05:36:05 +00:00
|
|
|
init_board(g);
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Hardware reset
|
2018-06-23 03:02:07 +00:00
|
|
|
setpin_reset(g, gTrue);
|
2013-10-17 07:33:56 +00:00
|
|
|
gfxSleepMilliseconds(20);
|
2018-06-23 03:02:07 +00:00
|
|
|
setpin_reset(g, gFalse);
|
2013-10-17 07:33:56 +00:00
|
|
|
gfxSleepMilliseconds(20);
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Get the bus for the following initialisation commands
|
|
|
|
acquire_bus(g);
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Soft reset
|
|
|
|
write_reg8x2(g, 0x01, 0x01, 0x00); gfxSleepMilliseconds(1);
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// PLL config
|
|
|
|
write_reg8(g, 0x88, 0x08); gfxSleepMilliseconds(1);
|
|
|
|
write_reg8(g, 0x89, 0x02); gfxSleepMilliseconds(1);
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
write_reg8(g, 0x10, 0x0F); //SYSR bit[4:3]=00 256 color bit[2:1]= 00 8bit MPU interface
|
|
|
|
// 0x0F = 16bit MCU interface and 65k color display
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
write_reg8(g, 0x04, 0x82); gfxSleepMilliseconds(1); //set PCLK inverse
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Horizontal set
|
|
|
|
write_reg8(g, 0x14, GDISP_SCREEN_WIDTH/8-1); //HDWR: Horizontal Display Width Setting Bit[6:0] - pixels = (HDWR + 1)*8
|
|
|
|
write_reg8(g, 0x15, 0x00); //Horizontal Non-Display Period Fine Tuning Option Register (HNDFTR) - HNDFT = [3:0]
|
|
|
|
write_reg8(g, 0x16, 0x01); //HNDR: Horizontal Non-Display Period Bit[4:0] - pixels = (HNDR + 1)*8
|
|
|
|
write_reg8(g, 0x17, 0x00); //HSTR: HSYNC Start Position[4:0] - Position(PCLK) = (HSTR + 1)*8
|
|
|
|
write_reg8(g, 0x18, 0x05); //HPWR: HSYNC Polarity, The period width of HSYNC. Width [4:0] width(PCLK) = (HPWR + 1)*8
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Vertical set
|
|
|
|
write_reg16(g, 0x19, GDISP_SCREEN_HEIGHT-1); //VDHR0,1: Vertical Display Height = VDHR + 1
|
|
|
|
write_reg16(g, 0x1b, 0x0002); //VNDR0,1: Vertical Non-Display Period Bit = (VSTR + 1)
|
|
|
|
write_reg16(g, 0x1d, 0x0007); //VSTR0,1: VSYNC Start Position = (VSTR + 1)
|
|
|
|
write_reg8(g, 0x1f, 0x09); //VPWR: VSYNC Polarity, VSYNC Pulse Width[6:0] - Width(PCLK) = (VPWR + 1)
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Active window set
|
|
|
|
write_reg16(g, 0x30, 0); //HSAW0 & HSAW1
|
|
|
|
write_reg16(g, 0x34, GDISP_SCREEN_WIDTH-1); //HEAW0 & HEAW1
|
|
|
|
write_reg16(g, 0x32, 0); //VSAW0 & VSAW1
|
|
|
|
write_reg16(g, 0x36, GDISP_SCREEN_HEIGHT-1); //VEAW0 & VEAW1
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Display ON
|
|
|
|
write_reg8(g, 0x01, 0x80); //PWRR
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// GPO0 DISP high
|
|
|
|
write_reg8(g, 0x13, 0x01); //GPO
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Set initial back-light
|
|
|
|
set_backlight(g, GDISP_INITIAL_BACKLIGHT);
|
2013-06-22 01:09:45 +00:00
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
// Change timings for faster access
|
|
|
|
post_init_board(g);
|
|
|
|
|
|
|
|
// Release the bus
|
|
|
|
release_bus(g);
|
|
|
|
|
|
|
|
/* Initialise the GDISP structure */
|
|
|
|
g->g.Width = GDISP_SCREEN_WIDTH;
|
|
|
|
g->g.Height = GDISP_SCREEN_HEIGHT;
|
2018-07-08 03:51:20 +00:00
|
|
|
g->g.Orientation = gOrientation0;
|
2018-07-08 01:47:36 +00:00
|
|
|
g->g.Powermode = gPowerOn;
|
2013-10-17 07:33:56 +00:00
|
|
|
g->g.Backlight = GDISP_INITIAL_BACKLIGHT;
|
|
|
|
g->g.Contrast = GDISP_INITIAL_CONTRAST;
|
2018-06-23 03:02:07 +00:00
|
|
|
return gTrue;
|
2013-10-17 07:33:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if GDISP_HARDWARE_STREAM_WRITE
|
|
|
|
LLDSPEC void gdisp_lld_write_start(GDisplay *g) {
|
|
|
|
acquire_bus(g);
|
|
|
|
set_viewport(g);
|
|
|
|
}
|
|
|
|
LLDSPEC void gdisp_lld_write_color(GDisplay *g) {
|
2013-11-17 13:32:19 +00:00
|
|
|
write_data(g, gdispColor2Native(g->p.color));
|
2013-10-17 07:33:56 +00:00
|
|
|
}
|
|
|
|
LLDSPEC void gdisp_lld_write_stop(GDisplay *g) {
|
|
|
|
release_bus(g);
|
|
|
|
}
|
|
|
|
LLDSPEC void gdisp_lld_write_pos(GDisplay *g) {
|
|
|
|
set_cursor(g);
|
|
|
|
}
|
2013-06-22 01:09:45 +00:00
|
|
|
#endif
|
|
|
|
|
2013-10-17 07:33:56 +00:00
|
|
|
#if GDISP_NEED_CONTROL && GDISP_HARDWARE_CONTROL
|
|
|
|
LLDSPEC void gdisp_lld_control(GDisplay *g) {
|
|
|
|
switch(g->p.x) {
|
|
|
|
#if 0
|
2013-06-22 01:09:45 +00:00
|
|
|
case GDISP_CONTROL_POWER:
|
2018-07-08 01:47:36 +00:00
|
|
|
if (g->g.Powermode == (gPowermode)g->p.ptr)
|
2013-10-17 07:33:56 +00:00
|
|
|
return;
|
2018-07-08 01:47:36 +00:00
|
|
|
switch((gPowermode)g->p.ptr) {
|
|
|
|
case gPowerOff:
|
2013-10-17 07:33:56 +00:00
|
|
|
acquire_bus(g);
|
|
|
|
// TODO
|
|
|
|
release_bus(g);
|
|
|
|
break;
|
2018-07-08 01:47:36 +00:00
|
|
|
case gPowerOn:
|
2013-10-17 07:33:56 +00:00
|
|
|
acquire_bus(g);
|
|
|
|
// TODO
|
|
|
|
release_bus(g);
|
|
|
|
break;
|
2018-07-08 01:47:36 +00:00
|
|
|
case gPowerSleep:
|
2013-10-17 07:33:56 +00:00
|
|
|
acquire_bus(g);
|
|
|
|
// TODO
|
|
|
|
release_bus(g);
|
|
|
|
break;
|
|
|
|
default:
|
2013-06-22 01:09:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-07-08 01:47:36 +00:00
|
|
|
g->g.Powermode = (gPowermode)g->p.ptr;
|
2013-06-22 01:09:45 +00:00
|
|
|
return;
|
2013-10-17 07:33:56 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 0
|
2013-06-22 01:09:45 +00:00
|
|
|
case GDISP_CONTROL_ORIENTATION:
|
2018-07-08 03:51:20 +00:00
|
|
|
if (g->g.Orientation == (gOrientation)g->p.ptr)
|
2013-10-17 07:33:56 +00:00
|
|
|
return;
|
2018-07-08 03:51:20 +00:00
|
|
|
switch((gOrientation)g->p.ptr) {
|
|
|
|
case gOrientation0:
|
2013-10-17 07:33:56 +00:00
|
|
|
acquire_bus(g);
|
|
|
|
// TODO
|
|
|
|
release_bus(g);
|
|
|
|
g->g.Height = GDISP_SCREEN_HEIGHT;
|
|
|
|
g->g.Width = GDISP_SCREEN_WIDTH;
|
|
|
|
break;
|
2018-07-08 03:51:20 +00:00
|
|
|
case gOrientation90:
|
2013-10-17 07:33:56 +00:00
|
|
|
acquire_bus(g);
|
|
|
|
// TODO
|
|
|
|
release_bus(g);
|
|
|
|
g->g.Height = GDISP_SCREEN_WIDTH;
|
|
|
|
g->g.Width = GDISP_SCREEN_HEIGHT;
|
|
|
|
break;
|
2018-07-08 03:51:20 +00:00
|
|
|
case gOrientation180:
|
2013-10-17 07:33:56 +00:00
|
|
|
acquire_bus(g);
|
|
|
|
// TODO
|
|
|
|
release_bus(g);
|
|
|
|
g->g.Height = GDISP_SCREEN_HEIGHT;
|
|
|
|
g->g.Width = GDISP_SCREEN_WIDTH;
|
|
|
|
break;
|
2018-07-08 03:51:20 +00:00
|
|
|
case gOrientation270:
|
2013-10-17 07:33:56 +00:00
|
|
|
acquire_bus(g);
|
|
|
|
// TODO
|
|
|
|
release_bus(g);
|
|
|
|
g->g.Height = GDISP_SCREEN_WIDTH;
|
|
|
|
g->g.Width = GDISP_SCREEN_HEIGHT;
|
|
|
|
break;
|
|
|
|
default:
|
2013-06-22 01:09:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-07-08 03:51:20 +00:00
|
|
|
g->g.Orientation = (gOrientation)g->p.ptr;
|
2013-06-22 01:09:45 +00:00
|
|
|
return;
|
2013-10-17 07:33:56 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
case GDISP_CONTROL_BACKLIGHT:
|
|
|
|
if ((unsigned)g->p.ptr > 100)
|
|
|
|
g->p.ptr = (void *)100;
|
|
|
|
acquire_bus(g);
|
|
|
|
set_backlight(g, (unsigned)g->p.ptr);
|
|
|
|
release_bus(g);
|
|
|
|
g->g.Backlight = (unsigned)g->p.ptr;
|
|
|
|
return;
|
|
|
|
|
|
|
|
//case GDISP_CONTROL_CONTRAST:
|
|
|
|
default:
|
|
|
|
return;
|
2013-06-22 01:09:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GDISP */
|