summaryrefslogtreecommitdiff
path: root/utils/hwstub/stub/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/hwstub/stub/config.h')
-rw-r--r--utils/hwstub/stub/config.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/utils/hwstub/stub/config.h b/utils/hwstub/stub/config.h
new file mode 100644
index 0000000000..3cd2deeeb3
--- /dev/null
+++ b/utils/hwstub/stub/config.h
@@ -0,0 +1,49 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2012 by Amaury Pouly
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef __HWSTUB_CONFIG__
22#define __HWSTUB_CONFIG__
23
24#include "target-config.h"
25
26#define STACK_SIZE 0x1000
27#define MAX_LOGF_SIZE 128
28
29#if defined(CPU_ARM) && defined(__ASSEMBLER__)
30/* ARMv4T doesn't switch the T bit when popping pc directly, we must use BX */
31.macro ldmpc cond="", order="ia", regs
32#if ARM_ARCH == 4 && defined(USE_THUMB)
33 ldm\cond\order sp!, { \regs, lr }
34 bx\cond lr
35#else
36 ldm\cond\order sp!, { \regs, pc }
37#endif
38.endm
39.macro ldrpc cond=""
40#if ARM_ARCH == 4 && defined(USE_THUMB)
41 ldr\cond lr, [sp], #4
42 bx\cond lr
43#else
44 ldr\cond pc, [sp], #4
45#endif
46.endm
47#endif
48
49#endif /* __HWSTUB_CONFIG__ */