Commit 484512df authored by Peter Rosin's avatar Peter Rosin Committed by Daniel Vetter

drm: cirrus: remove dead code and pointless local lut storage

The redundant fb helpers .load_lut, .gamma_set and .gamma_get are
no longer used. Remove the dead code and hook up the crtc .gamma_set
to use the crtc gamma_store directly instead of duplicating that
info locally.
Acked-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: default avatarPeter Rosin <peda@axentia.se>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20170713162538.22788-8-peda@axentia.se
parent 3bffd962
...@@ -96,7 +96,6 @@ ...@@ -96,7 +96,6 @@
struct cirrus_crtc { struct cirrus_crtc {
struct drm_crtc base; struct drm_crtc base;
u8 lut_r[256], lut_g[256], lut_b[256];
int last_dpms; int last_dpms;
bool enabled; bool enabled;
}; };
...@@ -180,13 +179,6 @@ cirrus_bo(struct ttm_buffer_object *bo) ...@@ -180,13 +179,6 @@ cirrus_bo(struct ttm_buffer_object *bo)
#define to_cirrus_obj(x) container_of(x, struct cirrus_gem_object, base) #define to_cirrus_obj(x) container_of(x, struct cirrus_gem_object, base)
#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT) #define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
/* cirrus_mode.c */
void cirrus_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
u16 blue, int regno);
void cirrus_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
u16 *blue, int regno);
/* cirrus_main.c */ /* cirrus_main.c */
int cirrus_device_init(struct cirrus_device *cdev, int cirrus_device_init(struct cirrus_device *cdev,
struct drm_device *ddev, struct drm_device *ddev,
......
...@@ -264,8 +264,6 @@ static int cirrus_fbdev_destroy(struct drm_device *dev, ...@@ -264,8 +264,6 @@ static int cirrus_fbdev_destroy(struct drm_device *dev,
} }
static const struct drm_fb_helper_funcs cirrus_fb_helper_funcs = { static const struct drm_fb_helper_funcs cirrus_fb_helper_funcs = {
.gamma_set = cirrus_crtc_fb_gamma_set,
.gamma_get = cirrus_crtc_fb_gamma_get,
.fb_probe = cirrusfb_create, .fb_probe = cirrusfb_create,
}; };
......
...@@ -31,25 +31,6 @@ ...@@ -31,25 +31,6 @@
* This file contains setup code for the CRTC. * This file contains setup code for the CRTC.
*/ */
static void cirrus_crtc_load_lut(struct drm_crtc *crtc)
{
struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc);
struct drm_device *dev = crtc->dev;
struct cirrus_device *cdev = dev->dev_private;
int i;
if (!crtc->enabled)
return;
for (i = 0; i < CIRRUS_LUT_SIZE; i++) {
/* VGA registers */
WREG8(PALETTE_INDEX, i);
WREG8(PALETTE_DATA, cirrus_crtc->lut_r[i]);
WREG8(PALETTE_DATA, cirrus_crtc->lut_g[i]);
WREG8(PALETTE_DATA, cirrus_crtc->lut_b[i]);
}
}
/* /*
* The DRM core requires DPMS functions, but they make little sense in our * The DRM core requires DPMS functions, but they make little sense in our
* case and so are just stubs * case and so are just stubs
...@@ -330,15 +311,25 @@ static int cirrus_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, ...@@ -330,15 +311,25 @@ static int cirrus_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
u16 *blue, uint32_t size, u16 *blue, uint32_t size,
struct drm_modeset_acquire_ctx *ctx) struct drm_modeset_acquire_ctx *ctx)
{ {
struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc); struct drm_device *dev = crtc->dev;
struct cirrus_device *cdev = dev->dev_private;
u16 *r, *g, *b;
int i; int i;
for (i = 0; i < size; i++) { if (!crtc->enabled)
cirrus_crtc->lut_r[i] = red[i]; return 0;
cirrus_crtc->lut_g[i] = green[i];
cirrus_crtc->lut_b[i] = blue[i]; r = crtc->gamma_store;
g = r + crtc->gamma_size;
b = g + crtc->gamma_size;
for (i = 0; i < CIRRUS_LUT_SIZE; i++) {
/* VGA registers */
WREG8(PALETTE_INDEX, i);
WREG8(PALETTE_DATA, *r++ >> 8);
WREG8(PALETTE_DATA, *g++ >> 8);
WREG8(PALETTE_DATA, *b++ >> 8);
} }
cirrus_crtc_load_lut(crtc);
return 0; return 0;
} }
...@@ -365,7 +356,6 @@ static const struct drm_crtc_helper_funcs cirrus_helper_funcs = { ...@@ -365,7 +356,6 @@ static const struct drm_crtc_helper_funcs cirrus_helper_funcs = {
.mode_set_base = cirrus_crtc_mode_set_base, .mode_set_base = cirrus_crtc_mode_set_base,
.prepare = cirrus_crtc_prepare, .prepare = cirrus_crtc_prepare,
.commit = cirrus_crtc_commit, .commit = cirrus_crtc_commit,
.load_lut = cirrus_crtc_load_lut,
}; };
/* CRTC setup */ /* CRTC setup */
...@@ -373,7 +363,6 @@ static void cirrus_crtc_init(struct drm_device *dev) ...@@ -373,7 +363,6 @@ static void cirrus_crtc_init(struct drm_device *dev)
{ {
struct cirrus_device *cdev = dev->dev_private; struct cirrus_device *cdev = dev->dev_private;
struct cirrus_crtc *cirrus_crtc; struct cirrus_crtc *cirrus_crtc;
int i;
cirrus_crtc = kzalloc(sizeof(struct cirrus_crtc) + cirrus_crtc = kzalloc(sizeof(struct cirrus_crtc) +
(CIRRUSFB_CONN_LIMIT * sizeof(struct drm_connector *)), (CIRRUSFB_CONN_LIMIT * sizeof(struct drm_connector *)),
...@@ -387,37 +376,9 @@ static void cirrus_crtc_init(struct drm_device *dev) ...@@ -387,37 +376,9 @@ static void cirrus_crtc_init(struct drm_device *dev)
drm_mode_crtc_set_gamma_size(&cirrus_crtc->base, CIRRUS_LUT_SIZE); drm_mode_crtc_set_gamma_size(&cirrus_crtc->base, CIRRUS_LUT_SIZE);
cdev->mode_info.crtc = cirrus_crtc; cdev->mode_info.crtc = cirrus_crtc;
for (i = 0; i < CIRRUS_LUT_SIZE; i++) {
cirrus_crtc->lut_r[i] = i;
cirrus_crtc->lut_g[i] = i;
cirrus_crtc->lut_b[i] = i;
}
drm_crtc_helper_add(&cirrus_crtc->base, &cirrus_helper_funcs); drm_crtc_helper_add(&cirrus_crtc->base, &cirrus_helper_funcs);
} }
/** Sets the color ramps on behalf of fbcon */
void cirrus_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
u16 blue, int regno)
{
struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc);
cirrus_crtc->lut_r[regno] = red;
cirrus_crtc->lut_g[regno] = green;
cirrus_crtc->lut_b[regno] = blue;
}
/** Gets the color ramps on behalf of fbcon */
void cirrus_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
u16 *blue, int regno)
{
struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc);
*red = cirrus_crtc->lut_r[regno];
*green = cirrus_crtc->lut_g[regno];
*blue = cirrus_crtc->lut_b[regno];
}
static void cirrus_encoder_mode_set(struct drm_encoder *encoder, static void cirrus_encoder_mode_set(struct drm_encoder *encoder,
struct drm_display_mode *mode, struct drm_display_mode *mode,
struct drm_display_mode *adjusted_mode) struct drm_display_mode *adjusted_mode)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment