drm/nouveau/clk: rename from clock (no binary change)
authorBen Skeggs <bskeggs@redhat.com>
Tue, 13 Jan 2015 13:37:38 +0000 (23:37 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Thu, 22 Jan 2015 02:17:42 +0000 (12:17 +1000)
commitf3867f439fd610db0cbcf1bb739001e95b7b25c6
treec3421012674292cf01d94f66c14e72d9272ad424
parentc39f472e9f14e49a9bc091977ced0ec45fc00c57
drm/nouveau/clk: rename from clock (no binary change)

Rename to match the Linux subsystem responsible for the same kind of
things.  Will be investigating how feasible it will be to expose the
GPU clock trees with it at some point.

The namespace of NVKM is being changed to nvkm_ instead of nouveau_,
which will be used for the DRM part of the driver.  This is being
done in order to make it very clear as to what part of the driver a
given symbol belongs to, and as a minor step towards splitting the
DRM driver out to be able to stand on its own (for virt).

Because there's already a large amount of churn here anyway, this is
as good a time as any to also switch to NVIDIA's device and chipset
naming to ease collaboration with them.

A comparison of objdump disassemblies proves no code changes.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
60 files changed:
drivers/gpu/drm/nouveau/dispnv04/crtc.c
drivers/gpu/drm/nouveau/dispnv04/hw.c
drivers/gpu/drm/nouveau/include/nvif/device.h
drivers/gpu/drm/nouveau/include/nvkm/core/device.h
drivers/gpu/drm/nouveau/include/nvkm/subdev/clk.h [new file with mode: 0644]
drivers/gpu/drm/nouveau/include/nvkm/subdev/clock.h [deleted file]
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
drivers/gpu/drm/nouveau/nvkm/engine/device/ctrl.c
drivers/gpu/drm/nouveau/nvkm/engine/device/gm100.c
drivers/gpu/drm/nouveau/nvkm/engine/device/nv04.c
drivers/gpu/drm/nouveau/nvkm/engine/device/nv10.c
drivers/gpu/drm/nouveau/nvkm/engine/device/nv20.c
drivers/gpu/drm/nouveau/nvkm/engine/device/nv30.c
drivers/gpu/drm/nouveau/nvkm/engine/device/nv40.c
drivers/gpu/drm/nouveau/nvkm/engine/device/nv50.c
drivers/gpu/drm/nouveau/nvkm/engine/device/nvc0.c
drivers/gpu/drm/nouveau/nvkm/engine/device/nve0.c
drivers/gpu/drm/nouveau/nvkm/engine/perfmon/base.c
drivers/gpu/drm/nouveau/nvkm/subdev/Kbuild
drivers/gpu/drm/nouveau/nvkm/subdev/clk/Kbuild [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/base.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/gk20a.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv04.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv40.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv50.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv50.h [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv84.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nva3.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nva3.h [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nvaa.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nvc0.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/nve0.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/pll.h [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/pllnv04.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/pllnva3.c [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clk/seq.h [new file with mode: 0644]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/Kbuild [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/base.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/gk20a.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nv04.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nv40.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nv50.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nv50.h [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nv84.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nva3.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nva3.h [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nvaa.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nvc0.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/nve0.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/pll.h [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/pllnv04.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/pllnva3.c [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/clock/seq.h [deleted file]
drivers/gpu/drm/nouveau/nvkm/subdev/devinit/priv.h
drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv40.c
drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv50.c
drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnva3.c
drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnvc0.c
drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnve0.c
drivers/gpu/drm/nouveau/nvkm/subdev/pwr/gk20a.c