aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/SiFive/HiFiveUnleashed-flash.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug/targets/SiFive/HiFiveUnleashed-flash.py')
-rw-r--r--debug/targets/SiFive/HiFiveUnleashed-flash.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/debug/targets/SiFive/HiFiveUnleashed-flash.py b/debug/targets/SiFive/HiFiveUnleashed-flash.py
new file mode 100644
index 0000000..cb2741e
--- /dev/null
+++ b/debug/targets/SiFive/HiFiveUnleashed-flash.py
@@ -0,0 +1,22 @@
+import targets
+
+class E51(targets.Hart):
+ xlen = 64
+ ram = 0x80000000
+ ram_size = 1024 * 1024
+ instruction_hardware_breakpoint_count = 2
+ link_script_path = "HiFiveUnleashed-flash.lds"
+ reset_vectors = [0x1004]
+
+class U54(targets.Hart):
+ xlen = 64
+ ram = 0x80000000
+ ram_size = 1024 * 1024
+ instruction_hardware_breakpoint_count = 2
+ link_script_path = "HiFiveUnleashed-flash.lds"
+ reset_vectors = [0x1004]
+
+class HiFiveUnleashedFlash(targets.Target):
+ support_hasel = False
+ harts = [E51(), U54(), U54(), U54(), U54()]
+ openocd_config_path = "HiFiveUnleashed.cfg"