aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Min Chao <chihmin.chao@sifive.com>2020-04-23 02:16:37 -0700
committerChih-Min Chao <chihmin.chao@sifive.com>2020-05-19 19:56:49 -0700
commitcf79c7ba82ca0a477354fbabdb18558b124a211d (patch)
tree03515228f39a07bc369dd97c76a663833afa751e
parentf522bd4f45af46546d370dd072012fbcdc972d30 (diff)
downloadspike-cf79c7ba82ca0a477354fbabdb18558b124a211d.zip
spike-cf79c7ba82ca0a477354fbabdb18558b124a211d.tar.gz
spike-cf79c7ba82ca0a477354fbabdb18558b124a211d.tar.bz2
fdt: add clint base address parsing helper
borrow from OpenSBI Signed-off-by: Chih-Min Chao <chihmin.chao@sifive.com>
-rw-r--r--riscv/dts.cc62
-rw-r--r--riscv/dts.h3
2 files changed, 65 insertions, 0 deletions
diff --git a/riscv/dts.cc b/riscv/dts.cc
index 5dbed86..c9daa96 100644
--- a/riscv/dts.cc
+++ b/riscv/dts.cc
@@ -1,6 +1,7 @@
// See LICENSE for license details.
#include "dts.h"
+#include "libfdt.h"
#include <iostream>
#include <sstream>
#include <signal.h>
@@ -165,3 +166,64 @@ std::string dts_compile(const std::string& dts)
return dtb.str();
}
+
+
+static int fdt_get_node_addr_size(void *fdt, int node, unsigned long *addr,
+ unsigned long *size, const char *field)
+{
+ int parent, len, i;
+ int cell_addr, cell_size;
+ const fdt32_t *prop_addr, *prop_size;
+ uint64_t temp = 0;
+
+ parent = fdt_parent_offset(fdt, node);
+ if (parent < 0)
+ return parent;
+
+ cell_addr = fdt_address_cells(fdt, parent);
+ if (cell_addr < 1)
+ return -ENODEV;
+
+ cell_size = fdt_size_cells(fdt, parent);
+ if (cell_size < 0)
+ return -ENODEV;
+
+ if (!field)
+ return -ENODEV;
+
+ prop_addr = (fdt32_t *)fdt_getprop(fdt, node, field, &len);
+ if (!prop_addr)
+ return -ENODEV;
+ prop_size = prop_addr + cell_addr;
+
+ if (addr) {
+ for (i = 0; i < cell_addr; i++)
+ temp = (temp << 32) | fdt32_to_cpu(*prop_addr++);
+ *addr = temp;
+ }
+ temp = 0;
+
+ if (size) {
+ for (i = 0; i < cell_size; i++)
+ temp = (temp << 32) | fdt32_to_cpu(*prop_size++);
+ *size = temp;
+ }
+
+ return 0;
+}
+
+int fdt_parse_clint(void *fdt, unsigned long *clint_addr,
+ const char *compatible)
+{
+ int nodeoffset, rc;
+
+ nodeoffset = fdt_node_offset_by_compatible(fdt, -1, compatible);
+ if (nodeoffset < 0)
+ return nodeoffset;
+
+ rc = fdt_get_node_addr_size(fdt, nodeoffset, clint_addr, NULL, "reg");
+ if (rc < 0 || !clint_addr)
+ return -ENODEV;
+
+ return 0;
+}
diff --git a/riscv/dts.h b/riscv/dts.h
index b9ddb8e..cb3490d 100644
--- a/riscv/dts.h
+++ b/riscv/dts.h
@@ -13,4 +13,7 @@ std::string make_dts(size_t insns_per_rtc_tick, size_t cpu_hz,
std::string dts_compile(const std::string& dts);
+int fdt_parse_clint(void *fdt, unsigned long *clint_addr,
+ const char *compatible);
+
#endif