mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
9f8d4fe94e
The PL110, Integrator and Versatile boards strongly prefer to use 16 BPP even if other modes are supported, both to keep down memory consumption and also to easier find a good match to supported resolutions with consideration taken to the memory bandwidth of the platforms. Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20180302090948.6399-2-linus.walleij@linaro.org Link: https://patchwork.freedesktop.org/patch/msgid/20180307084316.23623-1-linus.walleij@linaro.org Link: https://patchwork.freedesktop.org/patch/msgid/20180307084316.23623-1-linus.walleij@linaro.org
88 lines
2.5 KiB
C
88 lines
2.5 KiB
C
/*
|
|
*
|
|
* (C) COPYRIGHT 2012-2013 ARM Limited. All rights reserved.
|
|
*
|
|
*
|
|
* Parts of this file were based on sources as follows:
|
|
*
|
|
* Copyright (c) 2006-2008 Intel Corporation
|
|
* Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
|
|
* Copyright (C) 2011 Texas Instruments
|
|
*
|
|
* This program is free software and is provided to you under the terms of the
|
|
* GNU General Public License version 2 as published by the Free Software
|
|
* Foundation, and any use by you of this program is subject to the terms of
|
|
* such GNU licence.
|
|
*
|
|
*/
|
|
|
|
#ifndef _PL111_DRM_H_
|
|
#define _PL111_DRM_H_
|
|
|
|
#include <drm/drm_gem.h>
|
|
#include <drm/drm_simple_kms_helper.h>
|
|
#include <drm/drm_connector.h>
|
|
#include <drm/drm_encoder.h>
|
|
#include <drm/drm_panel.h>
|
|
#include <drm/drm_bridge.h>
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/interrupt.h>
|
|
|
|
#define CLCD_IRQ_NEXTBASE_UPDATE BIT(2)
|
|
|
|
struct drm_minor;
|
|
|
|
/**
|
|
* struct pl111_variant_data - encodes IP differences
|
|
* @name: the name of this variant
|
|
* @is_pl110: this is the early PL110 variant
|
|
* @external_bgr: this is the Versatile Pl110 variant with external
|
|
* BGR/RGB routing
|
|
* @broken_clockdivider: the clock divider is broken and we need to
|
|
* use the supplied clock directly
|
|
* @broken_vblank: the vblank IRQ is broken on this variant
|
|
* @formats: array of supported pixel formats on this variant
|
|
* @nformats: the length of the array of supported pixel formats
|
|
* @fb_bpp: desired bits per pixel on the default framebuffer
|
|
*/
|
|
struct pl111_variant_data {
|
|
const char *name;
|
|
bool is_pl110;
|
|
bool external_bgr;
|
|
bool broken_clockdivider;
|
|
bool broken_vblank;
|
|
const u32 *formats;
|
|
unsigned int nformats;
|
|
unsigned int fb_bpp;
|
|
};
|
|
|
|
struct pl111_drm_dev_private {
|
|
struct drm_device *drm;
|
|
|
|
struct drm_connector *connector;
|
|
struct drm_panel *panel;
|
|
struct drm_bridge *bridge;
|
|
struct drm_simple_display_pipe pipe;
|
|
|
|
void *regs;
|
|
u32 ienb;
|
|
u32 ctrl;
|
|
/* The pixel clock (a reference to our clock divider off of CLCDCLK). */
|
|
struct clk *clk;
|
|
/* pl111's internal clock divider. */
|
|
struct clk_hw clk_div;
|
|
/* Lock to sync access to CLCD_TIM2 between the common clock
|
|
* subsystem and pl111_display_enable().
|
|
*/
|
|
spinlock_t tim2_lock;
|
|
const struct pl111_variant_data *variant;
|
|
void (*variant_display_enable) (struct drm_device *drm, u32 format);
|
|
void (*variant_display_disable) (struct drm_device *drm);
|
|
};
|
|
|
|
int pl111_display_init(struct drm_device *dev);
|
|
irqreturn_t pl111_irq(int irq, void *data);
|
|
int pl111_debugfs_init(struct drm_minor *minor);
|
|
|
|
#endif /* _PL111_DRM_H_ */
|