fcbbb91116
After removal of CAR_MIGRATION there are no more reasons to carry around ENV_STAGE_HAS_BSS_SECTION=n case. Replace 'MAYBE_STATIC_BSS' with 'static' and remove explicit zero-initializers. Change-Id: I14dd9f52da5b06f0116bd97496cf794e5e71bc37 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40535 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
#ifndef STDDEF_H
|
|
#define STDDEF_H
|
|
|
|
#include <commonlib/helpers.h>
|
|
|
|
typedef long ptrdiff_t;
|
|
#ifndef __SIZE_TYPE__
|
|
#define __SIZE_TYPE__ unsigned long
|
|
#endif
|
|
typedef __SIZE_TYPE__ size_t;
|
|
/* There is a GCC macro for a size_t type, but not
|
|
* for a ssize_t type. Below construct tricks GCC
|
|
* into making __SIZE_TYPE__ signed.
|
|
*/
|
|
#define unsigned signed
|
|
typedef __SIZE_TYPE__ ssize_t;
|
|
#undef unsigned
|
|
|
|
typedef int wchar_t;
|
|
typedef unsigned int wint_t;
|
|
|
|
#define NULL ((void *)0)
|
|
|
|
/* The devicetree data structures are only mutable in ramstage. All other
|
|
stages have a constant devicetree. */
|
|
#if !ENV_PAYLOAD_LOADER
|
|
#define DEVTREE_EARLY 1
|
|
#else
|
|
#define DEVTREE_EARLY 0
|
|
#endif
|
|
|
|
#if DEVTREE_EARLY
|
|
#define DEVTREE_CONST const
|
|
#else
|
|
#define DEVTREE_CONST
|
|
#endif
|
|
|
|
#if ENV_STAGE_HAS_DATA_SECTION
|
|
#define MAYBE_STATIC_NONZERO static
|
|
#else
|
|
#define MAYBE_STATIC_NONZERO
|
|
#endif
|
|
|
|
/* Provide a pointer to address 0 that thwarts any "accessing this is
|
|
* undefined behaviour and do whatever" trickery in compilers.
|
|
* Use when you _really_ need to read32(zeroptr) (ie. read address 0).
|
|
*/
|
|
extern char zeroptr[];
|
|
|
|
#endif /* STDDEF_H */
|