WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] [IA64] Create Xen machine vector

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] [IA64] Create Xen machine vector
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Mon, 04 Jun 2007 03:14:48 -0700
Delivery-date: Mon, 04 Jun 2007 03:15:04 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Alex Williamson <alex.williamson@xxxxxx>
# Date 1178549532 21600
# Node ID 3b3f00d42dc41d3fd3ce60d3f048e6ba67ac499e
# Parent  a08261650b8a862843fca103583b8aa6461c3f3c
[IA64] Create Xen machine vector

This allows us to easily switch between hardware or software iommu and
simple remapping.  The Xen machine vector is only intended for domU
guests at this point.

Signed-off-by: Alex Williamson <alex.williamson@xxxxxx>
---
 linux-2.6-xen-sparse/arch/ia64/Kconfig              |    4 
 linux-2.6-xen-sparse/arch/ia64/Makefile             |    1 
 linux-2.6-xen-sparse/arch/ia64/kernel/acpi.c        |    6 
 linux-2.6-xen-sparse/arch/ia64/xen/machvec.c        |    4 
 linux-2.6-xen-sparse/arch/ia64/xen/xen_dma.c        |  145 ++++++++++++++++++++
 linux-2.6-xen-sparse/include/asm-ia64/machvec.h     |    2 
 linux-2.6-xen-sparse/include/asm-ia64/machvec_xen.h |   37 +++++
 7 files changed, 199 insertions(+)

diff -r a08261650b8a -r 3b3f00d42dc4 linux-2.6-xen-sparse/arch/ia64/Kconfig
--- a/linux-2.6-xen-sparse/arch/ia64/Kconfig    Mon May 07 08:45:15 2007 -0600
+++ b/linux-2.6-xen-sparse/arch/ia64/Kconfig    Mon May 07 08:52:12 2007 -0600
@@ -160,6 +160,10 @@ config IA64_SGI_SN2
 
 config IA64_HP_SIM
        bool "Ski-simulator"
+
+config IA64_XEN
+       bool "Xen guest"
+       depends on XEN
 
 endchoice
 
diff -r a08261650b8a -r 3b3f00d42dc4 linux-2.6-xen-sparse/arch/ia64/Makefile
--- a/linux-2.6-xen-sparse/arch/ia64/Makefile   Mon May 07 08:45:15 2007 -0600
+++ b/linux-2.6-xen-sparse/arch/ia64/Makefile   Mon May 07 08:52:12 2007 -0600
@@ -60,6 +60,7 @@ core-$(CONFIG_IA64_GENERIC)   += arch/ia6
 core-$(CONFIG_IA64_GENERIC)    += arch/ia64/dig/
 core-$(CONFIG_IA64_HP_ZX1)     += arch/ia64/dig/
 core-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += arch/ia64/dig/
+core-$(CONFIG_IA64_XEN)                += arch/ia64/dig/
 core-$(CONFIG_IA64_SGI_SN2)    += arch/ia64/sn/
 core-$(CONFIG_XEN)             += arch/ia64/xen/
 
diff -r a08261650b8a -r 3b3f00d42dc4 
linux-2.6-xen-sparse/arch/ia64/kernel/acpi.c
--- a/linux-2.6-xen-sparse/arch/ia64/kernel/acpi.c      Mon May 07 08:45:15 
2007 -0600
+++ b/linux-2.6-xen-sparse/arch/ia64/kernel/acpi.c      Mon May 07 08:52:12 
2007 -0600
@@ -109,6 +109,10 @@ const char *acpi_get_sysname(void)
                return "hpzx1";
        } else if (!strcmp(hdr->oem_id, "SGI")) {
                return "sn2";
+#ifdef CONFIG_XEN
+       } else if (is_running_on_xen() && !strcmp(hdr->oem_id, "XEN")) {
+               return "xen";
+#endif
        }
 
        return "dig";
@@ -123,6 +127,8 @@ const char *acpi_get_sysname(void)
        return "sn2";
 # elif defined (CONFIG_IA64_DIG)
        return "dig";
+# elif defined (CONFIG_IA64_XEN)
+       return "xen";
 # else
 #      error Unknown platform.  Fix acpi.c.
 # endif
diff -r a08261650b8a -r 3b3f00d42dc4 
linux-2.6-xen-sparse/arch/ia64/xen/machvec.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/linux-2.6-xen-sparse/arch/ia64/xen/machvec.c      Mon May 07 08:52:12 
2007 -0600
@@ -0,0 +1,4 @@
+#define MACHVEC_PLATFORM_NAME           xen
+#define MACHVEC_PLATFORM_HEADER         <asm/machvec_xen.h>
+#include <asm/machvec_init.h>
+
diff -r a08261650b8a -r 3b3f00d42dc4 
linux-2.6-xen-sparse/arch/ia64/xen/xen_dma.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/linux-2.6-xen-sparse/arch/ia64/xen/xen_dma.c      Mon May 07 08:52:12 
2007 -0600
@@ -0,0 +1,145 @@
+/*
+ * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
+ *     Alex Williamson <alex.williamson@xxxxxx>
+ *
+ * Basic DMA mapping services for Xen guests.
+ * Based on arch/i386/kernel/pci-dma-xen.c.
+ *
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ */
+
+#include <linux/dma-mapping.h>
+#include <linux/mm.h>
+#include <asm/scatterlist.h>
+
+#define IOMMU_BUG_ON(test)                                     \
+do {                                                           \
+       if (unlikely(test)) {                                   \
+               printk(KERN_ALERT "Fatal DMA error!\n");        \
+               BUG();                                          \
+       }                                                       \
+} while (0)
+
+
+/*
+ * This should be broken out of swiotlb and put in a common place
+ * when merged with upstream Linux.
+ */
+static inline int
+address_needs_mapping(struct device *hwdev, dma_addr_t addr)
+{
+       dma_addr_t mask = 0xffffffff;
+
+       /* If the device has a mask, use it, otherwise default to 32 bits */
+       if (hwdev && hwdev->dma_mask)
+               mask = *hwdev->dma_mask;
+       return (addr & ~mask) != 0;
+}
+
+int
+xen_map_sg(struct device *hwdev, struct scatterlist *sg, int nents,
+          int direction)
+{
+       int i;
+
+       for (i = 0 ; i < nents ; i++) {
+               sg[i].dma_address = page_to_bus(sg[i].page) + sg[i].offset;
+               sg[i].dma_length  = sg[i].length;
+
+               IOMMU_BUG_ON(address_needs_mapping(hwdev, sg[i].dma_address));
+       }
+
+       return nents;
+}
+EXPORT_SYMBOL(xen_map_sg);
+
+void
+xen_unmap_sg(struct device *hwdev, struct scatterlist *sg, int nents,
+            int direction)
+{
+}
+EXPORT_SYMBOL(xen_unmap_sg);
+
+int
+xen_dma_mapping_error(dma_addr_t dma_addr)
+{
+       return 0;
+}
+EXPORT_SYMBOL(xen_dma_mapping_error);
+
+int
+xen_dma_supported(struct device *dev, u64 mask)
+{
+       return 1;
+}
+EXPORT_SYMBOL(xen_dma_supported);
+
+void *
+xen_alloc_coherent(struct device *dev, size_t size,
+                  dma_addr_t *dma_handle, gfp_t gfp)
+{
+       unsigned long vaddr;
+       unsigned int order = get_order(size);
+
+       vaddr = __get_free_pages(gfp, order);
+
+       if (!vaddr)
+               return NULL;
+
+       if (xen_create_contiguous_region(vaddr, order,
+                                        dev->coherent_dma_mask)) {
+               free_pages(vaddr, order);
+               return NULL;
+       }
+
+       memset((void *)vaddr, 0, size);
+       *dma_handle = virt_to_bus((void *)vaddr);
+
+       return (void *)vaddr;
+}
+EXPORT_SYMBOL(xen_alloc_coherent);
+
+void
+xen_free_coherent(struct device *dev, size_t size,
+                     void *vaddr, dma_addr_t dma_handle)
+{
+       unsigned int order =  get_order(size);
+
+       xen_destroy_contiguous_region((unsigned long)vaddr, order);
+       free_pages((unsigned long)vaddr, order);
+}
+EXPORT_SYMBOL(xen_free_coherent);
+
+dma_addr_t
+xen_map_single(struct device *dev, void *ptr, size_t size,
+              int direction)
+{
+       dma_addr_t dma_addr = virt_to_bus(ptr);
+
+       IOMMU_BUG_ON(range_straddles_page_boundary(ptr, size));
+       IOMMU_BUG_ON(address_needs_mapping(dev, dma_addr));
+
+       return dma_addr;
+}
+EXPORT_SYMBOL(xen_map_single);
+
+void
+xen_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
+                int direction)
+{
+}
+EXPORT_SYMBOL(xen_unmap_single);
diff -r a08261650b8a -r 3b3f00d42dc4 
linux-2.6-xen-sparse/include/asm-ia64/machvec.h
--- a/linux-2.6-xen-sparse/include/asm-ia64/machvec.h   Mon May 07 08:45:15 
2007 -0600
+++ b/linux-2.6-xen-sparse/include/asm-ia64/machvec.h   Mon May 07 08:52:12 
2007 -0600
@@ -108,6 +108,8 @@ extern void machvec_tlb_migrate_finish (
 #  include <asm/machvec_hpzx1_swiotlb.h>
 # elif defined (CONFIG_IA64_SGI_SN2)
 #  include <asm/machvec_sn2.h>
+# elif defined (CONFIG_IA64_XEN)
+#  include <asm/machvec_xen.h>
 # elif defined (CONFIG_IA64_GENERIC)
 
 # ifdef MACHVEC_PLATFORM_HEADER
diff -r a08261650b8a -r 3b3f00d42dc4 
linux-2.6-xen-sparse/include/asm-ia64/machvec_xen.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/linux-2.6-xen-sparse/include/asm-ia64/machvec_xen.h       Mon May 07 
08:52:12 2007 -0600
@@ -0,0 +1,37 @@
+#ifndef _ASM_IA64_MACHVEC_XEN_h
+#define _ASM_IA64_MACHVEC_XEN_h
+
+extern ia64_mv_setup_t                 dig_setup;
+extern ia64_mv_dma_alloc_coherent      xen_alloc_coherent;
+extern ia64_mv_dma_free_coherent       xen_free_coherent;
+extern ia64_mv_dma_map_single          xen_map_single;
+extern ia64_mv_dma_unmap_single                xen_unmap_single;
+extern ia64_mv_dma_map_sg              xen_map_sg;
+extern ia64_mv_dma_unmap_sg            xen_unmap_sg;
+extern ia64_mv_dma_supported           xen_dma_supported;
+extern ia64_mv_dma_mapping_error       xen_dma_mapping_error;
+
+/*
+ * This stuff has dual use!
+ *
+ * For a generic kernel, the macros are used to initialize the
+ * platform's machvec structure.  When compiling a non-generic kernel,
+ * the macros are used directly.
+ */
+#define platform_name                          "xen"
+#define platform_setup                         dig_setup
+#define platform_dma_init                      machvec_noop
+#define platform_dma_alloc_coherent            xen_alloc_coherent
+#define platform_dma_free_coherent             xen_free_coherent
+#define platform_dma_map_single                        xen_map_single
+#define platform_dma_unmap_single              xen_unmap_single
+#define platform_dma_map_sg                    xen_map_sg
+#define platform_dma_unmap_sg                  xen_unmap_sg
+#define platform_dma_sync_single_for_cpu       machvec_dma_sync_single
+#define platform_dma_sync_sg_for_cpu           machvec_dma_sync_sg
+#define platform_dma_sync_single_for_device    machvec_dma_sync_single
+#define platform_dma_sync_sg_for_device                machvec_dma_sync_sg
+#define platform_dma_supported                 xen_dma_supported
+#define platform_dma_mapping_error             xen_dma_mapping_error
+
+#endif /* _ASM_IA64_MACHVEC_XEN_h */

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] [IA64] Create Xen machine vector, Xen patchbot-unstable <=