Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-28 | drm/nouveau/device: simplify subdev construction | Ben Skeggs | 4 | -339/+218 | |
Replaces the piece-by-piece (in response to NV_DEVICE ctor args) device contruction with a once-off all-or-nothing approach, eliminating some tricky refcounting issues. The partial device init capability was only required by some tools, and has been moved to probe time instead. Temporarily removes a workaround for some boards where we need to fiddle with AGP registers before executing the DEVINIT scripts. A later commit in this series reinstates it. Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/bin: punt client/device argument handling into a common helper | Ben Skeggs | 0 | -0/+0 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/device: tidy ctor/dtor interfaces | Ben Skeggs | 3 | -41/+40 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/client: tidy ctor/dtor interfaces | Ben Skeggs | 5 | -67/+64 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/platform: remove subclassing of nvkm_device | Ben Skeggs | 8 | -40/+25 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/disp: transition outp/conn away from being based on nvkm_object | Ben Skeggs | 28 | -635/+629 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/i2c: transition pad/ports away from being based on nvkm_object | Ben Skeggs | 52 | -2021/+2293 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/fb: transition nvkm_ram away from being based on nvkm_object | Ben Skeggs | 59 | -1092/+872 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/vga: require nvkm_device pointer in accessor functions | Ben Skeggs | 9 | -102/+98 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/imem: use object accessor function for suspend/resume | Ben Skeggs | 3 | -53/+10 | |
Very much not ideal, but this will be improved later. Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/core: wrap direct use of object accessor functions | Ben Skeggs | 3 | -38/+97 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/mpeg: switch to gpuobj accessor macros | Ben Skeggs | 3 | -11/+22 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/gr: switch to gpuobj accessor macros | Ben Skeggs | 14 | -317/+385 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/fifo: switch to gpuobj accessor macros | Ben Skeggs | 8 | -158/+220 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/dma: switch to gpuobj accessor macros | Ben Skeggs | 4 | -25/+35 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/cipher: switch to gpuobj accessor macros | Ben Skeggs | 1 | -4/+6 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/xtensa: switch to gpuobj accessor macros | Ben Skeggs | 1 | -1/+3 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/falcon: switch to gpuobj accessor macros | Ben Skeggs | 1 | -1/+3 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/mmu: switch to gpuobj accessor macros | Ben Skeggs | 5 | -38/+68 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/bar: switch to gpuobj accessor macros | Ben Skeggs | 2 | -18/+24 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/core: switch to gpuobj accessor macros | Ben Skeggs | 2 | -9/+21 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/gpuobj: type-safe accessor macros | Ben Skeggs | 1 | -0/+16 | |
These require an explicit struct nvkm_gpuobj pointer, unlike the previous macros which take a void *, and work with any nvkm_object. New semantics require acquiring/releasing a gpuobj before accessing them, which will be made use of in later patches to greatly reduce the overhead of accesses, particularly when a direct mmio mapping of the object is not available (suspend/resume, out of ioremap() space, and on GK20A). Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/xtensa: remove object accessor functions | Ben Skeggs | 4 | -40/+24 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/falcon: remove object accessor functions | Ben Skeggs | 13 | -85/+55 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/imem: remove object accessor functions | Ben Skeggs | 6 | -23/+40 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/fuse: remove object accessor functions | Ben Skeggs | 5 | -11/+27 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/bios: remove object accessor functions | Ben Skeggs | 45 | -970/+881 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/core: remove last printks | Ben Skeggs | 50 | -514/+294 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau: use dev_* for logging | Ben Skeggs | 7 | -47/+55 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/sec: switch to subdev printk macros | Ben Skeggs | 3 | -18/+8 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/pm: switch to subdev printk macros | Ben Skeggs | 1 | -6/+9 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/mpeg: switch to subdev printk macros | Ben Skeggs | 4 | -18/+21 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/gr: switch to subdev printk macros | Ben Skeggs | 10 | -302/+339 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/fifo: switch to subdev printk macros | Ben Skeggs | 6 | -165/+162 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/disp: switch to subdev printk macros | Ben Skeggs | 7 | -88/+102 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/device: switch to dev_printk macros | Ben Skeggs | 10 | -17/+3 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/cipher: switch to subdev printk macros | Ben Skeggs | 1 | -5/+6 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/ce: switch to subdev printk macros | Ben Skeggs | 3 | -10/+10 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/xtensa: switch to subdev printk macros | Ben Skeggs | 1 | -7/+8 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/falcon: switch to subdev printk macros | Ben Skeggs | 1 | -13/+14 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/volt: switch to subdev printk macros | Ben Skeggs | 3 | -15/+22 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/tmr: switch to subdev printk macros | Ben Skeggs | 2 | -13/+15 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/therm: switch to subdev printk macros | Ben Skeggs | 8 | -50/+72 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/pmu: switch to subdev printk macros | Ben Skeggs | 4 | -34/+42 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/mxm: switch to subdev printk macros | Ben Skeggs | 3 | -33/+39 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/mmu: switch to subdev printk macros | Ben Skeggs | 2 | -5/+6 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/mc: switch to subdev printk macros | Ben Skeggs | 1 | -3/+4 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/ltc: switch to subdev printk macros | Ben Skeggs | 2 | -6/+8 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/imem: switch to subdev printk macros | Ben Skeggs | 2 | -13/+17 | |
Signed-off-by: Ben Skeggs <[email protected]> | |||||
2015-08-28 | drm/nouveau/ibus: switch to subdev printk macros | Ben Skeggs | 3 | -13/+19 | |
Signed-off-by: Ben Skeggs <[email protected]> |