+ int ret = plat_mem_set_exec(tcache, sizeof(tcache));
+ elprintf(EL_STATUS, "drc_cmn_init: %p, %zd bytes: %d",
+ tcache, sizeof(tcache), ret);
+
+#ifdef __arm__
+ {
+ static int test_done;
+ if (!test_done)
+ {
+ int *test_out = (void *)tcache;
+ int (*testfunc)(void) = (void *)tcache;
+
+ elprintf(EL_STATUS, "testing if we can run recompiled code..");
+ *test_out++ = 0xe3a000dd; // mov r0, 0xdd
+ *test_out++ = 0xe12fff1e; // bx lr
+ cache_flush_d_inval_i(tcache, test_out);
+
+ // we'll usually crash on broken platforms or bad ports,
+ // but do a value check too just in case
+ ret = testfunc();
+ elprintf(EL_STATUS, "test %s.", ret == 0xdd ? "passed" : "failed");
+ test_done = 1;
+ }
+ }
+#endif