blob: 4e119470ee2eac55b2620cff5c11f899d5d09012 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Macpaul Lin00f892f2011-10-11 22:33:15 +00002/*
3 * include/asm-nds32/macro.h
4 *
5 * Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6 * Copyright (C) 2011 Andes Technology Corporation
7 * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
Macpaul Lin00f892f2011-10-11 22:33:15 +00008 */
9
10#ifndef __ASM_NDS_MACRO_H
11#define __ASM_NDS_MACRO_H
12#ifdef __ASSEMBLY__
13
14/*
15 * These macros provide a convenient way to write 8, 16 and 32 bit data
16 * to an "immediate address (address used by periphal)" only.
17 * Registers r4 and r5 are used, any data in these registers are
18 * overwritten by the macros.
19 * The macros are valid for any NDS32 architecture, they do not implement
20 * any memory barriers so caution is recommended when using these when the
21 * caches are enabled or on a multi-core system.
22 */
23
24.macro write32, addr, data
rickb19cc6b2016-01-19 13:52:10 +080025 li $r4, \addr
26 li $r5, \data
Macpaul Lin00f892f2011-10-11 22:33:15 +000027 swi $r5, [$r4]
28.endm
29
30.macro write16, addr, data
rickb19cc6b2016-01-19 13:52:10 +080031 li $r4, \addr
32 li $r5, \data
Macpaul Lin00f892f2011-10-11 22:33:15 +000033 shi $r5, [$r4]
34.endm
35
36.macro write8, addr, data
rickb19cc6b2016-01-19 13:52:10 +080037 li $r4, \addr
38 li $r5, \data
Macpaul Lin00f892f2011-10-11 22:33:15 +000039 sbi $r5, [$r4]
40.endm
41
42/*
43 * This macro read a value from a register, then do OR operation
44 * (set bit fields) to the value, and then store it back to the register.
45 * Note: Instruction 'ori' supports immediate value up to 15 bits.
46 */
47.macro setbf32, addr, data
rickb19cc6b2016-01-19 13:52:10 +080048 li $r4, \addr
Macpaul Lin00f892f2011-10-11 22:33:15 +000049 lwi $r5, [$r4]
rickb19cc6b2016-01-19 13:52:10 +080050 li $r6, \data
Macpaul Lin00f892f2011-10-11 22:33:15 +000051 or $r5, $r5, $r6
52 swi $r5, [$r4]
53.endm
54
55.macro setbf15, addr, data
rickb19cc6b2016-01-19 13:52:10 +080056 li $r4, \addr
Macpaul Lin00f892f2011-10-11 22:33:15 +000057 lwi $r5, [$r4]
rickb19cc6b2016-01-19 13:52:10 +080058 ori $r5, $r5, \data
Macpaul Lin00f892f2011-10-11 22:33:15 +000059 swi $r5, [$r4]
60.endm
61
62/*
63 * This macro generates a loop that can be used for delays in the code.
64 * Register r4 is used, any data in this register is overwritten by the
65 * macro.
66 * The macro is valid for any NDS32 architeture. The actual time spent in the
67 * loop will vary from CPU to CPU though.
68 */
69
70.macro wait_timer, time
rickb19cc6b2016-01-19 13:52:10 +080071 li $r4, \time
Macpaul Lin00f892f2011-10-11 22:33:15 +0000721:
73 nop
74 addi $r4, $r4, -1
75 bnez $r4, 1b
76.endm
77
78#endif /* __ASSEMBLY__ */
79#endif /* __ASM_ARM_MACRO_H */