/* * rcar_du_vsp.h -- R-Car Display Unit VSP-Based Compositor * * Copyright (C) 2015 Renesas Electronics Corporation * * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #ifndef __RCAR_DU_VSP_H__ #define __RCAR_DU_VSP_H__ #include <drm/drmP.h> #include <drm/drm_crtc.h> struct rcar_du_format_info; struct rcar_du_vsp; struct rcar_du_vsp_plane { struct drm_plane plane; struct rcar_du_vsp *vsp; unsigned int index; }; struct rcar_du_vsp { unsigned int index; struct device *vsp; struct rcar_du_device *dev; struct rcar_du_vsp_plane *planes; unsigned int num_planes; };
static inline struct rcar_du_vsp_plane *to_rcar_vsp_plane(struct drm_plane *p) { return container_of(p, struct rcar_du_vsp_plane, plane); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 258 | 100.00% | 2 | 100.00% |
Total | 258 | 100.00% | 2 | 100.00% |