Index: uspace/drv/char/msim-con/main.c
===================================================================
--- uspace/drv/char/msim-con/main.c	(revision a2afd8f0b1472fa829718638169cb6f688503ac8)
+++ uspace/drv/char/msim-con/main.c	(revision 6ac1243decadc8ef1a945d8e23772c79d3c86ce1)
@@ -35,4 +35,5 @@
 #include <ddf/driver.h>
 #include <ddf/log.h>
+#include <device/hw_res_parsed.h>
 #include <errno.h>
 #include <stdio.h>
@@ -61,9 +62,47 @@
 };
 
+static int msim_con_get_res(ddf_dev_t *dev, msim_con_res_t *res)
+{
+	async_sess_t *parent_sess;
+	hw_res_list_parsed_t hw_res;
+	int rc;
+
+	parent_sess = ddf_dev_parent_sess_get(dev);
+	if (parent_sess == NULL)
+		return ENOMEM;
+
+	hw_res_list_parsed_init(&hw_res);
+	rc = hw_res_get_list_parsed(parent_sess, &hw_res, 0);
+	if (rc != EOK)
+		return rc;
+
+	if (hw_res.mem_ranges.count != 1) {
+		rc = EINVAL;
+		goto error;
+	}
+
+	res->base = RNGABS(hw_res.mem_ranges.ranges[0]);
+
+	if (hw_res.irqs.count != 1) {
+		rc = EINVAL;
+		goto error;
+	}
+
+	res->irq = hw_res.irqs.irqs[0];
+
+	return EOK;
+error:
+	hw_res_list_parsed_clean(&hw_res);
+	return rc;
+}
+
 static int msim_con_dev_add(ddf_dev_t *dev)
 {
 	msim_con_t *msim_con;
+	msim_con_res_t res;
+	int rc;
 
         ddf_msg(LVL_DEBUG, "msim_con_dev_add(%p)", dev);
+
 	msim_con = ddf_dev_data_alloc(dev, sizeof(msim_con_t));
 	if (msim_con == NULL) {
@@ -74,5 +113,11 @@
 	msim_con->dev = dev;
 
-	return msim_con_add(msim_con);
+	rc = msim_con_get_res(dev, &res);
+	if (rc != EOK) {
+		ddf_msg(LVL_ERROR, "Failed getting hardware resource list.\n");
+		return EIO;
+	}
+
+	return msim_con_add(msim_con, &res);
 }
 
Index: uspace/drv/char/msim-con/msim-con.c
===================================================================
--- uspace/drv/char/msim-con/msim-con.c	(revision a2afd8f0b1472fa829718638169cb6f688503ac8)
+++ uspace/drv/char/msim-con/msim-con.c	(revision 6ac1243decadc8ef1a945d8e23772c79d3c86ce1)
@@ -38,5 +38,4 @@
 #include <errno.h>
 #include <ipc/char.h>
-#include <sysinfo.h>
 
 #include "msim-con.h"
@@ -84,9 +83,11 @@
 
 /** Add msim console device. */
-int msim_con_add(msim_con_t *con)
+int msim_con_add(msim_con_t *con, msim_con_res_t *res)
 {
 	ddf_fun_t *fun = NULL;
 	bool subscribed = false;
 	int rc;
+
+	con->res = *res;
 
 	fun = ddf_fun_create(con->dev, fun_exposed, "a");
@@ -99,19 +100,7 @@
 	ddf_fun_set_conn_handler(fun, msim_con_connection);
 
-	sysarg_t paddr;
-	if (sysinfo_get_value("kbd.address.physical", &paddr) != EOK) {
-		rc = ENOENT;
-		goto error;
-	}
-
-	sysarg_t inr;
-	if (sysinfo_get_value("kbd.inr", &inr) != EOK) {
-		rc = ENOENT;
-		goto error;
-	}
-
-	msim_ranges[0].base = paddr;
-	msim_cmds[0].addr = (void *) paddr;
-	async_irq_subscribe(inr, msim_irq_handler, con, &msim_kbd);
+	msim_ranges[0].base = res->base;
+	msim_cmds[0].addr = (void *) res->base;
+	async_irq_subscribe(res->irq, msim_irq_handler, con, &msim_kbd);
 	subscribed = true;
 
@@ -125,5 +114,5 @@
 error:
 	if (subscribed)
-		async_irq_unsubscribe(inr);
+		async_irq_unsubscribe(res->irq);
 	if (fun != NULL)
 		ddf_fun_destroy(fun);
Index: uspace/drv/char/msim-con/msim-con.h
===================================================================
--- uspace/drv/char/msim-con/msim-con.h	(revision a2afd8f0b1472fa829718638169cb6f688503ac8)
+++ uspace/drv/char/msim-con/msim-con.h	(revision 6ac1243decadc8ef1a945d8e23772c79d3c86ce1)
@@ -41,11 +41,18 @@
 #include <stdint.h>
 
+/** MSIM console resources */
+typedef struct {
+	uintptr_t base;
+	int irq;
+} msim_con_res_t;
+
 /** MSIM console */
 typedef struct {
 	async_sess_t *client_sess;
 	ddf_dev_t *dev;
+	msim_con_res_t res;
 } msim_con_t;
 
-extern int msim_con_add(msim_con_t *);
+extern int msim_con_add(msim_con_t *, msim_con_res_t *);
 extern int msim_con_remove(msim_con_t *);
 extern int msim_con_gone(msim_con_t *);
