mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 06:32:50 +00:00
38f993b7c5
The API is not suitable for subsystems consisting of multiple devices and requires severe hacks to use it. To mitigate this, this patch implements allocation and address space management locally by using helpers provided by DRM framework, like other DRM drivers do, e.g. Tegra. This patch should not introduce any functional changes until the driver is made to attach subdevices into an IOMMU domain with the generic IOMMU API, which will happen in following patch. Based heavily on GEM implementation of Tegra DRM driver. Signed-off-by: Tomasz Figa <tfiga@chromium.org> Signed-off-by: Shunqian Zheng <zhengsq@rock-chips.com> Signed-off-by: Mark Yao <mark.yao@rock-chips.com> Signed-off-by: rjan Eide <orjan.eide@arm.com>
83 lines
2.4 KiB
C
83 lines
2.4 KiB
C
/*
|
|
* Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
|
|
* Author:Mark Yao <mark.yao@rock-chips.com>
|
|
*
|
|
* based on exynos_drm_drv.h
|
|
*
|
|
* This software is licensed under the terms of the GNU General Public
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
* may be copied, distributed, and modified under those terms.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef _ROCKCHIP_DRM_DRV_H
|
|
#define _ROCKCHIP_DRM_DRV_H
|
|
|
|
#include <drm/drm_fb_helper.h>
|
|
#include <drm/drm_atomic_helper.h>
|
|
#include <drm/drm_gem.h>
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/component.h>
|
|
|
|
#define ROCKCHIP_MAX_FB_BUFFER 3
|
|
#define ROCKCHIP_MAX_CONNECTOR 2
|
|
#define ROCKCHIP_MAX_CRTC 2
|
|
|
|
struct drm_device;
|
|
struct drm_connector;
|
|
struct iommu_domain;
|
|
|
|
/*
|
|
* Rockchip drm private crtc funcs.
|
|
* @enable_vblank: enable crtc vblank irq.
|
|
* @disable_vblank: disable crtc vblank irq.
|
|
*/
|
|
struct rockchip_crtc_funcs {
|
|
int (*enable_vblank)(struct drm_crtc *crtc);
|
|
void (*disable_vblank)(struct drm_crtc *crtc);
|
|
};
|
|
|
|
struct rockchip_crtc_state {
|
|
struct drm_crtc_state base;
|
|
int output_type;
|
|
int output_mode;
|
|
};
|
|
#define to_rockchip_crtc_state(s) \
|
|
container_of(s, struct rockchip_crtc_state, base)
|
|
|
|
/*
|
|
* Rockchip drm private structure.
|
|
*
|
|
* @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
|
|
* @num_pipe: number of pipes for this device.
|
|
*/
|
|
struct rockchip_drm_private {
|
|
struct drm_fb_helper fbdev_helper;
|
|
struct drm_gem_object *fbdev_bo;
|
|
const struct rockchip_crtc_funcs *crtc_funcs[ROCKCHIP_MAX_CRTC];
|
|
struct drm_atomic_state *state;
|
|
struct iommu_domain *domain;
|
|
/* protect drm_mm on multi-threads */
|
|
struct mutex mm_lock;
|
|
struct drm_mm mm;
|
|
struct list_head psr_list;
|
|
spinlock_t psr_list_lock;
|
|
};
|
|
|
|
int rockchip_register_crtc_funcs(struct drm_crtc *crtc,
|
|
const struct rockchip_crtc_funcs *crtc_funcs);
|
|
void rockchip_unregister_crtc_funcs(struct drm_crtc *crtc);
|
|
int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
|
|
struct device *dev);
|
|
void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
|
|
struct device *dev);
|
|
int rockchip_drm_wait_line_flag(struct drm_crtc *crtc, unsigned int line_num,
|
|
unsigned int mstimeout);
|
|
|
|
#endif /* _ROCKCHIP_DRM_DRV_H_ */
|