2012-06-27 16:26:01 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors: Dave Airlie
|
|
|
|
*/
|
2012-04-02 18:53:06 +08:00
|
|
|
|
Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux
Pull drm merge (part 1) from Dave Airlie:
"So first of all my tree and uapi stuff has a conflict mess, its my
fault as the nouveau stuff didn't hit -next as were trying to rebase
regressions out of it before we merged.
Highlights:
- SH mobile modesetting driver and associated helpers
- some DRM core documentation
- i915 modesetting rework, haswell hdmi, haswell and vlv fixes, write
combined pte writing, ilk rc6 support,
- nouveau: major driver rework into a hw core driver, makes features
like SLI a lot saner to implement,
- psb: add eDP/DP support for Cedarview
- radeon: 2 layer page tables, async VM pte updates, better PLL
selection for > 2 screens, better ACPI interactions
The rest is general grab bag of fixes.
So why part 1? well I have the exynos pull req which came in a bit
late but was waiting for me to do something they shouldn't have and it
looks fairly safe, and David Howells has some more header cleanups
he'd like me to pull, that seem like a good idea, but I'd like to get
this merge out of the way so -next dosen't get blocked."
Tons of conflicts mostly due to silly include line changes, but mostly
mindless. A few other small semantic conflicts too, noted from Dave's
pre-merged branch.
* 'drm-next' of git://people.freedesktop.org/~airlied/linux: (447 commits)
drm/nv98/crypt: fix fuc build with latest envyas
drm/nouveau/devinit: fixup various issues with subdev ctor/init ordering
drm/nv41/vm: fix and enable use of "real" pciegart
drm/nv44/vm: fix and enable use of "real" pciegart
drm/nv04/dmaobj: fixup vm target handling in preparation for nv4x pcie
drm/nouveau: store supported dma mask in vmmgr
drm/nvc0/ibus: initial implementation of subdev
drm/nouveau/therm: add support for fan-control modes
drm/nouveau/hwmon: rename pwm0* to pmw1* to follow hwmon's rules
drm/nouveau/therm: calculate the pwm divisor on nv50+
drm/nouveau/fan: rewrite the fan tachometer driver to get more precision, faster
drm/nouveau/therm: move thermal-related functions to the therm subdev
drm/nouveau/bios: parse the pwm divisor from the perf table
drm/nouveau/therm: use the EXTDEV table to detect i2c monitoring devices
drm/nouveau/therm: rework thermal table parsing
drm/nouveau/gpio: expose the PWM/TOGGLE parameter found in the gpio vbios table
drm/nouveau: fix pm initialization order
drm/nouveau/bios: check that fixed tvdac gpio data is valid before using it
drm/nouveau: log channel debug/error messages from client object rather than drm client
drm/nouveau: have drm debugging macros build on top of core macros
...
2012-10-04 14:29:23 +08:00
|
|
|
#include <drm/drmP.h>
|
2014-01-09 18:03:14 +08:00
|
|
|
#include <linux/dma-buf.h>
|
2012-04-02 18:53:06 +08:00
|
|
|
|
2016-05-20 07:22:55 +08:00
|
|
|
#include "nouveau_drv.h"
|
2012-07-31 14:16:21 +08:00
|
|
|
#include "nouveau_gem.h"
|
2012-04-02 18:53:06 +08:00
|
|
|
|
2013-01-16 04:47:43 +08:00
|
|
|
struct sg_table *nouveau_gem_prime_get_sg_table(struct drm_gem_object *obj)
|
2012-04-02 18:53:06 +08:00
|
|
|
{
|
2013-01-16 04:47:43 +08:00
|
|
|
struct nouveau_bo *nvbo = nouveau_gem_object(obj);
|
2012-04-02 18:53:06 +08:00
|
|
|
int npages = nvbo->bo.num_pages;
|
|
|
|
|
2013-01-16 04:47:43 +08:00
|
|
|
return drm_prime_pages_to_sg(nvbo->bo.ttm->pages, npages);
|
2012-04-02 18:53:06 +08:00
|
|
|
}
|
|
|
|
|
2013-01-16 04:47:43 +08:00
|
|
|
void *nouveau_gem_prime_vmap(struct drm_gem_object *obj)
|
2012-04-02 18:53:06 +08:00
|
|
|
{
|
2013-01-16 04:47:43 +08:00
|
|
|
struct nouveau_bo *nvbo = nouveau_gem_object(obj);
|
2012-05-31 20:52:17 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.num_pages,
|
|
|
|
&nvbo->dma_buf_vmap);
|
2013-01-16 04:47:43 +08:00
|
|
|
if (ret)
|
2012-05-31 20:52:17 +08:00
|
|
|
return ERR_PTR(ret);
|
2013-01-16 04:47:43 +08:00
|
|
|
|
2012-05-31 20:52:17 +08:00
|
|
|
return nvbo->dma_buf_vmap.virtual;
|
|
|
|
}
|
|
|
|
|
2013-01-16 04:47:43 +08:00
|
|
|
void nouveau_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
|
2012-05-31 20:52:17 +08:00
|
|
|
{
|
2013-01-16 04:47:43 +08:00
|
|
|
struct nouveau_bo *nvbo = nouveau_gem_object(obj);
|
2012-05-31 20:52:17 +08:00
|
|
|
|
2013-01-16 04:47:43 +08:00
|
|
|
ttm_bo_kunmap(&nvbo->dma_buf_vmap);
|
2012-05-31 20:52:17 +08:00
|
|
|
}
|
|
|
|
|
2013-01-16 04:47:43 +08:00
|
|
|
struct drm_gem_object *nouveau_gem_prime_import_sg_table(struct drm_device *dev,
|
2014-01-09 18:03:14 +08:00
|
|
|
struct dma_buf_attachment *attach,
|
2013-01-16 04:47:43 +08:00
|
|
|
struct sg_table *sg)
|
2012-04-02 18:53:06 +08:00
|
|
|
{
|
2016-05-24 15:26:48 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
2012-04-02 18:53:06 +08:00
|
|
|
struct nouveau_bo *nvbo;
|
2014-01-09 18:03:15 +08:00
|
|
|
struct reservation_object *robj = attach->dmabuf->resv;
|
2012-04-02 18:53:06 +08:00
|
|
|
u32 flags = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
flags = TTM_PL_FLAG_TT;
|
|
|
|
|
2014-01-09 18:03:15 +08:00
|
|
|
ww_mutex_lock(&robj->lock, NULL);
|
2016-05-24 15:26:48 +08:00
|
|
|
ret = nouveau_bo_new(&drm->client, attach->dmabuf->size, 0, flags, 0, 0,
|
2014-01-09 18:03:15 +08:00
|
|
|
sg, robj, &nvbo);
|
|
|
|
ww_mutex_unlock(&robj->lock);
|
2012-04-02 18:53:06 +08:00
|
|
|
if (ret)
|
2013-01-16 04:47:43 +08:00
|
|
|
return ERR_PTR(ret);
|
2012-04-02 18:53:06 +08:00
|
|
|
|
|
|
|
nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_GART;
|
2013-10-02 16:15:17 +08:00
|
|
|
|
|
|
|
/* Initialize the embedded gem-object. We return a single gem-reference
|
|
|
|
* to the caller, instead of a normal nouveau_bo ttm reference. */
|
|
|
|
ret = drm_gem_object_init(dev, &nvbo->gem, nvbo->bo.mem.size);
|
|
|
|
if (ret) {
|
2013-01-16 04:47:43 +08:00
|
|
|
nouveau_bo_ref(NULL, &nvbo);
|
|
|
|
return ERR_PTR(-ENOMEM);
|
2012-04-02 18:53:06 +08:00
|
|
|
}
|
|
|
|
|
2013-10-02 16:15:17 +08:00
|
|
|
return &nvbo->gem;
|
2012-04-02 18:53:06 +08:00
|
|
|
}
|
|
|
|
|
2013-01-16 04:47:43 +08:00
|
|
|
int nouveau_gem_prime_pin(struct drm_gem_object *obj)
|
2012-04-02 18:53:06 +08:00
|
|
|
{
|
|
|
|
struct nouveau_bo *nvbo = nouveau_gem_object(obj);
|
2013-06-27 19:38:19 +08:00
|
|
|
int ret;
|
2012-04-02 18:53:06 +08:00
|
|
|
|
|
|
|
/* pin buffer into GTT */
|
2014-11-10 09:24:27 +08:00
|
|
|
ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_TT, false);
|
2012-04-02 18:53:06 +08:00
|
|
|
if (ret)
|
2013-01-16 04:47:43 +08:00
|
|
|
return -EINVAL;
|
2012-04-02 18:53:06 +08:00
|
|
|
|
2013-01-16 04:47:43 +08:00
|
|
|
return 0;
|
2012-04-02 18:53:06 +08:00
|
|
|
}
|
2013-06-27 19:38:19 +08:00
|
|
|
|
|
|
|
void nouveau_gem_prime_unpin(struct drm_gem_object *obj)
|
|
|
|
{
|
|
|
|
struct nouveau_bo *nvbo = nouveau_gem_object(obj);
|
|
|
|
|
|
|
|
nouveau_bo_unpin(nvbo);
|
|
|
|
}
|
2014-07-01 18:57:26 +08:00
|
|
|
|
|
|
|
struct reservation_object *nouveau_gem_prime_res_obj(struct drm_gem_object *obj)
|
|
|
|
{
|
|
|
|
struct nouveau_bo *nvbo = nouveau_gem_object(obj);
|
|
|
|
|
|
|
|
return nvbo->bo.resv;
|
|
|
|
}
|