mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 02:01:05 +07:00
83af0a483a
Make sti driver use register callback to move debugfs initialization out of sub-components creation. This will allow to convert driver .load() to drm_dev_alloc() and drm_dev_register(). sti_compositor bring up 2 crtc but only one debugfs init is needed so use drm_crtc_index to do it on the first one. This can't be done in sti_drv because only sti_compositor have access to the devices. It is almost the same for sti_encoder which handle multiple encoder while one only debugfs entry is needed so add a boolean to avoid multiple debugfs initialization Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1466514580-15194-3-git-send-email-benjamin.gaignard@linaro.org
88 lines
2.1 KiB
C
88 lines
2.1 KiB
C
/*
|
|
* Copyright (C) STMicroelectronics SA 2014
|
|
* Authors: Benjamin Gaignard <benjamin.gaignard@st.com>
|
|
* Fabien Dessenne <fabien.dessenne@st.com>
|
|
* for STMicroelectronics.
|
|
* License terms: GNU General Public License (GPL), version 2
|
|
*/
|
|
|
|
#ifndef _STI_COMPOSITOR_H_
|
|
#define _STI_COMPOSITOR_H_
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/kernel.h>
|
|
|
|
#include "sti_mixer.h"
|
|
#include "sti_plane.h"
|
|
|
|
#define WAIT_NEXT_VSYNC_MS 50 /*ms*/
|
|
|
|
#define STI_MAX_MIXER 2
|
|
#define STI_MAX_VID 1
|
|
|
|
enum sti_compositor_subdev_type {
|
|
STI_MIXER_MAIN_SUBDEV,
|
|
STI_MIXER_AUX_SUBDEV,
|
|
STI_GPD_SUBDEV,
|
|
STI_VID_SUBDEV,
|
|
STI_CURSOR_SUBDEV,
|
|
};
|
|
|
|
struct sti_compositor_subdev_descriptor {
|
|
enum sti_compositor_subdev_type type;
|
|
int id;
|
|
unsigned int offset;
|
|
};
|
|
|
|
/**
|
|
* STI Compositor data structure
|
|
*
|
|
* @nb_subdev: number of subdevices supported by the compositor
|
|
* @subdev_desc: subdev list description
|
|
*/
|
|
#define MAX_SUBDEV 9
|
|
struct sti_compositor_data {
|
|
unsigned int nb_subdev;
|
|
struct sti_compositor_subdev_descriptor subdev_desc[MAX_SUBDEV];
|
|
};
|
|
|
|
/**
|
|
* STI Compositor structure
|
|
*
|
|
* @dev: driver device
|
|
* @regs: registers (main)
|
|
* @data: device data
|
|
* @clk_compo_main: clock for main compo
|
|
* @clk_compo_aux: clock for aux compo
|
|
* @clk_pix_main: pixel clock for main path
|
|
* @clk_pix_aux: pixel clock for aux path
|
|
* @rst_main: reset control of the main path
|
|
* @rst_aux: reset control of the aux path
|
|
* @mixer: array of mixers
|
|
* @vid: array of vids
|
|
* @vtg_main: vtg for main data path
|
|
* @vtg_aux: vtg for auxillary data path
|
|
* @vtg_vblank_nb: callback for VTG VSYNC notification
|
|
*/
|
|
struct sti_compositor {
|
|
struct device *dev;
|
|
void __iomem *regs;
|
|
struct sti_compositor_data data;
|
|
struct clk *clk_compo_main;
|
|
struct clk *clk_compo_aux;
|
|
struct clk *clk_pix_main;
|
|
struct clk *clk_pix_aux;
|
|
struct reset_control *rst_main;
|
|
struct reset_control *rst_aux;
|
|
struct sti_mixer *mixer[STI_MAX_MIXER];
|
|
struct sti_vid *vid[STI_MAX_VID];
|
|
struct sti_vtg *vtg_main;
|
|
struct sti_vtg *vtg_aux;
|
|
struct notifier_block vtg_vblank_nb;
|
|
};
|
|
|
|
int sti_compositor_debufs_init(struct sti_compositor *compo,
|
|
struct drm_minor *minor);
|
|
|
|
#endif
|