Linux Audio

Check our new training course

Loading...
v3.5.6
 
 1#ifndef __ROMIMAGE_MACRO_H
 2#define __ROMIMAGE_MACRO_H
 3
 4/* The LIST command is used to include comments in the script */
 5.macro	LIST comment
 6.endm
 7
 8/* The ED command is used to write a 32-bit word */
 9.macro  ED, addr, data
10	mov.l 1f, r1
11	mov.l 2f, r0
12	mov.l r0, @r1
13	bra 3f
14	 nop
15	.align 2
161 :	.long \addr
172 :	.long \data
183 :
19.endm
20
21/* The EW command is used to write a 16-bit word */
22.macro  EW, addr, data
23	mov.l 1f, r1
24	mov.l 2f, r0
25	mov.w r0, @r1
26	bra 3f
27	 nop
28	.align 2
291 :	.long \addr
302 :	.long \data
313 :
32.endm
33
34/* The EB command is used to write an 8-bit word */
35.macro  EB, addr, data
36	mov.l 1f, r1
37	mov.l 2f, r0
38	mov.b r0, @r1
39	bra 3f
40	 nop
41	.align 2
421 :	.long \addr
432 :	.long \data
443 :
45.endm
46
47/* The WAIT command is used to delay the execution */
48.macro  WAIT, time
49	mov.l  2f, r3
501 :
51	nop
52	tst     r3, r3
53	bf/s    1b
54	dt      r3
55	bra	3f
56	 nop
57	.align 2
582 :	.long \time * 100
593 :
60.endm
61
62/* The DD command is used to read a 32-bit word */
63.macro  DD, addr, addr2, nr
64	mov.l 1f, r1
65	mov.l @r1, r0
66	bra 2f
67	 nop
68	.align 2
691 :	.long \addr
702 :
71.endm
72
73#endif /* __ROMIMAGE_MACRO_H */
v6.2
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef __ROMIMAGE_MACRO_H
 3#define __ROMIMAGE_MACRO_H
 4
 5/* The LIST command is used to include comments in the script */
 6.macro	LIST comment
 7.endm
 8
 9/* The ED command is used to write a 32-bit word */
10.macro  ED, addr, data
11	mov.l 1f, r1
12	mov.l 2f, r0
13	mov.l r0, @r1
14	bra 3f
15	 nop
16	.align 2
171 :	.long \addr
182 :	.long \data
193 :
20.endm
21
22/* The EW command is used to write a 16-bit word */
23.macro  EW, addr, data
24	mov.l 1f, r1
25	mov.l 2f, r0
26	mov.w r0, @r1
27	bra 3f
28	 nop
29	.align 2
301 :	.long \addr
312 :	.long \data
323 :
33.endm
34
35/* The EB command is used to write an 8-bit word */
36.macro  EB, addr, data
37	mov.l 1f, r1
38	mov.l 2f, r0
39	mov.b r0, @r1
40	bra 3f
41	 nop
42	.align 2
431 :	.long \addr
442 :	.long \data
453 :
46.endm
47
48/* The WAIT command is used to delay the execution */
49.macro  WAIT, time
50	mov.l  2f, r3
511 :
52	nop
53	tst     r3, r3
54	bf/s    1b
55	dt      r3
56	bra	3f
57	 nop
58	.align 2
592 :	.long \time * 100
603 :
61.endm
62
63/* The DD command is used to read a 32-bit word */
64.macro  DD, addr, addr2, nr
65	mov.l 1f, r1
66	mov.l @r1, r0
67	bra 2f
68	 nop
69	.align 2
701 :	.long \addr
712 :
72.endm
73
74#endif /* __ROMIMAGE_MACRO_H */