Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) STMicroelectronics SA 2014 |
| 3 | * Authors: Benjamin Gaignard <benjamin.gaignard@st.com> |
| 4 | * Fabien Dessenne <fabien.dessenne@st.com> |
| 5 | * for STMicroelectronics. |
| 6 | * License terms: GNU General Public License (GPL), version 2 |
| 7 | */ |
| 8 | |
| 9 | #ifndef _STI_MIXER_H_ |
| 10 | #define _STI_MIXER_H_ |
| 11 | |
| 12 | #include <drm/drmP.h> |
| 13 | |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame^] | 14 | #include "sti_plane.h" |
Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 15 | |
| 16 | #define to_sti_mixer(x) container_of(x, struct sti_mixer, drm_crtc) |
| 17 | |
| 18 | /** |
| 19 | * STI Mixer subdevice structure |
| 20 | * |
| 21 | * @dev: driver device |
| 22 | * @regs: mixer registers |
| 23 | * @id: id of the mixer |
| 24 | * @drm_crtc: crtc object link to the mixer |
| 25 | * @pending_event: set if a flip event is pending on crtc |
Benjamin Gaignard | 5e03abc | 2014-12-08 17:32:36 +0100 | [diff] [blame] | 26 | * @enabled: to know if the mixer is active or not |
Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 27 | */ |
| 28 | struct sti_mixer { |
| 29 | struct device *dev; |
| 30 | void __iomem *regs; |
| 31 | int id; |
Vincent Abriou | 871bcdf | 2015-07-31 11:32:13 +0200 | [diff] [blame] | 32 | struct drm_crtc drm_crtc; |
Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 33 | struct drm_pending_vblank_event *pending_event; |
Benjamin Gaignard | 5e03abc | 2014-12-08 17:32:36 +0100 | [diff] [blame] | 34 | bool enabled; |
Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | const char *sti_mixer_to_str(struct sti_mixer *mixer); |
| 38 | |
| 39 | struct sti_mixer *sti_mixer_create(struct device *dev, int id, |
Vincent Abriou | 871bcdf | 2015-07-31 11:32:13 +0200 | [diff] [blame] | 40 | void __iomem *baseaddr); |
Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 41 | |
Vincent Abriou | 871bcdf | 2015-07-31 11:32:13 +0200 | [diff] [blame] | 42 | int sti_mixer_set_plane_status(struct sti_mixer *mixer, |
| 43 | struct sti_plane *plane, bool status); |
| 44 | void sti_mixer_clear_all_planes(struct sti_mixer *mixer); |
| 45 | int sti_mixer_set_plane_depth(struct sti_mixer *mixer, struct sti_plane *plane); |
Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 46 | int sti_mixer_active_video_area(struct sti_mixer *mixer, |
Vincent Abriou | 871bcdf | 2015-07-31 11:32:13 +0200 | [diff] [blame] | 47 | struct drm_display_mode *mode); |
Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 48 | |
| 49 | void sti_mixer_set_background_status(struct sti_mixer *mixer, bool enable); |
| 50 | |
| 51 | /* depth in Cross-bar control = z order */ |
Vincent Abriou | bf60b29 | 2015-07-31 11:31:38 +0200 | [diff] [blame] | 52 | #define GAM_MIXER_NB_DEPTH_LEVEL 6 |
Benjamin Gaignard | e21e2193 | 2014-07-28 10:30:18 +0200 | [diff] [blame] | 53 | |
| 54 | #define STI_MIXER_MAIN 0 |
| 55 | #define STI_MIXER_AUX 1 |
| 56 | |
| 57 | #endif |