util, arm: Support mmapped m5ops on aarch64

Add support for memory-mapped m5ops in the aarch64 version of the m5
utility. To enable support for memory-mapped m5ops, compile the tool
with the define M5OP_ADDR set to the base of the m5op PA range.

Change-Id: I13e21e48536b9849bf4081411b66b2f350f7a8ac
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/2966
This commit is contained in:
Andreas Sandberg
2016-12-02 16:51:18 +00:00
parent 3b698e91f1
commit 212a71e99e

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010-2013, 2016 ARM Limited
* Copyright (c) 2010-2013, 2016-2017 ARM Limited
* All rights reserved
*
* The license below extends only to copyright in the software and shall
@@ -45,12 +45,23 @@
#include "m5ops.h"
#ifdef M5OP_ADDR
.macro m5op_func, name, func, subfunc
.globl \name
\name:
ldr x9, m5_mem
movz x10, #((\func << 8) | \subfunc)
ldr x0, [ x9, x10 ]
ret
.endm
#else
.macro m5op_func, name, func, subfunc
.globl \name
\name:
.long 0xff000110 | (\func << 16) | (\subfunc << 12)
ret
.endm
#endif
.text
#define M5OP(name, func, subfunc) m5op_func name, func, subfunc