WIP FPC-III support
[linux/fpc-iii.git] / arch / sh / include / mach-kfr2r09 / mach / romimage.h
blob209275872ff06e43b053aea98ff496273170fb5e
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifdef __ASSEMBLY__
4 /* kfr2r09 board specific boot code:
5 * converts the "partner-jet-script.txt" script into assembly
6 * the assembly code is the first code to be executed in the romImage
7 */
9 #include <asm/romimage-macros.h>
10 #include <mach/partner-jet-setup.txt>
12 /* execute icbi after enabling cache */
13 mov.l 1f, r0
14 icbi @r0
16 /* jump to cached area */
17 mova 2f, r0
18 jmp @r0
19 nop
21 .align 2
22 1: .long 0xa8000000
25 #else /* __ASSEMBLY__ */
27 static inline void mmcif_update_progress(int nr)
31 #endif /* __ASSEMBLY__ */