]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kvm tools: Add MMIO address mapper
authorSasha Levin <levinsasha928@gmail.com>
Tue, 17 May 2011 12:08:00 +0000 (15:08 +0300)
committerPekka Enberg <penberg@kernel.org>
Tue, 17 May 2011 15:14:19 +0000 (18:14 +0300)
When we have a MMIO exit, we need to find which device
has registered to use the accessed MMIO space.

The mapper maps ranges of guest physical addresses to
callback functions.

Implementation is based on an interval red-black tree.

Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
tools/kvm/include/kvm/kvm.h
tools/kvm/mmio.c

index b310d50b06e39499634b38970e7785a043ec7539..d9943bf7db684bd960f84648dca51b187a3ab6f1 100644 (file)
@@ -44,6 +44,8 @@ void kvm__stop_timer(struct kvm *kvm);
 void kvm__irq_line(struct kvm *kvm, int irq, int level);
 bool kvm__emulate_io(struct kvm *kvm, u16 port, void *data, int direction, int size, u32 count);
 bool kvm__emulate_mmio(struct kvm *kvm, u64 phys_addr, u8 *data, u32 len, u8 is_write);
+bool kvm__register_mmio(u64 phys_addr, u64 phys_addr_len, void (*kvm_mmio_callback_fn)(u64 addr, u8 *data, u32 len, u8 is_write));
+bool kvm__deregister_mmio(u64 phys_addr);
 
 /*
  * Debugging
index 848267dc3418aee8fc894aa853e6b5713c868e2c..ef986bf57d03e5f92c15828c6cc2a3c055b14394 100644 (file)
@@ -1,7 +1,48 @@
 #include "kvm/kvm.h"
+#include "kvm/rbtree-interval.h"
 
 #include <stdio.h>
+#include <stdlib.h>
+
 #include <linux/types.h>
+#include <linux/rbtree.h>
+
+#define mmio_node(n) rb_entry(n, struct mmio_mapping, node)
+
+struct mmio_mapping {
+       struct rb_int_node      node;
+       void                    (*kvm_mmio_callback_fn)(u64 addr, u8 *data, u32 len, u8 is_write);
+};
+
+static struct rb_root mmio_tree = RB_ROOT;
+
+static struct mmio_mapping *mmio_search(struct rb_root *root, u64 addr, u64 len)
+{
+       struct rb_int_node *node;
+
+       node = rb_int_search_range(root, addr, addr + len);
+       if (node == NULL)
+               return NULL;
+
+       return mmio_node(node);
+}
+
+/* Find lowest match, Check for overlap */
+static struct mmio_mapping *mmio_search_single(struct rb_root *root, u64 addr)
+{
+       struct rb_int_node *node;
+
+       node = rb_int_search_single(root, addr);
+       if (node == NULL)
+               return NULL;
+
+       return mmio_node(node);
+}
+
+static int mmio_insert(struct rb_root *root, struct mmio_mapping *data)
+{
+       return rb_int_insert(root, &data->node);
+}
 
 static const char *to_direction(u8 is_write)
 {
@@ -11,10 +52,44 @@ static const char *to_direction(u8 is_write)
        return "read";
 }
 
+bool kvm__register_mmio(u64 phys_addr, u64 phys_addr_len, void (*kvm_mmio_callback_fn)(u64 addr, u8 *data, u32 len, u8 is_write))
+{
+       struct mmio_mapping *mmio;
+
+       mmio = malloc(sizeof(*mmio));
+       if (mmio == NULL)
+               return false;
+
+       *mmio = (struct mmio_mapping) {
+               .node = RB_INT_INIT(phys_addr, phys_addr + phys_addr_len),
+               .kvm_mmio_callback_fn = kvm_mmio_callback_fn,
+       };
+
+       return mmio_insert(&mmio_tree, mmio);
+}
+
+bool kvm__deregister_mmio(u64 phys_addr)
+{
+       struct mmio_mapping *mmio;
+
+       mmio = mmio_search_single(&mmio_tree, phys_addr);
+       if (mmio == NULL)
+               return false;
+
+       rb_int_erase(&mmio_tree, &mmio->node);
+       free(mmio);
+       return true;
+}
+
 bool kvm__emulate_mmio(struct kvm *kvm, u64 phys_addr, u8 *data, u32 len, u8 is_write)
 {
-       fprintf(stderr, "Warning: Ignoring MMIO %s at %016llx (length %u)\n",
-               to_direction(is_write), phys_addr, len);
+       struct mmio_mapping *mmio = mmio_search(&mmio_tree, phys_addr, len);
+
+       if (mmio)
+               mmio->kvm_mmio_callback_fn(phys_addr, data, len, is_write);
+       else
+               fprintf(stderr, "Warning: Ignoring MMIO %s at %016llx (length %u)\n",
+                       to_direction(is_write), phys_addr, len);
 
        return true;
 }