]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/mips/include/asm/u-boot-mips.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / mips / include / asm / u-boot-mips.h
1 /*
2 * SPDX-License-Identifier: GPL-2.0+
3 *
4 * Copyright (C) 2003 Wolfgang Denk, DENX Software Engineering, wd@denx.de
5 */
6
7 static inline unsigned long bss_start(void)
8 {
9 extern char __bss_start[];
10 return (unsigned long) &__bss_start;
11 }
12
13 static inline unsigned long bss_end(void)
14 {
15 extern ulong __bss_end;
16 return (unsigned long) &__bss_end;
17 }
18
19 static inline unsigned long image_copy_end(void)
20 {
21 extern char __image_copy_end[];
22 return (unsigned long) &__image_copy_end;
23 }
24
25 extern int incaip_set_cpuclk(void);