pl111_drm.h 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 *
 * (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>
24 25 26 27
#include <drm/drm_connector.h>
#include <drm/drm_encoder.h>
#include <drm/drm_panel.h>
#include <drm/drm_bridge.h>
28
#include <linux/clk-provider.h>
29
#include <linux/interrupt.h>
30 31 32

#define CLCD_IRQ_NEXTBASE_UPDATE BIT(2)

33 34
struct drm_minor;

L
Linus Walleij 已提交
35 36 37 38
/**
 * struct pl111_variant_data - encodes IP differences
 * @name: the name of this variant
 * @is_pl110: this is the early PL110 variant
39
 * @is_lcdc: this is the ST Microelectronics Nomadik LCDC variant
40 41
 * @external_bgr: this is the Versatile Pl110 variant with external
 *	BGR/RGB routing
42 43
 * @broken_clockdivider: the clock divider is broken and we need to
 *	use the supplied clock directly
44
 * @broken_vblank: the vblank IRQ is broken on this variant
45 46
 * @st_bitmux_control: this variant is using the ST Micro bitmux
 *	extensions to the control register
L
Linus Walleij 已提交
47 48
 * @formats: array of supported pixel formats on this variant
 * @nformats: the length of the array of supported pixel formats
49
 * @fb_bpp: desired bits per pixel on the default framebuffer
L
Linus Walleij 已提交
50 51 52 53
 */
struct pl111_variant_data {
	const char *name;
	bool is_pl110;
54
	bool is_lcdc;
55
	bool external_bgr;
56
	bool broken_clockdivider;
57
	bool broken_vblank;
58
	bool st_bitmux_control;
L
Linus Walleij 已提交
59 60
	const u32 *formats;
	unsigned int nformats;
61
	unsigned int fb_bpp;
L
Linus Walleij 已提交
62 63
};

64 65 66
struct pl111_drm_dev_private {
	struct drm_device *drm;

67 68 69
	struct drm_connector *connector;
	struct drm_panel *panel;
	struct drm_bridge *bridge;
70 71 72
	struct drm_simple_display_pipe pipe;

	void *regs;
73
	u32 memory_bw;
L
Linus Walleij 已提交
74 75
	u32 ienb;
	u32 ctrl;
76
	/* The pixel clock (a reference to our clock divider off of CLCDCLK). */
77
	struct clk *clk;
78 79 80 81 82 83
	/* 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;
L
Linus Walleij 已提交
84
	const struct pl111_variant_data *variant;
85 86
	void (*variant_display_enable) (struct drm_device *drm, u32 format);
	void (*variant_display_disable) (struct drm_device *drm);
87
	bool use_device_memory;
88 89 90 91
};

int pl111_display_init(struct drm_device *dev);
irqreturn_t pl111_irq(int irq, void *data);
92
int pl111_debugfs_init(struct drm_minor *minor);
93 94

#endif /* _PL111_DRM_H_ */