blob: 973554d8a7a607299ff90e0a54390d20018a3742 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
2 * Copyright (C) 2008 Maarten Maathuis.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 */
26
27#ifndef __NV50_DISPLAY_H__
28#define __NV50_DISPLAY_H__
29
Ben Skeggs77145f12012-07-31 16:16:21 +100030#include "nouveau_display.h"
Ben Skeggs6ee73862009-12-11 19:24:15 +100031#include "nouveau_crtc.h"
Ben Skeggs77145f12012-07-31 16:16:21 +100032#include "nouveau_reg.h"
Ben Skeggs6ee73862009-12-11 19:24:15 +100033#include "nv50_evo.h"
34
Ben Skeggscdccc702011-02-07 13:29:23 +100035struct nv50_display_crtc {
36 struct nouveau_channel *sync;
37 struct {
38 struct nouveau_bo *bo;
39 u32 offset;
40 u16 value;
41 } sem;
42};
43
Ben Skeggsef8389a2011-02-01 10:07:32 +100044struct nv50_display {
Ben Skeggs59c0f572011-02-01 10:24:41 +100045 struct nouveau_channel *master;
Ben Skeggsebb945a2012-07-20 08:17:34 +100046
47 struct nouveau_gpuobj *ramin;
48 u32 dmao;
49 u32 hash;
Ben Skeggsef8389a2011-02-01 10:07:32 +100050
Ben Skeggscdccc702011-02-07 13:29:23 +100051 struct nv50_display_crtc crtc[2];
52
Ben Skeggsf13e4352011-02-03 20:06:14 +100053 struct tasklet_struct tasklet;
Ben Skeggsef8389a2011-02-01 10:07:32 +100054 struct {
Ben Skeggscb75d972012-07-11 10:44:20 +100055 struct dcb_output *dcb;
Ben Skeggsef8389a2011-02-01 10:07:32 +100056 u16 script;
57 u32 pclk;
58 } irq;
59};
60
61static inline struct nv50_display *
62nv50_display(struct drm_device *dev)
63{
Ben Skeggs77145f12012-07-31 16:16:21 +100064 return nouveau_display(dev)->priv;
Ben Skeggsef8389a2011-02-01 10:07:32 +100065}
66
Francisco Jerezc88c2e02010-07-24 17:37:33 +020067int nv50_display_early_init(struct drm_device *dev);
68void nv50_display_late_takedown(struct drm_device *dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +100069int nv50_display_create(struct drm_device *dev);
Francisco Jerezc88c2e02010-07-24 17:37:33 +020070int nv50_display_init(struct drm_device *dev);
Ben Skeggs2a44e492011-11-09 11:36:33 +100071void nv50_display_fini(struct drm_device *dev);
Francisco Jerezc88c2e02010-07-24 17:37:33 +020072void nv50_display_destroy(struct drm_device *dev);
Ben Skeggs77145f12012-07-31 16:16:21 +100073void nv50_display_intr(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +100074int nv50_crtc_blank(struct nouveau_crtc *, bool blank);
75int nv50_crtc_set_clock(struct drm_device *, int head, int pclk);
76
Ben Skeggse495d0d2012-01-23 13:22:58 +100077u32 nv50_display_active_crtcs(struct drm_device *);
78
Ben Skeggse6e039d2011-10-14 14:35:19 +100079int nv50_display_sync(struct drm_device *);
Ben Skeggscdccc702011-02-07 13:29:23 +100080int nv50_display_flip_next(struct drm_crtc *, struct drm_framebuffer *,
81 struct nouveau_channel *chan);
82void nv50_display_flip_stop(struct drm_crtc *);
83
Ben Skeggs1772fcc2011-11-09 15:52:43 +100084int nv50_evo_create(struct drm_device *dev);
85void nv50_evo_destroy(struct drm_device *dev);
Ben Skeggs292deb72011-02-07 13:08:16 +100086int nv50_evo_init(struct drm_device *dev);
87void nv50_evo_fini(struct drm_device *dev);
88void nv50_evo_dmaobj_init(struct nouveau_gpuobj *, u32 memtype, u64 base,
89 u64 size);
90int nv50_evo_dmaobj_new(struct nouveau_channel *, u32 handle, u32 memtype,
91 u64 base, u64 size, struct nouveau_gpuobj **);
92
Ben Skeggs77145f12012-07-31 16:16:21 +100093int nvd0_display_create(struct drm_device *);
94void nvd0_display_destroy(struct drm_device *);
95int nvd0_display_init(struct drm_device *);
96void nvd0_display_fini(struct drm_device *);
97void nvd0_display_intr(struct drm_device *);
98
99void nvd0_display_flip_stop(struct drm_crtc *);
100int nvd0_display_flip_next(struct drm_crtc *, struct drm_framebuffer *,
101 struct nouveau_channel *, u32 swap_interval);
102
103struct nouveau_bo *nv50_display_crtc_sema(struct drm_device *, int head);
104struct nouveau_bo *nvd0_display_crtc_sema(struct drm_device *, int head);
105
Ben Skeggs6ee73862009-12-11 19:24:15 +1000106#endif /* __NV50_DISPLAY_H__ */