All of lore.kernel.org
 help / color / mirror / Atom feed
From: James Simmons <jsimmons@infradead.org>
To: DRI development list <dri-devel@lists.freedesktop.org>
Cc: OpenChrome Development <Openchrome-devel@lists.freedesktop.org>
Subject: [RFC 4/21] DRM: Add VIA DRM driver
Date: Sat, 8 Jun 2013 17:46:21 +0100 (BST)	[thread overview]
Message-ID: <alpine.LFD.2.03.1306081745370.18671@infradead.org> (raw)


commit 6e79030fb92d3461b4a962630245d93944d5d349
Author: James Simmons <jsimmons@infradead.org>
Date:   Fri Jun 7 20:17:06 2013 -0400

    via: ttm pcie dma bo_driver handling
    
    Newer VIA hardware has moved from AGP to more modern PCIe
    based hardware. The TTM layer provides support for AGP but
    drm drivers need to handle PCIe support themselves. The
    code in via_sgdma.c provides the TTM backend so one can
    allows the graphics card direct access to the host system
    memory.
    
    Signed-Off-by: James Simmons <jsimmons@infradead.org>

diff --git a/drivers/gpu/drm/via/via_sgdma.c b/drivers/gpu/drm/via/via_sgdma.c
new file mode 100644
index 0000000..0dfd1a6
--- /dev/null
+++ b/drivers/gpu/drm/via/via_sgdma.c
@@ -0,0 +1,118 @@
+/**************************************************************************
+ *
+ * Copyright (c) 2012 James Simmons <jsimmons@infradead.org>
+ * 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, sub license, 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 NON-INFRINGEMENT. IN NO EVENT SHALL
+ * THE COPYRIGHT HOLDERS, AUTHORS 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.
+ */
+#include "via_drv.h"
+
+static int
+via_pcie_sgdma_bind(struct ttm_tt *ttm, struct ttm_mem_reg *mem)
+{
+	struct sgdma_tt *dma_tt = (struct sgdma_tt *) ttm;
+	struct ttm_bo_device *bdev = dma_tt->sgdma.ttm.bdev;
+	struct drm_via_private *dev_priv =
+		container_of(bdev, struct drm_via_private, bdev);
+	int i;
+
+	/* Disable gart table HW protect */
+	svga_wseq_mask(VGABASE, 0x6C, 0x00, BIT(7));
+
+	/* Update the relevant entries */
+	dma_tt->offset = mem->start << PAGE_SHIFT;
+	for (i = 0; i < ttm->num_pages; i++) {
+		writel(page_to_pfn(ttm->pages[i]) & 0x3FFFFFFF,
+			dev_priv->gart.virtual + dma_tt->offset + i);
+	}
+
+	/* Invalided GTI cache */
+	svga_wseq_mask(VGABASE, 0x6F, BIT(7), BIT(7));
+
+	/* Enable gart table HW protect */
+	svga_wseq_mask(VGABASE, 0x6C, BIT(7), BIT(7));
+	return 1;
+}
+
+static int
+via_pcie_sgdma_unbind(struct ttm_tt *ttm)
+{
+	struct sgdma_tt *dma_tt = (struct sgdma_tt *) ttm;
+	struct ttm_bo_device *bdev = dma_tt->sgdma.ttm.bdev;
+	struct drm_via_private *dev_priv =
+		container_of(bdev, struct drm_via_private, bdev);
+	int i;
+
+	if (ttm->state != tt_bound)
+		return 0;
+
+	/* Disable gart table HW protect */
+	svga_wseq_mask(VGABASE, 0x6C, 0x00, BIT(7));
+
+	/* Update the relevant entries */
+	for (i = 0; i < ttm->num_pages; i++)
+		writel(0x80000000, dev_priv->gart.virtual + dma_tt->offset + i);
+	dma_tt->offset = 0;
+
+	/* Invalided GTI cache */
+	svga_wseq_mask(VGABASE, 0x6F, BIT(7), BIT(7));
+
+	/* Enable gart table HW protect */
+	svga_wseq_mask(VGABASE, 0x6C, BIT(7), BIT(7));
+	return 0;
+}
+
+static void
+via_sgdma_destroy(struct ttm_tt *ttm)
+{
+	struct sgdma_tt *dma_tt = (struct sgdma_tt *) ttm;
+
+	if (ttm) {
+		ttm_dma_tt_fini(&dma_tt->sgdma);
+		kfree(dma_tt);
+	}
+}
+
+static struct ttm_backend_func ttm_sgdma_func = {
+	.bind = via_pcie_sgdma_bind,
+	.unbind = via_pcie_sgdma_unbind,
+	.destroy = via_sgdma_destroy,
+};
+
+struct ttm_tt *
+via_sgdma_backend_init(struct ttm_bo_device *bdev, unsigned long size,
+			uint32_t page_flags, struct page *dummy_read_page)
+{
+	struct sgdma_tt *dma_tt;
+
+	dma_tt = kzalloc(sizeof(*dma_tt), GFP_KERNEL);
+	if (!dma_tt)
+		return NULL;
+
+	dma_tt->sgdma.ttm.func = &ttm_sgdma_func;
+
+	if (ttm_dma_tt_init(&dma_tt->sgdma, bdev, size, page_flags, dummy_read_page)) {
+		kfree(dma_tt);
+		return NULL;
+	}
+	return &dma_tt->sgdma.ttm;
+}
+EXPORT_SYMBOL(via_sgdma_backend_init);

                 reply	other threads:[~2013-06-08 16:46 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LFD.2.03.1306081745370.18671@infradead.org \
    --to=jsimmons@infradead.org \
    --cc=Openchrome-devel@lists.freedesktop.org \
    --cc=dri-devel@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.