diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2012-10-28 23:36:45 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2012-11-28 18:57:41 -0500 |
commit | 94e5c39bad56a7b097d3b168b90a72cc1633c8f1 (patch) | |
tree | f79e437346eb238f73f70514432c23bb1a0eb179 | |
parent | dd0e3d53f06710e008507ce97f21d9420b245ce7 (diff) |
drm/nouveau/drm/nvd0/disp: display->disp
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/nvd0_display.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/gpu/drm/nouveau/nvd0_display.c b/drivers/gpu/drm/nouveau/nvd0_display.c index 79d3bc0256b7..98765d4eccf1 100644 --- a/drivers/gpu/drm/nouveau/nvd0_display.c +++ b/drivers/gpu/drm/nouveau/nvd0_display.c | |||
@@ -66,7 +66,7 @@ struct evo { | |||
66 | } sem; | 66 | } sem; |
67 | }; | 67 | }; |
68 | 68 | ||
69 | struct nvd0_display { | 69 | struct nvd0_disp { |
70 | struct nouveau_gpuobj *mem; | 70 | struct nouveau_gpuobj *mem; |
71 | struct nouveau_bo *sync; | 71 | struct nouveau_bo *sync; |
72 | struct evo evo[9]; | 72 | struct evo evo[9]; |
@@ -79,8 +79,8 @@ struct nvd0_head { | |||
79 | struct nouveau_crtc base; | 79 | struct nouveau_crtc base; |
80 | }; | 80 | }; |
81 | 81 | ||
82 | static struct nvd0_display * | 82 | static struct nvd0_disp * |
83 | nvd0_display(struct drm_device *dev) | 83 | nvd0_disp(struct drm_device *dev) |
84 | { | 84 | { |
85 | return nouveau_display(dev)->priv; | 85 | return nouveau_display(dev)->priv; |
86 | } | 86 | } |
@@ -113,7 +113,7 @@ evo_wait(struct drm_device *dev, int id, int nr) | |||
113 | { | 113 | { |
114 | struct nouveau_device *device = nouveau_dev(dev); | 114 | struct nouveau_device *device = nouveau_dev(dev); |
115 | struct nouveau_drm *drm = nouveau_drm(dev); | 115 | struct nouveau_drm *drm = nouveau_drm(dev); |
116 | struct nvd0_display *disp = nvd0_display(dev); | 116 | struct nvd0_disp *disp = nvd0_disp(dev); |
117 | u32 put = nv_rd32(device, 0x640000 + (id * 0x1000)) / 4; | 117 | u32 put = nv_rd32(device, 0x640000 + (id * 0x1000)) / 4; |
118 | 118 | ||
119 | if (put + nr >= (PAGE_SIZE / 4)) { | 119 | if (put + nr >= (PAGE_SIZE / 4)) { |
@@ -135,7 +135,7 @@ static void | |||
135 | evo_kick(u32 *push, struct drm_device *dev, int id) | 135 | evo_kick(u32 *push, struct drm_device *dev, int id) |
136 | { | 136 | { |
137 | struct nouveau_device *device = nouveau_dev(dev); | 137 | struct nouveau_device *device = nouveau_dev(dev); |
138 | struct nvd0_display *disp = nvd0_display(dev); | 138 | struct nvd0_disp *disp = nvd0_disp(dev); |
139 | 139 | ||
140 | nv_wr32(device, 0x640000 + (id * 0x1000), (push - disp->evo[id].ptr) << 2); | 140 | nv_wr32(device, 0x640000 + (id * 0x1000), (push - disp->evo[id].ptr) << 2); |
141 | } | 141 | } |
@@ -148,7 +148,7 @@ evo_init_dma(struct drm_device *dev, int ch) | |||
148 | { | 148 | { |
149 | struct nouveau_device *device = nouveau_dev(dev); | 149 | struct nouveau_device *device = nouveau_dev(dev); |
150 | struct nouveau_drm *drm = nouveau_drm(dev); | 150 | struct nouveau_drm *drm = nouveau_drm(dev); |
151 | struct nvd0_display *disp = nvd0_display(dev); | 151 | struct nvd0_disp *disp = nvd0_disp(dev); |
152 | u32 flags; | 152 | u32 flags; |
153 | 153 | ||
154 | flags = 0x00000000; | 154 | flags = 0x00000000; |
@@ -237,7 +237,7 @@ static int | |||
237 | evo_sync(struct drm_device *dev, int ch) | 237 | evo_sync(struct drm_device *dev, int ch) |
238 | { | 238 | { |
239 | struct nouveau_device *device = nouveau_dev(dev); | 239 | struct nouveau_device *device = nouveau_dev(dev); |
240 | struct nvd0_display *disp = nvd0_display(dev); | 240 | struct nvd0_disp *disp = nvd0_disp(dev); |
241 | u32 *push = evo_wait(dev, ch, 8); | 241 | u32 *push = evo_wait(dev, ch, 8); |
242 | if (push) { | 242 | if (push) { |
243 | nouveau_bo_wr32(disp->sync, EVO_MAST_NTFY, 0x00000000); | 243 | nouveau_bo_wr32(disp->sync, EVO_MAST_NTFY, 0x00000000); |
@@ -260,13 +260,13 @@ evo_sync(struct drm_device *dev, int ch) | |||
260 | struct nouveau_bo * | 260 | struct nouveau_bo * |
261 | nvd0_display_crtc_sema(struct drm_device *dev, int crtc) | 261 | nvd0_display_crtc_sema(struct drm_device *dev, int crtc) |
262 | { | 262 | { |
263 | return nvd0_display(dev)->sync; | 263 | return nvd0_disp(dev)->sync; |
264 | } | 264 | } |
265 | 265 | ||
266 | void | 266 | void |
267 | nvd0_display_flip_stop(struct drm_crtc *crtc) | 267 | nvd0_display_flip_stop(struct drm_crtc *crtc) |
268 | { | 268 | { |
269 | struct nvd0_display *disp = nvd0_display(crtc->dev); | 269 | struct nvd0_disp *disp = nvd0_disp(crtc->dev); |
270 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); | 270 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
271 | struct evo *evo = &disp->evo[EVO_FLIP(nv_crtc->index)]; | 271 | struct evo *evo = &disp->evo[EVO_FLIP(nv_crtc->index)]; |
272 | u32 *push; | 272 | u32 *push; |
@@ -290,7 +290,7 @@ nvd0_display_flip_next(struct drm_crtc *crtc, struct drm_framebuffer *fb, | |||
290 | struct nouveau_channel *chan, u32 swap_interval) | 290 | struct nouveau_channel *chan, u32 swap_interval) |
291 | { | 291 | { |
292 | struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb); | 292 | struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb); |
293 | struct nvd0_display *disp = nvd0_display(crtc->dev); | 293 | struct nvd0_disp *disp = nvd0_disp(crtc->dev); |
294 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); | 294 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
295 | struct evo *evo = &disp->evo[EVO_FLIP(nv_crtc->index)]; | 295 | struct evo *evo = &disp->evo[EVO_FLIP(nv_crtc->index)]; |
296 | u64 offset; | 296 | u64 offset; |
@@ -1784,7 +1784,7 @@ nvd0_display_bh(unsigned long data) | |||
1784 | struct drm_device *dev = (struct drm_device *)data; | 1784 | struct drm_device *dev = (struct drm_device *)data; |
1785 | struct nouveau_device *device = nouveau_dev(dev); | 1785 | struct nouveau_device *device = nouveau_dev(dev); |
1786 | struct nouveau_drm *drm = nouveau_drm(dev); | 1786 | struct nouveau_drm *drm = nouveau_drm(dev); |
1787 | struct nvd0_display *disp = nvd0_display(dev); | 1787 | struct nvd0_disp *disp = nvd0_disp(dev); |
1788 | u32 mask = 0, crtc = ~0; | 1788 | u32 mask = 0, crtc = ~0; |
1789 | int i; | 1789 | int i; |
1790 | 1790 | ||
@@ -1815,7 +1815,7 @@ nvd0_display_bh(unsigned long data) | |||
1815 | void | 1815 | void |
1816 | nvd0_display_intr(struct drm_device *dev) | 1816 | nvd0_display_intr(struct drm_device *dev) |
1817 | { | 1817 | { |
1818 | struct nvd0_display *disp = nvd0_display(dev); | 1818 | struct nvd0_disp *disp = nvd0_disp(dev); |
1819 | struct nouveau_device *device = nouveau_dev(dev); | 1819 | struct nouveau_device *device = nouveau_dev(dev); |
1820 | struct nouveau_drm *drm = nouveau_drm(dev); | 1820 | struct nouveau_drm *drm = nouveau_drm(dev); |
1821 | u32 intr = nv_rd32(device, 0x610088); | 1821 | u32 intr = nv_rd32(device, 0x610088); |
@@ -1891,7 +1891,7 @@ nvd0_display_fini(struct drm_device *dev) | |||
1891 | int | 1891 | int |
1892 | nvd0_display_init(struct drm_device *dev) | 1892 | nvd0_display_init(struct drm_device *dev) |
1893 | { | 1893 | { |
1894 | struct nvd0_display *disp = nvd0_display(dev); | 1894 | struct nvd0_disp *disp = nvd0_disp(dev); |
1895 | struct nouveau_device *device = nouveau_dev(dev); | 1895 | struct nouveau_device *device = nouveau_dev(dev); |
1896 | struct nouveau_drm *drm = nouveau_drm(dev); | 1896 | struct nouveau_drm *drm = nouveau_drm(dev); |
1897 | int ret, i; | 1897 | int ret, i; |
@@ -1971,7 +1971,7 @@ error: | |||
1971 | void | 1971 | void |
1972 | nvd0_display_destroy(struct drm_device *dev) | 1972 | nvd0_display_destroy(struct drm_device *dev) |
1973 | { | 1973 | { |
1974 | struct nvd0_display *disp = nvd0_display(dev); | 1974 | struct nvd0_disp *disp = nvd0_disp(dev); |
1975 | struct pci_dev *pdev = dev->pdev; | 1975 | struct pci_dev *pdev = dev->pdev; |
1976 | int i; | 1976 | int i; |
1977 | 1977 | ||
@@ -1998,7 +1998,7 @@ nvd0_display_create(struct drm_device *dev) | |||
1998 | struct dcb_table *dcb = &drm->vbios.dcb; | 1998 | struct dcb_table *dcb = &drm->vbios.dcb; |
1999 | struct drm_connector *connector, *tmp; | 1999 | struct drm_connector *connector, *tmp; |
2000 | struct pci_dev *pdev = dev->pdev; | 2000 | struct pci_dev *pdev = dev->pdev; |
2001 | struct nvd0_display *disp; | 2001 | struct nvd0_disp *disp; |
2002 | struct dcb_output *dcbe; | 2002 | struct dcb_output *dcbe; |
2003 | int crtcs, ret, i; | 2003 | int crtcs, ret, i; |
2004 | 2004 | ||