Commit f9f1c8db authored by Ralf Baechle's avatar Ralf Baechle

MIPS: IP22: Reformat inline assembler code to modern standards.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent e4c64e6f
...@@ -31,26 +31,29 @@ static inline void indy_sc_wipe(unsigned long first, unsigned long last) ...@@ -31,26 +31,29 @@ static inline void indy_sc_wipe(unsigned long first, unsigned long last)
unsigned long tmp; unsigned long tmp;
__asm__ __volatile__( __asm__ __volatile__(
".set\tpush\t\t\t# indy_sc_wipe\n\t" " .set push # indy_sc_wipe \n"
".set\tnoreorder\n\t" " .set noreorder \n"
".set\tmips3\n\t" " .set mips3 \n"
".set\tnoat\n\t" " .set noat \n"
"mfc0\t%2, $12\n\t" " mfc0 %2, $12 \n"
"li\t$1, 0x80\t\t\t# Go 64 bit\n\t" " li $1, 0x80 # Go 64 bit \n"
"mtc0\t$1, $12\n\t" " mtc0 $1, $12 \n"
" \n"
"dli\t$1, 0x9000000080000000\n\t" " dli $1, 0x9000000080000000 \n"
"or\t%0, $1\t\t\t# first line to flush\n\t" " or %0, $1 # first line to flush \n"
"or\t%1, $1\t\t\t# last line to flush\n\t" " or %1, $1 # last line to flush \n"
".set\tat\n\t" " .set at \n"
" \n"
"1:\tsw\t$0, 0(%0)\n\t" "1: sw $0, 0(%0) \n"
"bne\t%0, %1, 1b\n\t" " bne %0, %1, 1b \n"
" daddu\t%0, 32\n\t" " daddu %0, 32 \n"
" \n"
"mtc0\t%2, $12\t\t\t# Back to 32 bit\n\t" " mtc0 %2, $12 # Back to 32 bit \n"
"nop; nop; nop; nop;\n\t" " nop # pipeline hazard \n"
".set\tpop" " nop \n"
" nop \n"
" nop \n"
" .set pop \n"
: "=r" (first), "=r" (last), "=&r" (tmp) : "=r" (first), "=r" (last), "=&r" (tmp)
: "0" (first), "1" (last)); : "0" (first), "1" (last));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment