]> git.ipfire.org Git - people/ms/u-boot.git/blame - 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
CommitLineData
e034ea3b 1/*
1a459660 2 * SPDX-License-Identifier: GPL-2.0+
e034ea3b
DS
3 *
4 * Copyright (C) 2003 Wolfgang Denk, DENX Software Engineering, wd@denx.de
5 */
6
a52852c5
DS
7static inline unsigned long bss_start(void)
8{
716cc8cc 9 extern char __bss_start[];
a52852c5
DS
10 return (unsigned long) &__bss_start;
11}
12
13static inline unsigned long bss_end(void)
14{
15 extern ulong __bss_end;
16 return (unsigned long) &__bss_end;
17}
18
3420bf1c
DS
19static inline unsigned long image_copy_end(void)
20{
716cc8cc 21 extern char __image_copy_end[];
3420bf1c
DS
22 return (unsigned long) &__image_copy_end;
23}
24
e034ea3b 25extern int incaip_set_cpuclk(void);