2008-11-28 06:56:45 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* graphics/nxbe/nxbe_colormap.c
|
|
|
|
*
|
2024-09-10 15:30:58 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
2021-02-05 18:12:53 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2008-11-28 06:56:45 +08:00
|
|
|
*
|
2021-02-05 18:12:53 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-11-28 06:56:45 +08:00
|
|
|
*
|
2021-02-05 18:12:53 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2008-11-28 06:56:45 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-16 02:12:29 +08:00
|
|
|
#include <stdint.h>
|
2008-12-01 02:52:14 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2008-11-28 06:56:45 +08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2013-03-10 05:12:20 +08:00
|
|
|
#include <nuttx/kmalloc.h>
|
|
|
|
|
2008-11-28 06:56:45 +08:00
|
|
|
#include "nxbe.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nxbe_colormap
|
|
|
|
*
|
|
|
|
* Description:
|
2019-09-18 00:46:23 +08:00
|
|
|
* Set the hardware color map to the palette expected by NX
|
2008-11-28 06:56:45 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-09-01 21:04:09 +08:00
|
|
|
#ifdef CONFIG_FB_CMAP
|
2011-05-12 22:49:46 +08:00
|
|
|
int nxbe_colormap(FAR NX_DRIVERTYPE *dev)
|
2008-11-28 06:56:45 +08:00
|
|
|
{
|
2008-12-01 02:52:14 +08:00
|
|
|
struct fb_cmap_s cmap;
|
2015-10-08 23:10:22 +08:00
|
|
|
FAR uint8_t *alloc;
|
|
|
|
FAR uint8_t *red;
|
|
|
|
FAR uint8_t *green;
|
|
|
|
FAR uint8_t *blue;
|
2009-12-16 02:12:29 +08:00
|
|
|
uint8_t rval;
|
|
|
|
uint8_t gval;
|
2008-11-28 06:56:45 +08:00
|
|
|
int size;
|
|
|
|
int ndx;
|
|
|
|
int ret;
|
2015-10-08 23:10:22 +08:00
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
int k;
|
2008-11-28 06:56:45 +08:00
|
|
|
|
2011-10-07 00:31:13 +08:00
|
|
|
/* Allocate the color map tables in one allocation:
|
|
|
|
*
|
|
|
|
* size = 3 colors x CONFIG_NX_COLORS each x 8-bits per color
|
|
|
|
*/
|
2008-11-28 06:56:45 +08:00
|
|
|
|
2011-10-07 00:31:13 +08:00
|
|
|
size = 3 * CONFIG_NX_NCOLORS * sizeof(uint8_t);
|
2023-08-28 15:39:47 +08:00
|
|
|
alloc = kmm_malloc(size);
|
2011-01-20 04:02:23 +08:00
|
|
|
if (alloc == NULL)
|
2008-11-28 06:56:45 +08:00
|
|
|
{
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2013-03-10 05:12:20 +08:00
|
|
|
|
2008-11-28 06:56:45 +08:00
|
|
|
memset(alloc, 0xff, size);
|
|
|
|
|
2011-10-07 00:31:13 +08:00
|
|
|
/* Then get pointers to each color table */
|
|
|
|
|
2008-11-28 06:56:45 +08:00
|
|
|
red = alloc;
|
2008-12-01 02:52:14 +08:00
|
|
|
green = &alloc[CONFIG_NX_NCOLORS];
|
|
|
|
blue = &alloc[2*CONFIG_NX_NCOLORS];
|
2008-11-28 06:56:45 +08:00
|
|
|
|
|
|
|
/* Initialize the color map tables. 6*6*6 = 216, the rest
|
2011-10-07 00:31:13 +08:00
|
|
|
* are (0xff, 0xfff 0xff)
|
2008-11-28 06:56:45 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
ndx = 0;
|
|
|
|
for (i = 0; i < 6; i++)
|
|
|
|
{
|
2021-02-05 16:05:48 +08:00
|
|
|
rval = (i * (CONFIG_NX_NCOLORS - 1) / 5) << 8;
|
2008-11-28 06:56:45 +08:00
|
|
|
for (j = 0; j < 6; j++)
|
|
|
|
{
|
2021-02-05 16:05:48 +08:00
|
|
|
gval = (j * (CONFIG_NX_NCOLORS - 1) / 5) << 8;
|
2008-11-28 06:56:45 +08:00
|
|
|
for (k = 0; k < 6; k++)
|
|
|
|
{
|
|
|
|
red[ndx] = rval;
|
|
|
|
green[ndx] = gval;
|
2021-02-05 16:05:48 +08:00
|
|
|
blue[ndx] = k * (CONFIG_NX_NCOLORS - 1) / 5;
|
2008-11-28 06:56:45 +08:00
|
|
|
ndx++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now configure the cmap structure */
|
|
|
|
|
2011-10-07 00:31:13 +08:00
|
|
|
cmap.first = 0;
|
2008-12-01 02:52:14 +08:00
|
|
|
cmap.len = CONFIG_NX_NCOLORS;
|
2008-11-28 06:56:45 +08: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 11:08:30 +08:00
|
|
|
ret = dev->putcmap(dev, &cmap);
|
2008-11-28 06:56:45 +08:00
|
|
|
|
2014-09-01 07:04:02 +08:00
|
|
|
kmm_free(alloc);
|
2008-11-28 06:56:45 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|