2005-01-06 01:43:34 +00:00
|
|
|
/*-
|
2002-04-27 20:47:57 +00:00
|
|
|
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* 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 (including the next
|
|
|
|
* paragraph) 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
|
|
|
|
* PRECISION INSIGHT AND/OR ITS SUPPLIERS 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:
|
|
|
|
* Gareth Hughes <gareth@valinux.com>
|
2003-08-19 02:57:31 +00:00
|
|
|
* Eric Anholt <anholt@FreeBSD.org>
|
2002-04-27 20:47:57 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-11-28 23:13:57 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/** @file drm_scatter.c
|
|
|
|
* Allocation of memory for scatter-gather mappings by the graphics chip.
|
|
|
|
*
|
|
|
|
* The memory allocated here is then made into an aperture in the card
|
|
|
|
* by drm_ati_pcigart_init().
|
|
|
|
*/
|
|
|
|
|
2002-04-27 20:47:57 +00:00
|
|
|
#include "dev/drm/drmP.h"
|
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
static void drm_sg_alloc_cb(void *arg, bus_dma_segment_t *segs,
|
|
|
|
int nsegs, int error);
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
int
|
|
|
|
drm_sg_alloc(struct drm_device *dev, struct drm_scatter_gather *request)
|
2002-04-27 20:47:57 +00:00
|
|
|
{
|
2008-12-18 21:04:50 +00:00
|
|
|
struct drm_sg_mem *entry;
|
|
|
|
struct drm_dma_handle *dmah;
|
2003-03-09 02:08:30 +00:00
|
|
|
unsigned long pages;
|
2008-12-18 21:04:50 +00:00
|
|
|
int ret;
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
if (dev->sg)
|
2003-03-09 02:08:30 +00:00
|
|
|
return EINVAL;
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-10-13 18:03:27 +00:00
|
|
|
entry = malloc(sizeof(*entry), DRM_MEM_SGLISTS, M_WAITOK | M_ZERO);
|
2008-10-03 16:59:11 +00:00
|
|
|
if (!entry)
|
2003-03-09 02:08:30 +00:00
|
|
|
return ENOMEM;
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
pages = round_page(request->size) / PAGE_SIZE;
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("sg size=%ld pages=%ld\n", request->size, pages);
|
2002-04-27 20:47:57 +00:00
|
|
|
|
|
|
|
entry->pages = pages;
|
|
|
|
|
2008-10-13 18:03:27 +00:00
|
|
|
entry->busaddr = malloc(pages * sizeof(*entry->busaddr), DRM_MEM_PAGES,
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
M_WAITOK | M_ZERO);
|
2008-10-03 16:59:11 +00:00
|
|
|
if (!entry->busaddr) {
|
2008-12-18 21:04:50 +00:00
|
|
|
free(entry, DRM_MEM_SGLISTS);
|
2003-03-09 02:08:30 +00:00
|
|
|
return ENOMEM;
|
2002-04-27 20:47:57 +00:00
|
|
|
}
|
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
dmah = malloc(sizeof(struct drm_dma_handle), DRM_MEM_DMA,
|
|
|
|
M_ZERO | M_NOWAIT);
|
|
|
|
if (dmah == NULL) {
|
|
|
|
free(entry->busaddr, DRM_MEM_PAGES);
|
|
|
|
free(entry, DRM_MEM_SGLISTS);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = bus_dma_tag_create(NULL, PAGE_SIZE, 0, /* tag, align, boundary */
|
|
|
|
BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, /* lowaddr, highaddr */
|
|
|
|
NULL, NULL, /* filtfunc, filtfuncargs */
|
|
|
|
request->size, pages, /* maxsize, nsegs */
|
|
|
|
PAGE_SIZE, 0, /* maxsegsize, flags */
|
|
|
|
NULL, NULL, /* lockfunc, lockfuncargs */
|
|
|
|
&dmah->tag);
|
|
|
|
if (ret != 0) {
|
|
|
|
free(dmah, DRM_MEM_DMA);
|
|
|
|
free(entry->busaddr, DRM_MEM_PAGES);
|
|
|
|
free(entry, DRM_MEM_SGLISTS);
|
2003-03-09 02:08:30 +00:00
|
|
|
return ENOMEM;
|
2002-04-27 20:47:57 +00:00
|
|
|
}
|
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
ret = bus_dmamem_alloc(dmah->tag, &dmah->vaddr,
|
2009-03-09 07:38:22 +00:00
|
|
|
BUS_DMA_WAITOK | BUS_DMA_ZERO, &dmah->map);
|
2008-12-18 21:04:50 +00:00
|
|
|
if (ret != 0) {
|
|
|
|
bus_dma_tag_destroy(dmah->tag);
|
|
|
|
free(dmah, DRM_MEM_DMA);
|
|
|
|
free(entry->busaddr, DRM_MEM_PAGES);
|
|
|
|
free(entry, DRM_MEM_SGLISTS);
|
|
|
|
return ENOMEM;
|
2005-11-28 23:13:57 +00:00
|
|
|
}
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
ret = bus_dmamap_load(dmah->tag, dmah->map, dmah->vaddr,
|
2009-03-09 07:38:22 +00:00
|
|
|
request->size, drm_sg_alloc_cb, entry,
|
|
|
|
BUS_DMA_NOWAIT | BUS_DMA_NOCACHE);
|
2008-12-18 21:04:50 +00:00
|
|
|
if (ret != 0) {
|
|
|
|
bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
|
|
|
|
bus_dma_tag_destroy(dmah->tag);
|
|
|
|
free(dmah, DRM_MEM_DMA);
|
|
|
|
free(entry->busaddr, DRM_MEM_PAGES);
|
|
|
|
free(entry, DRM_MEM_SGLISTS);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry->sg_dmah = dmah;
|
|
|
|
entry->handle = (unsigned long)dmah->vaddr;
|
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("sg alloc handle = %08lx\n", entry->handle);
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2006-05-17 06:29:36 +00:00
|
|
|
entry->virtual = (void *)entry->handle;
|
2008-08-23 20:59:12 +00:00
|
|
|
request->handle = entry->handle;
|
2002-04-27 20:47:57 +00:00
|
|
|
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_LOCK();
|
|
|
|
if (dev->sg) {
|
|
|
|
DRM_UNLOCK();
|
|
|
|
drm_sg_cleanup(entry);
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2002-04-27 20:47:57 +00:00
|
|
|
dev->sg = entry;
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_UNLOCK();
|
2002-04-27 20:47:57 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
static void
|
|
|
|
drm_sg_alloc_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
|
|
|
|
{
|
|
|
|
struct drm_sg_mem *entry = arg;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (error != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for(i = 0 ; i < nsegs ; i++) {
|
|
|
|
entry->busaddr[i] = segs[i].ds_addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
drm_sg_alloc_ioctl(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file_priv)
|
2002-04-27 20:47:57 +00:00
|
|
|
{
|
2008-10-03 16:59:11 +00:00
|
|
|
struct drm_scatter_gather *request = data;
|
2008-08-23 20:59:12 +00:00
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
DRM_DEBUG("\n");
|
|
|
|
|
|
|
|
return drm_sg_alloc(dev, request);
|
|
|
|
}
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
void
|
|
|
|
drm_sg_cleanup(struct drm_sg_mem *entry)
|
|
|
|
{
|
|
|
|
struct drm_dma_handle *dmah = entry->sg_dmah;
|
|
|
|
|
|
|
|
bus_dmamap_unload(dmah->tag, dmah->map);
|
|
|
|
bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
|
|
|
|
bus_dma_tag_destroy(dmah->tag);
|
|
|
|
free(dmah, DRM_MEM_DMA);
|
|
|
|
free(entry->busaddr, DRM_MEM_PAGES);
|
|
|
|
free(entry, DRM_MEM_SGLISTS);
|
2008-08-23 20:59:12 +00:00
|
|
|
}
|
|
|
|
|
2008-12-18 21:04:50 +00:00
|
|
|
int
|
|
|
|
drm_sg_free(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2008-08-23 20:59:12 +00:00
|
|
|
{
|
2008-10-03 16:59:11 +00:00
|
|
|
struct drm_scatter_gather *request = data;
|
2008-12-18 21:04:50 +00:00
|
|
|
struct drm_sg_mem *entry;
|
2002-04-27 20:47:57 +00:00
|
|
|
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_LOCK();
|
2002-04-27 20:47:57 +00:00
|
|
|
entry = dev->sg;
|
|
|
|
dev->sg = NULL;
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_UNLOCK();
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
if (!entry || entry->handle != request->handle)
|
2003-03-09 02:08:30 +00:00
|
|
|
return EINVAL;
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("sg free virtual = 0x%lx\n", entry->handle);
|
2002-04-27 20:47:57 +00:00
|
|
|
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
drm_sg_cleanup(entry);
|
2002-04-27 20:47:57 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|