drm/nouveau: rename nvd0_display to nv50_display to reflect reality since merge
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
Родитель
4f6029da58
Коммит
e225f446a0
|
@ -201,7 +201,7 @@ nouveau-y += nv04_dac.o nv04_dfp.o nv04_tv.o nv17_tv.o nv17_tv_modes.o
|
|||
nouveau-y += nv04_crtc.o nv04_display.o nv04_cursor.o
|
||||
|
||||
# drm/kms/nv50-
|
||||
nouveau-y += nvd0_display.o
|
||||
nouveau-y += nv50_display.o
|
||||
|
||||
# drm/pm
|
||||
nouveau-y += nouveau_pm.o nouveau_volt.o nouveau_perf.o
|
||||
|
|
|
@ -82,13 +82,6 @@ static inline struct drm_crtc *to_drm_crtc(struct nouveau_crtc *crtc)
|
|||
return &crtc->base;
|
||||
}
|
||||
|
||||
int nv50_crtc_create(struct drm_device *dev, int index);
|
||||
int nv50_crtc_cursor_set(struct drm_crtc *drm_crtc, struct drm_file *file_priv,
|
||||
uint32_t buffer_handle, uint32_t width,
|
||||
uint32_t height);
|
||||
int nv50_crtc_cursor_move(struct drm_crtc *drm_crtc, int x, int y);
|
||||
|
||||
int nv04_cursor_init(struct nouveau_crtc *);
|
||||
int nv50_cursor_init(struct nouveau_crtc *);
|
||||
|
||||
#endif /* __NOUVEAU_CRTC_H__ */
|
||||
|
|
|
@ -366,7 +366,7 @@ nouveau_display_create(struct drm_device *dev)
|
|||
if (nv_device(drm->device)->card_type < NV_50)
|
||||
ret = nv04_display_create(dev);
|
||||
else
|
||||
ret = nvd0_display_create(dev);
|
||||
ret = nv50_display_create(dev);
|
||||
if (ret)
|
||||
goto disp_create_err;
|
||||
|
||||
|
@ -657,7 +657,7 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
|
|||
|
||||
/* Emit a page flip */
|
||||
if (nv_device(drm->device)->card_type >= NV_50) {
|
||||
ret = nvd0_display_flip_next(crtc, fb, chan, 0);
|
||||
ret = nv50_display_flip_next(crtc, fb, chan, 0);
|
||||
if (ret) {
|
||||
mutex_unlock(&chan->cli->mutex);
|
||||
goto fail_unreserve;
|
||||
|
|
|
@ -97,9 +97,5 @@ void nouveau_dp_dpms(struct drm_encoder *, int mode, u32 datarate,
|
|||
|
||||
struct nouveau_connector *
|
||||
nouveau_encoder_connector_get(struct nouveau_encoder *encoder);
|
||||
int nv50_sor_create(struct drm_connector *, struct dcb_output *);
|
||||
void nv50_sor_dp_calc_tu(struct drm_device *, int, int, u32, u32);
|
||||
int nv50_dac_create(struct drm_connector *, struct dcb_output *);
|
||||
|
||||
|
||||
#endif /* __NOUVEAU_ENCODER_H__ */
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -31,15 +31,15 @@
|
|||
#include "nouveau_crtc.h"
|
||||
#include "nouveau_reg.h"
|
||||
|
||||
int nvd0_display_create(struct drm_device *);
|
||||
void nvd0_display_destroy(struct drm_device *);
|
||||
int nvd0_display_init(struct drm_device *);
|
||||
void nvd0_display_fini(struct drm_device *);
|
||||
int nv50_display_create(struct drm_device *);
|
||||
void nv50_display_destroy(struct drm_device *);
|
||||
int nv50_display_init(struct drm_device *);
|
||||
void nv50_display_fini(struct drm_device *);
|
||||
|
||||
void nvd0_display_flip_stop(struct drm_crtc *);
|
||||
int nvd0_display_flip_next(struct drm_crtc *, struct drm_framebuffer *,
|
||||
void nv50_display_flip_stop(struct drm_crtc *);
|
||||
int nv50_display_flip_next(struct drm_crtc *, struct drm_framebuffer *,
|
||||
struct nouveau_channel *, u32 swap_interval);
|
||||
|
||||
struct nouveau_bo *nvd0_display_crtc_sema(struct drm_device *, int head);
|
||||
struct nouveau_bo *nv50_display_crtc_sema(struct drm_device *, int head);
|
||||
|
||||
#endif /* __NV50_DISPLAY_H__ */
|
||||
|
|
|
@ -70,7 +70,7 @@ nv50_fence_context_new(struct nouveau_channel *chan)
|
|||
|
||||
/* dma objects for display sync channel semaphore blocks */
|
||||
for (i = 0; !ret && i < dev->mode_config.num_crtc; i++) {
|
||||
struct nouveau_bo *bo = nvd0_display_crtc_sema(dev, i);
|
||||
struct nouveau_bo *bo = nv50_display_crtc_sema(dev, i);
|
||||
|
||||
ret = nouveau_object_new(nv_object(chan->cli), chan->handle,
|
||||
NvEvoSema0 + i, 0x003d,
|
||||
|
|
|
@ -127,7 +127,7 @@ nv84_fence_context_new(struct nouveau_channel *chan)
|
|||
|
||||
/* dma objects for display sync channel semaphore blocks */
|
||||
for (i = 0; !ret && i < dev->mode_config.num_crtc; i++) {
|
||||
struct nouveau_bo *bo = nvd0_display_crtc_sema(dev, i);
|
||||
struct nouveau_bo *bo = nv50_display_crtc_sema(dev, i);
|
||||
|
||||
ret = nouveau_object_new(nv_object(chan->cli), chan->handle,
|
||||
NvEvoSema0 + i, 0x003d,
|
||||
|
|
|
@ -115,7 +115,7 @@ nvc0_fence_context_del(struct nouveau_channel *chan)
|
|||
int i;
|
||||
|
||||
for (i = 0; i < dev->mode_config.num_crtc; i++) {
|
||||
struct nouveau_bo *bo = nvd0_display_crtc_sema(dev, i);
|
||||
struct nouveau_bo *bo = nv50_display_crtc_sema(dev, i);
|
||||
nouveau_bo_vma_del(bo, &fctx->dispc_vma[i]);
|
||||
}
|
||||
|
||||
|
@ -146,7 +146,7 @@ nvc0_fence_context_new(struct nouveau_channel *chan)
|
|||
|
||||
/* map display semaphore buffers into channel's vm */
|
||||
for (i = 0; !ret && i < chan->drm->dev->mode_config.num_crtc; i++) {
|
||||
struct nouveau_bo *bo = nvd0_display_crtc_sema(chan->drm->dev, i);
|
||||
struct nouveau_bo *bo = nv50_display_crtc_sema(chan->drm->dev, i);
|
||||
ret = nouveau_bo_vma_add(bo, client->vm, &fctx->dispc_vma[i]);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче