2008-11-27 23:56:45 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* graphics/nxbe/nxbe_colormap.c
|
|
|
|
*
|
2011-01-19 21:02:23 +01:00
|
|
|
* Copyright (C) 2008-2009,2011 Gregory Nutt. All rights reserved.
|
2012-09-13 20:32:24 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2008-11-27 23:56:45 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-15 19:12:29 +01:00
|
|
|
#include <stdint.h>
|
2008-11-30 19:52:14 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2008-11-27 23:56:45 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2013-03-09 22:12:20 +01:00
|
|
|
#include <nuttx/kmalloc.h>
|
|
|
|
|
2008-11-27 23:56:45 +01:00
|
|
|
#include "nxbe.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nxbe_colormap
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Set the harware color map to the palette expected by NX
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-09-01 15:04:09 +02:00
|
|
|
#ifdef CONFIG_FB_CMAP
|
2011-05-12 16:49:46 +02:00
|
|
|
int nxbe_colormap(FAR NX_DRIVERTYPE *dev)
|
2008-11-27 23:56:45 +01:00
|
|
|
{
|
2008-11-30 19:52:14 +01:00
|
|
|
struct fb_cmap_s cmap;
|
2015-10-08 17:10:22 +02:00
|
|
|
FAR uint8_t *alloc;
|
|
|
|
FAR uint8_t *red;
|
|
|
|
FAR uint8_t *green;
|
|
|
|
FAR uint8_t *blue;
|
2009-12-15 19:12:29 +01:00
|
|
|
uint8_t rval;
|
|
|
|
uint8_t gval;
|
2008-11-27 23:56:45 +01:00
|
|
|
int size;
|
|
|
|
int ndx;
|
|
|
|
int ret;
|
2015-10-08 17:10:22 +02:00
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
int k;
|
2008-11-27 23:56:45 +01:00
|
|
|
|
2011-10-06 18:31:13 +02:00
|
|
|
/* Allocate the color map tables in one allocation:
|
|
|
|
*
|
|
|
|
* size = 3 colors x CONFIG_NX_COLORS each x 8-bits per color
|
|
|
|
*/
|
2008-11-27 23:56:45 +01:00
|
|
|
|
2011-10-06 18:31:13 +02:00
|
|
|
size = 3 * CONFIG_NX_NCOLORS * sizeof(uint8_t);
|
2015-10-08 17:10:22 +02:00
|
|
|
alloc = (FAR uint8_t *)kmm_malloc(size);
|
2011-01-19 21:02:23 +01:00
|
|
|
if (alloc == NULL)
|
2008-11-27 23:56:45 +01:00
|
|
|
{
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2013-03-09 22:12:20 +01:00
|
|
|
|
2008-11-27 23:56:45 +01:00
|
|
|
memset(alloc, 0xff, size);
|
|
|
|
|
2011-10-06 18:31:13 +02:00
|
|
|
/* Then get pointers to each color table */
|
|
|
|
|
2008-11-27 23:56:45 +01:00
|
|
|
red = alloc;
|
2008-11-30 19:52:14 +01:00
|
|
|
green = &alloc[CONFIG_NX_NCOLORS];
|
|
|
|
blue = &alloc[2*CONFIG_NX_NCOLORS];
|
2008-11-27 23:56:45 +01:00
|
|
|
|
|
|
|
/* Initialize the color map tables. 6*6*6 = 216, the rest
|
2011-10-06 18:31:13 +02:00
|
|
|
* are (0xff, 0xfff 0xff)
|
2008-11-27 23:56:45 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
ndx = 0;
|
|
|
|
for (i = 0; i < 6; i++)
|
|
|
|
{
|
2008-11-30 19:52:14 +01:00
|
|
|
rval = (i * (CONFIG_NX_NCOLORS-1) / 5) << 8;
|
2008-11-27 23:56:45 +01:00
|
|
|
for (j = 0; j < 6; j++)
|
|
|
|
{
|
2008-11-30 19:52:14 +01:00
|
|
|
gval = (j * (CONFIG_NX_NCOLORS-1) / 5) << 8;
|
2008-11-27 23:56:45 +01:00
|
|
|
for (k = 0; k < 6; k++)
|
|
|
|
{
|
|
|
|
red[ndx] = rval;
|
|
|
|
green[ndx] = gval;
|
2008-11-30 19:52:14 +01:00
|
|
|
blue[ndx] = k * (CONFIG_NX_NCOLORS-1) / 5;
|
2008-11-27 23:56:45 +01:00
|
|
|
ndx++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now configure the cmap structure */
|
|
|
|
|
2011-10-06 18:31:13 +02:00
|
|
|
cmap.first = 0;
|
2008-11-30 19:52:14 +01:00
|
|
|
cmap.len = CONFIG_NX_NCOLORS;
|
2008-11-27 23:56:45 +01:00
|
|
|
cmap.red = red;
|
|
|
|
cmap.green = green;
|
|
|
|
cmap.blue = blue;
|
|
|
|
#ifdef CONFIG_FB_TRANSPARENCY
|
|
|
|
cmap.transp = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Then set the color map */
|
|
|
|
|
2010-04-17 05:08:30 +02:00
|
|
|
ret = dev->putcmap(dev, &cmap);
|
2008-11-27 23:56:45 +01:00
|
|
|
|
2014-09-01 01:04:02 +02:00
|
|
|
kmm_free(alloc);
|
2008-11-27 23:56:45 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|