repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
spi: efm32: Convert to use GPIO descriptors
[linux/fpc-iii.git]
/
arch
/
csky
/
abiv2
/
sysdep.h
blob
bbbedfd3477740cf0a9c1c810ee1735da1cb31bf
1
/* SPDX-License-Identifier: GPL-2.0 */
2
// Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
3
4
#ifndef __SYSDEP_H
5
#define __SYSDEP_H
6
7
#ifdef __ASSEMBLER__
8
9
#if defined(__CK860__)
10
#define LABLE_ALIGN \
11
.balignw 16, 0x6c03
12
13
#define PRE_BNEZAD(R)
14
15
#define BNEZAD(R, L) \
16
bnezad R, L
17
#else
18
#define LABLE_ALIGN \
19
.balignw 8, 0x6c03
20
21
#define PRE_BNEZAD(R) \
22
subi R, 1
23
24
#define BNEZAD(R, L) \
25
bnez R, L
26
#endif
27
28
#endif
29
30
#endif