2013-05-01 23:53:28 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-03 14:36:17 +00:00
|
|
|
*/
|
2013-02-18 07:29:08 +00:00
|
|
|
|
|
|
|
/**
|
2015-01-21 07:26:24 +00:00
|
|
|
* @file src/gdisp/gdisp_driver.h
|
2013-02-18 07:29:08 +00:00
|
|
|
* @brief GDISP Graphic Driver subsystem low level driver header.
|
|
|
|
*
|
|
|
|
* @addtogroup GDISP
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GDISP_LLD_H
|
|
|
|
#define _GDISP_LLD_H
|
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
#if GFX_USE_GDISP
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
// Include the GDRIVER infrastructure
|
2015-01-21 07:26:24 +00:00
|
|
|
#include "src/gdriver/gdriver.h"
|
2014-08-23 07:55:42 +00:00
|
|
|
|
2015-01-13 03:50:46 +00:00
|
|
|
// Are we currently compiling the driver itself?
|
|
|
|
#if defined(GDISP_DRIVER_VMT)
|
|
|
|
#define IN_DRIVER TRUE
|
|
|
|
#else
|
|
|
|
#define IN_DRIVER FALSE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Is this a multiple driver situation?
|
|
|
|
#if defined(GDISP_DRIVER_LIST)
|
|
|
|
#define IS_MULTIPLE TRUE
|
|
|
|
#else
|
|
|
|
#define IS_MULTIPLE FALSE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Do we need to use VMT calling rather than direct calls to the driver?
|
|
|
|
#if IS_MULTIPLE || GDISP_NEED_PIXMAP
|
|
|
|
#define USE_VMT TRUE
|
|
|
|
#else
|
|
|
|
#define USE_VMT FALSE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Are we in the pixmap virtual driver
|
|
|
|
#ifndef IN_PIXMAP_DRIVER
|
|
|
|
#define IN_PIXMAP_DRIVER FALSE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
// Our special auto-detect hardware code which uses the VMT.
|
|
|
|
#define HARDWARE_AUTODETECT 2
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2015-01-13 03:50:46 +00:00
|
|
|
#if USE_VMT && !IN_DRIVER
|
2014-08-23 07:55:42 +00:00
|
|
|
// Multiple controllers the default is to hardware detect
|
2013-10-15 15:39:56 +00:00
|
|
|
#define HARDWARE_DEFAULT HARDWARE_AUTODETECT
|
|
|
|
#else
|
2015-01-13 03:50:46 +00:00
|
|
|
// The default is not to include code functions that aren't needed
|
2013-10-15 15:39:56 +00:00
|
|
|
#define HARDWARE_DEFAULT FALSE
|
|
|
|
#endif
|
|
|
|
|
2015-01-13 03:50:46 +00:00
|
|
|
//------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @name GDISP hardware accelerated support
|
|
|
|
* @{
|
|
|
|
*/
|
2014-09-13 04:50:32 +00:00
|
|
|
/**
|
|
|
|
* @brief The display hardware can benefit from being de-initialized when usage is complete.
|
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2014-09-13 04:50:32 +00:00
|
|
|
* @note This is most useful for displays such as remote network displays.
|
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_DEINIT
|
|
|
|
#define GDISP_HARDWARE_DEINIT HARDWARE_DEFAULT
|
|
|
|
#endif
|
|
|
|
|
2013-10-21 03:34:55 +00:00
|
|
|
/**
|
|
|
|
* @brief The display hardware can benefit from being flushed.
|
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-21 03:34:55 +00:00
|
|
|
* @note Some controllers ** require ** the application to flush
|
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_FLUSH
|
|
|
|
#define GDISP_HARDWARE_FLUSH HARDWARE_DEFAULT
|
|
|
|
#endif
|
|
|
|
|
2013-02-18 07:29:08 +00:00
|
|
|
/**
|
2013-10-12 03:24:40 +00:00
|
|
|
* @brief Hardware streaming writing is supported.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-15 15:39:56 +00:00
|
|
|
* @note Either GDISP_HARDWARE_STREAM_WRITE or GDISP_HARDWARE_DRAWPIXEL must be provided by each driver
|
2013-02-18 07:29:08 +00:00
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
#ifndef GDISP_HARDWARE_STREAM_WRITE
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_STREAM_WRITE HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief Hardware streaming reading of the display surface is supported.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-15 15:39:56 +00:00
|
|
|
*
|
2013-10-12 03:24:40 +00:00
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_STREAM_READ
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_STREAM_READ HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief Hardware supports setting the cursor position within the stream window.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
* @note This is used to optimise setting of individual pixels within a stream window.
|
|
|
|
* It should therefore not be implemented unless it is cheaper than just setting
|
|
|
|
* a new window.
|
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_STREAM_POS
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_STREAM_POS HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-10-02 06:29:02 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief Hardware accelerated draw pixel.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
* @note Either GDISP_HARDWARE_STREAM_WRITE or GDISP_HARDWARE_DRAWPIXEL must be provided by the driver
|
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_DRAWPIXEL
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_DRAWPIXEL HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief Hardware accelerated screen clears.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
* @note This clears the entire display surface regardless of the clipping area currently set
|
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_CLEARS
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_CLEARS HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief Hardware accelerated rectangular fills.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_FILLS
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_FILLS HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief Hardware accelerated fills from an image.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_BITFILLS
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_BITFILLS HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief Hardware accelerated scrolling.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_SCROLL
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_SCROLL HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief Reading back of pixel values.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_PIXELREAD
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_PIXELREAD HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief The driver supports one or more control commands.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_CONTROL
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_CONTROL HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief The driver supports a non-standard query.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_QUERY
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_QUERY HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
/**
|
|
|
|
* @brief The driver supports a clipping in hardware.
|
2013-10-15 15:39:56 +00:00
|
|
|
* @details Can be set to TRUE, FALSE or HARDWARE_AUTODETECT
|
|
|
|
*
|
2014-09-16 22:43:11 +00:00
|
|
|
* @note HARDWARE_AUTODETECT is only meaningful when GDISP_DRIVER_LIST is defined
|
2013-10-12 03:24:40 +00:00
|
|
|
* @note If this is defined the driver must perform its own clipping on all calls to
|
|
|
|
* the driver and respond appropriately if a parameter is outside the display area.
|
|
|
|
* @note If this is not defined then the software ensures that all calls to the
|
|
|
|
* driver do not exceed the display area (provided GDISP_NEED_CLIP or GDISP_NEED_VALIDATION
|
|
|
|
* has been set).
|
|
|
|
*/
|
|
|
|
#ifndef GDISP_HARDWARE_CLIP
|
2013-10-15 15:39:56 +00:00
|
|
|
#define GDISP_HARDWARE_CLIP HARDWARE_DEFAULT
|
2013-10-12 03:24:40 +00:00
|
|
|
#endif
|
|
|
|
/** @} */
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2015-01-13 03:50:46 +00:00
|
|
|
//------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// For pixmaps certain routines MUST not be FALSE as they are needed for pixmap drawing
|
|
|
|
// Similarly some routines MUST not be TRUE as pixmap's don't provide them.
|
|
|
|
#if GDISP_NEED_PIXMAP && !IN_DRIVER
|
|
|
|
#if !GDISP_HARDWARE_DEINIT
|
|
|
|
#undef GDISP_HARDWARE_DEINIT
|
|
|
|
#define GDISP_HARDWARE_DEINIT HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if !GDISP_HARDWARE_DRAWPIXEL
|
|
|
|
#undef GDISP_HARDWARE_DRAWPIXEL
|
|
|
|
#define GDISP_HARDWARE_DRAWPIXEL HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if !GDISP_HARDWARE_PIXELREAD
|
|
|
|
#undef GDISP_HARDWARE_PIXELREAD
|
|
|
|
#define GDISP_HARDWARE_PIXELREAD HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if !GDISP_HARDWARE_CONTROL
|
|
|
|
#undef GDISP_HARDWARE_CONTROL
|
|
|
|
#define GDISP_HARDWARE_CONTROL HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_FLUSH == TRUE
|
|
|
|
#undef GDISP_HARDWARE_FLUSH
|
|
|
|
#define GDISP_HARDWARE_FLUSH HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_STREAM_WRITE == TRUE
|
|
|
|
#undef GDISP_HARDWARE_STREAM_WRITE
|
|
|
|
#define GDISP_HARDWARE_STREAM_WRITE HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_STREAM_READ == TRUE
|
|
|
|
#undef GDISP_HARDWARE_STREAM_READ
|
|
|
|
#define GDISP_HARDWARE_STREAM_READ HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_CLEARS == TRUE
|
|
|
|
#undef GDISP_HARDWARE_CLEARS
|
|
|
|
#define GDISP_HARDWARE_CLEARS HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_FILLS == TRUE
|
|
|
|
#undef GDISP_HARDWARE_FILLS
|
|
|
|
#define GDISP_HARDWARE_FILLS HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_BITFILLS == TRUE
|
|
|
|
#undef GDISP_HARDWARE_BITFILLS
|
|
|
|
#define GDISP_HARDWARE_BITFILLS HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_SCROLL == TRUE
|
|
|
|
#undef GDISP_HARDWARE_SCROLL
|
|
|
|
#define GDISP_HARDWARE_SCROLL HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_QUERY == TRUE
|
|
|
|
#undef GDISP_HARDWARE_QUERY
|
|
|
|
#define GDISP_HARDWARE_QUERY HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#if GDISP_HARDWARE_CLIP == TRUE
|
|
|
|
#undef GDISP_HARDWARE_CLIP
|
|
|
|
#define GDISP_HARDWARE_CLIP HARDWARE_AUTODETECT
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------------------------------------
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
/* Verify information for packed pixels and define a non-packed pixel macro */
|
|
|
|
#if !GDISP_PACKED_PIXELS
|
|
|
|
#define gdispPackPixels(buf,cx,x,y,c) { ((color_t *)(buf))[(y)*(cx)+(x)] = (c); }
|
|
|
|
#elif !GDISP_HARDWARE_BITFILLS
|
|
|
|
#error "GDISP: packed pixel formats are only supported for hardware accelerated drivers."
|
|
|
|
#elif GDISP_PIXELFORMAT != GDISP_PIXELFORMAT_RGB888 \
|
|
|
|
&& GDISP_PIXELFORMAT != GDISP_PIXELFORMAT_RGB444 \
|
|
|
|
&& GDISP_PIXELFORMAT != GDISP_PIXELFORMAT_RGB666 \
|
|
|
|
&& GDISP_PIXELFORMAT != GDISP_PIXELFORMAT_CUSTOM
|
|
|
|
#error "GDISP: A packed pixel format has been specified for an unsupported pixel format."
|
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
/* Support routine for packed pixel formats */
|
|
|
|
#if !defined(gdispPackPixels) || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief Pack a pixel into a pixel buffer.
|
|
|
|
* @note This function performs no buffer boundary checking
|
|
|
|
* regardless of whether GDISP_NEED_CLIP has been specified.
|
|
|
|
*
|
|
|
|
* @param[in] buf The buffer to put the pixel in
|
|
|
|
* @param[in] cx The width of a pixel line
|
|
|
|
* @param[in] x, y The location of the pixel to place
|
|
|
|
* @param[in] color The color to put into the buffer
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
*/
|
|
|
|
void gdispPackPixels(const pixel_t *buf, coord_t cx, coord_t x, coord_t y, color_t color);
|
|
|
|
#endif
|
|
|
|
|
2015-01-13 03:50:46 +00:00
|
|
|
//------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
struct GDisplay {
|
|
|
|
struct GDriver d; // This must be the first element
|
2014-09-13 04:50:32 +00:00
|
|
|
#define gvmt(g) ((const GDISPVMT const *)((g)->d.vmt)) // For ease of access to the vmt member
|
2014-08-23 07:55:42 +00:00
|
|
|
|
|
|
|
struct GDISPControl {
|
|
|
|
coord_t Width;
|
|
|
|
coord_t Height;
|
|
|
|
orientation_t Orientation;
|
|
|
|
powermode_t Powermode;
|
|
|
|
uint8_t Backlight;
|
|
|
|
uint8_t Contrast;
|
|
|
|
} g;
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-10-12 03:24:40 +00:00
|
|
|
void * priv; // A private area just for the drivers use.
|
2013-10-21 05:13:10 +00:00
|
|
|
void * board; // A private area just for the board interfaces use.
|
2013-10-12 03:24:40 +00:00
|
|
|
|
2013-10-19 05:36:05 +00:00
|
|
|
uint8_t systemdisplay;
|
|
|
|
uint8_t controllerdisplay;
|
2013-09-18 13:46:37 +00:00
|
|
|
uint16_t flags;
|
2013-10-02 06:29:02 +00:00
|
|
|
#define GDISP_FLG_INSTREAM 0x0001 // We are in a user based stream operation
|
|
|
|
#define GDISP_FLG_SCRSTREAM 0x0002 // The stream area currently covers the whole screen
|
|
|
|
#define GDISP_FLG_DRIVER 0x0004 // This flags and above are for use by the driver
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2013-09-06 02:29:06 +00:00
|
|
|
// Multithread Mutex
|
|
|
|
#if GDISP_NEED_MULTITHREAD
|
2013-09-18 13:46:37 +00:00
|
|
|
gfxMutex mutex;
|
2013-02-18 07:29:08 +00:00
|
|
|
#endif
|
|
|
|
|
2013-09-06 02:29:06 +00:00
|
|
|
// Software clipping
|
2013-10-15 15:39:56 +00:00
|
|
|
#if GDISP_HARDWARE_CLIP != TRUE && (GDISP_NEED_CLIP || GDISP_NEED_VALIDATION)
|
2013-09-18 13:46:37 +00:00
|
|
|
coord_t clipx0, clipy0;
|
|
|
|
coord_t clipx1, clipy1; /* not inclusive */
|
2013-02-18 07:29:08 +00:00
|
|
|
#endif
|
|
|
|
|
2013-09-06 02:29:06 +00:00
|
|
|
// Driver call parameters
|
|
|
|
struct {
|
|
|
|
coord_t x, y;
|
|
|
|
coord_t cx, cy;
|
|
|
|
coord_t x1, y1;
|
|
|
|
coord_t x2, y2;
|
|
|
|
color_t color;
|
|
|
|
void *ptr;
|
|
|
|
} p;
|
|
|
|
|
2013-09-18 13:46:37 +00:00
|
|
|
// In call working buffers
|
|
|
|
|
2013-02-18 07:29:08 +00:00
|
|
|
#if GDISP_NEED_TEXT
|
2013-09-18 13:46:37 +00:00
|
|
|
// Text rendering parameters
|
2013-09-06 02:29:06 +00:00
|
|
|
struct {
|
|
|
|
font_t font;
|
|
|
|
color_t color;
|
|
|
|
color_t bgcolor;
|
|
|
|
coord_t clipx0, clipy0;
|
|
|
|
coord_t clipx1, clipy1;
|
|
|
|
} t;
|
2013-02-18 07:29:08 +00:00
|
|
|
#endif
|
2013-09-29 14:05:07 +00:00
|
|
|
#if GDISP_LINEBUF_SIZE != 0 && ((GDISP_NEED_SCROLL && !GDISP_HARDWARE_SCROLL) || (!GDISP_HARDWARE_STREAM_WRITE && GDISP_HARDWARE_BITFILLS))
|
2013-09-18 13:46:37 +00:00
|
|
|
// A pixel line buffer
|
|
|
|
color_t linebuf[GDISP_LINEBUF_SIZE];
|
|
|
|
#endif
|
2013-10-17 04:56:11 +00:00
|
|
|
};
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
typedef struct GDISPVMT {
|
2014-09-16 23:34:08 +00:00
|
|
|
GDriverVMT d;
|
2015-01-13 04:28:56 +00:00
|
|
|
#define GDISP_VFLG_DYNAMICONLY 0x0001 // This display should never be statically initialised
|
|
|
|
#define GDISP_VFLG_PIXMAP 0x0002 // This is a pixmap display
|
2014-08-23 07:55:42 +00:00
|
|
|
bool_t (*init)(GDisplay *g);
|
2014-09-13 04:50:32 +00:00
|
|
|
void (*deinit)(GDisplay *g);
|
2014-08-23 07:55:42 +00:00
|
|
|
void (*writestart)(GDisplay *g); // Uses p.x,p.y p.cx,p.cy
|
|
|
|
void (*writepos)(GDisplay *g); // Uses p.x,p.y
|
|
|
|
void (*writecolor)(GDisplay *g); // Uses p.color
|
|
|
|
void (*writestop)(GDisplay *g); // Uses no parameters
|
|
|
|
void (*readstart)(GDisplay *g); // Uses p.x,p.y p.cx,p.cy
|
|
|
|
color_t (*readcolor)(GDisplay *g); // Uses no parameters
|
|
|
|
void (*readstop)(GDisplay *g); // Uses no parameters
|
|
|
|
void (*pixel)(GDisplay *g); // Uses p.x,p.y p.color
|
|
|
|
void (*clear)(GDisplay *g); // Uses p.color
|
|
|
|
void (*fill)(GDisplay *g); // Uses p.x,p.y p.cx,p.cy p.color
|
|
|
|
void (*blit)(GDisplay *g); // Uses p.x,p.y p.cx,p.cy p.x1,p.y1 (=srcx,srcy) p.x2 (=srccx), p.ptr (=buffer)
|
|
|
|
color_t (*get)(GDisplay *g); // Uses p.x,p.y
|
|
|
|
void (*vscroll)(GDisplay *g); // Uses p.x,p.y p.cx,p.cy, p.y1 (=lines) p.color
|
|
|
|
void (*control)(GDisplay *g); // Uses p.x (=what) p.ptr (=value)
|
|
|
|
void *(*query)(GDisplay *g); // Uses p.x (=what);
|
|
|
|
void (*setclip)(GDisplay *g); // Uses p.x,p.y p.cx,p.cy
|
|
|
|
void (*flush)(GDisplay *g); // Uses no parameters
|
|
|
|
} GDISPVMT;
|
|
|
|
|
2015-01-13 03:50:46 +00:00
|
|
|
//------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
// Do we need function definitions or macro's (via the VMT)
|
2015-01-13 03:50:46 +00:00
|
|
|
#if IN_DRIVER || !USE_VMT || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-08-23 07:55:42 +00:00
|
|
|
// Should the driver routines should be static or not
|
2015-01-13 03:50:46 +00:00
|
|
|
#if USE_VMT
|
2014-09-16 22:43:11 +00:00
|
|
|
#define LLDSPEC static
|
2014-08-23 07:55:42 +00:00
|
|
|
#else
|
2014-09-16 22:43:11 +00:00
|
|
|
#define LLDSPEC
|
2014-08-23 07:55:42 +00:00
|
|
|
#endif
|
|
|
|
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Initialize the driver.
|
|
|
|
* @return TRUE if successful.
|
2015-01-13 03:50:46 +00:00
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[out] g->g The driver must fill in the GDISPControl structure
|
2013-09-18 13:46:37 +00:00
|
|
|
*/
|
2013-10-19 05:36:05 +00:00
|
|
|
LLDSPEC bool_t gdisp_lld_init(GDisplay *g);
|
2013-02-18 07:29:08 +00:00
|
|
|
|
2014-09-13 04:50:32 +00:00
|
|
|
#if GDISP_HARDWARE_DEINIT || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief The driver is being de-initialized
|
|
|
|
* @pre GDISP_HARDWARE_FLUSH is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
LLDSPEC void gdisp_lld_deinit(GDisplay *g);
|
|
|
|
#endif
|
|
|
|
|
2013-10-21 03:34:55 +00:00
|
|
|
#if GDISP_HARDWARE_FLUSH || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief Flush the current drawing operations to the display
|
|
|
|
* @pre GDISP_HARDWARE_FLUSH is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
|
|
|
LLDSPEC void gdisp_lld_flush(GDisplay *g);
|
|
|
|
#endif
|
|
|
|
|
2013-09-29 14:05:07 +00:00
|
|
|
#if GDISP_HARDWARE_STREAM_WRITE || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
2013-09-29 14:05:07 +00:00
|
|
|
* @brief Start a streamed write operation
|
|
|
|
* @pre GDISP_HARDWARE_STREAM_WRITE is TRUE
|
2013-09-18 13:46:37 +00:00
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
2013-11-10 20:30:56 +00:00
|
|
|
*
|
|
|
|
* @note g->p.x,g->p.y The window position
|
|
|
|
* @note g->p.cx,g->p.cy The window size
|
2013-09-18 13:46:37 +00:00
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
* @note Streaming operations that wrap the defined window have
|
|
|
|
* undefined results.
|
2013-10-02 06:29:02 +00:00
|
|
|
* @note This must be followed by a call to @p gdisp_lld_write_pos() if GDISP_HARDWARE_STREAM_POS is TRUE.
|
2013-09-18 13:46:37 +00:00
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_write_start(GDisplay *g);
|
2013-09-29 14:05:07 +00:00
|
|
|
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Send a pixel to the current streaming position and then increment that position
|
2013-09-29 14:05:07 +00:00
|
|
|
* @pre GDISP_HARDWARE_STREAM_WRITE is TRUE
|
2013-09-18 13:46:37 +00:00
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
*
|
2013-11-10 20:30:56 +00:00
|
|
|
* @note g->p.color The color to display at the curent position
|
2013-09-18 13:46:37 +00:00
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_write_color(GDisplay *g);
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-29 14:05:07 +00:00
|
|
|
/**
|
|
|
|
* @brief End the current streaming write operation
|
|
|
|
* @pre GDISP_HARDWARE_STREAM_WRITE is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_write_stop(GDisplay *g);
|
2013-10-02 06:29:02 +00:00
|
|
|
|
|
|
|
#if GDISP_HARDWARE_STREAM_POS || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief Change the current position within the current streaming window
|
|
|
|
* @pre GDISP_HARDWARE_STREAM_POS is TRUE and GDISP_HARDWARE_STREAM_WRITE is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x,g->p.y The new position (which will always be within the existing stream window)
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_write_pos(GDisplay *g);
|
2013-10-02 06:29:02 +00:00
|
|
|
#endif
|
2013-02-18 07:29:08 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-29 14:05:07 +00:00
|
|
|
#if GDISP_HARDWARE_STREAM_READ || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief Start a streamed read operation
|
|
|
|
* @pre GDISP_HARDWARE_STREAM_READ is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x,g->p.y The window position
|
|
|
|
* @param[in] g->p.cx,g->p.cy The window size
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
* @note Streaming operations that wrap the defined window have
|
|
|
|
* undefined results.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_read_start(GDisplay *g);
|
2013-09-29 14:05:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Read a pixel from the current streaming position and then increment that position
|
|
|
|
* @return The color at the current position
|
|
|
|
* @pre GDISP_HARDWARE_STREAM_READ is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC color_t gdisp_lld_read_color(GDisplay *g);
|
2013-09-29 14:05:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief End the current streaming operation
|
|
|
|
* @pre GDISP_HARDWARE_STREAM_READ is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_read_stop(GDisplay *g);
|
2013-09-29 14:05:07 +00:00
|
|
|
#endif
|
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if GDISP_HARDWARE_DRAWPIXEL || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Draw a pixel
|
|
|
|
* @pre GDISP_HARDWARE_DRAWPIXEL is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x,g->p.y The pixel position
|
|
|
|
* @param[in] g->p.color The color to set
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_draw_pixel(GDisplay *g);
|
2013-03-10 06:14:32 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if GDISP_HARDWARE_CLEARS || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Clear the screen using the defined color
|
|
|
|
* @pre GDISP_HARDWARE_CLEARS is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.color The color to set
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_clear(GDisplay *g);
|
2013-02-18 07:29:08 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if GDISP_HARDWARE_FILLS || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Fill an area with a single color
|
|
|
|
* @pre GDISP_HARDWARE_FILLS is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x,g->p.y The area position
|
|
|
|
* @param[in] g->p.cx,g->p.cy The area size
|
|
|
|
* @param[in] g->p.color The color to set
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_fill_area(GDisplay *g);
|
2013-09-06 02:29:06 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if GDISP_HARDWARE_BITFILLS || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Fill an area using a bitmap
|
|
|
|
* @pre GDISP_HARDWARE_BITFILLS is TRUE
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x,g->p.y The area position
|
|
|
|
* @param[in] g->p.cx,g->p.cy The area size
|
|
|
|
* @param[in] g->p.x1,g->p.y1 The starting position in the bitmap
|
|
|
|
* @param[in] g->p.x2 The width of a bitmap line
|
|
|
|
* @param[in] g->p.ptr The pointer to the bitmap
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_blit_area(GDisplay *g);
|
2013-09-06 02:29:06 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if GDISP_HARDWARE_PIXELREAD || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Read a pixel from the display
|
|
|
|
* @return The color at the defined position
|
|
|
|
* @pre GDISP_HARDWARE_PIXELREAD is TRUE (and the application needs it)
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x,g->p.y The pixel position
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC color_t gdisp_lld_get_pixel_color(GDisplay *g);
|
2013-09-06 02:29:06 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if (GDISP_HARDWARE_SCROLL && GDISP_NEED_SCROLL) || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Scroll an area of the screen
|
|
|
|
* @pre GDISP_HARDWARE_SCROLL is TRUE (and the application needs it)
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x,g->p.y The area position
|
|
|
|
* @param[in] g->p.cx,g->p.cy The area size
|
|
|
|
* @param[in] g->p.y1 The number of lines to scroll (positive or negative)
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
* @note This can be easily implemented if the hardware supports
|
|
|
|
* display area to display area copying.
|
|
|
|
* @note Clearing the exposed area on the scroll operation is not
|
|
|
|
* needed as the high level code handles this.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_vertical_scroll(GDisplay *g);
|
2013-09-06 02:29:06 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if (GDISP_HARDWARE_CONTROL && GDISP_NEED_CONTROL) || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Control some feature of the hardware
|
|
|
|
* @pre GDISP_HARDWARE_CONTROL is TRUE (and the application needs it)
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x The operation to perform
|
|
|
|
* @param[in] g->p.ptr The operation parameter
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void gdisp_lld_control(GDisplay *g);
|
2013-09-06 02:29:06 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if (GDISP_HARDWARE_QUERY && GDISP_NEED_QUERY) || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Query some feature of the hardware
|
|
|
|
* @return The information requested (typecast as void *)
|
|
|
|
* @pre GDISP_HARDWARE_QUERY is TRUE (and the application needs it)
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x What to query
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
2013-10-12 03:24:40 +00:00
|
|
|
LLDSPEC void *gdisp_lld_query(GDisplay *g); // Uses p.x (=what);
|
2013-09-06 02:29:06 +00:00
|
|
|
#endif
|
2013-09-18 13:46:37 +00:00
|
|
|
|
2013-09-24 06:10:15 +00:00
|
|
|
#if (GDISP_HARDWARE_CLIP && (GDISP_NEED_CLIP || GDISP_NEED_VALIDATION)) || defined(__DOXYGEN__)
|
2013-09-18 13:46:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Set the hardware clipping area
|
|
|
|
* @pre GDISP_HARDWARE_CLIP is TRUE (and the application needs it)
|
|
|
|
*
|
|
|
|
* @param[in] g The driver structure
|
|
|
|
* @param[in] g->p.x,g->p.y The area position
|
|
|
|
* @param[in] g->p.cx,g->p.cy The area size
|
|
|
|
*
|
|
|
|
* @note The parameter variables must not be altered by the driver.
|
|
|
|
*/
|
|