2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-12-01 04:32:10 +00:00
|
|
|
/*
|
2016-02-06 03:30:11 +00:00
|
|
|
* U-Boot - linkage.h
|
2011-12-01 04:32:10 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2005-2007 Analog Devices Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_LINKAGE_H
|
|
|
|
#define _LINUX_LINKAGE_H
|
|
|
|
|
|
|
|
#include <asm/linkage.h>
|
|
|
|
|
2015-02-19 15:51:27 +00:00
|
|
|
/* Some toolchains use other characters (e.g. '`') to mark new line in macro */
|
|
|
|
#ifndef ASM_NL
|
|
|
|
#define ASM_NL ;
|
|
|
|
#endif
|
|
|
|
|
2011-12-01 04:32:10 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define CPP_ASMLINKAGE extern "C"
|
|
|
|
#else
|
|
|
|
#define CPP_ASMLINKAGE
|
|
|
|
#endif
|
|
|
|
|
2014-12-03 08:36:57 +00:00
|
|
|
#ifndef asmlinkage
|
2011-12-01 04:32:10 +00:00
|
|
|
#define asmlinkage CPP_ASMLINKAGE
|
2014-12-03 08:36:57 +00:00
|
|
|
#endif
|
2011-12-01 04:32:10 +00:00
|
|
|
|
|
|
|
#define SYMBOL_NAME_STR(X) #X
|
|
|
|
#define SYMBOL_NAME(X) X
|
|
|
|
#ifdef __STDC__
|
|
|
|
#define SYMBOL_NAME_LABEL(X) X##:
|
|
|
|
#else
|
|
|
|
#define SYMBOL_NAME_LABEL(X) X:
|
|
|
|
#endif
|
|
|
|
|
2012-03-08 07:20:17 +00:00
|
|
|
#ifndef __ALIGN
|
2011-12-01 04:32:10 +00:00
|
|
|
#define __ALIGN .align 4
|
2012-03-08 07:20:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __ALIGN_STR
|
2011-12-01 04:32:10 +00:00
|
|
|
#define __ALIGN_STR ".align 4"
|
2012-03-08 07:20:17 +00:00
|
|
|
#endif
|
2011-12-01 04:32:10 +00:00
|
|
|
|
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
|
|
|
|
#define ALIGN __ALIGN
|
|
|
|
#define ALIGN_STR __ALIGN_STR
|
|
|
|
|
|
|
|
#define LENTRY(name) \
|
2015-02-19 15:51:27 +00:00
|
|
|
ALIGN ASM_NL \
|
2011-12-01 04:32:10 +00:00
|
|
|
SYMBOL_NAME_LABEL(name)
|
|
|
|
|
|
|
|
#define ENTRY(name) \
|
2015-02-19 15:51:27 +00:00
|
|
|
.globl SYMBOL_NAME(name) ASM_NL \
|
2011-12-01 04:32:10 +00:00
|
|
|
LENTRY(name)
|
|
|
|
|
2013-12-14 03:47:31 +00:00
|
|
|
#define WEAK(name) \
|
2015-02-19 15:51:27 +00:00
|
|
|
.weak SYMBOL_NAME(name) ASM_NL \
|
2013-12-14 03:47:31 +00:00
|
|
|
LENTRY(name)
|
|
|
|
|
2011-12-01 04:32:10 +00:00
|
|
|
#ifndef END
|
|
|
|
#define END(name) \
|
|
|
|
.size name, .-name
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ENDPROC
|
|
|
|
#define ENDPROC(name) \
|
2015-02-19 15:51:27 +00:00
|
|
|
.type name STT_FUNC ASM_NL \
|
2011-12-01 04:32:10 +00:00
|
|
|
END(name)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|