summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-09-17 14:11:52 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2021-10-05 13:51:51 +0200
commit76bced6fe146f2d9f36b21c37e24288701baec28 (patch)
tree128e61088060f937db3178f52a7ec57955a79916 /Documentation
parentd53f454e588899cd7331b3bc8d272c6aa2ad916d (diff)
downloadbarebox-76bced6fe146f2d9f36b21c37e24288701baec28.tar.gz
barebox-76bced6fe146f2d9f36b21c37e24288701baec28.tar.xz
ARM: document arm_setup_stack() pitfalls
Many arm32 board entry points use arm_setup_stack() to set up the stack from C code. This necessitates using __naked, which probably has been our most frequent cause of misscompiled C code. GCC is quite clear that: Only basic asm statements can safely be included in naked functions While using extended asm or a mixture of basic asm and C code may appear to work, they cannot be depended upon to work reliably and are not supported. But some boards use it anyway, because it's nice to avoid writing assembly. Reading generated assembly to spot compiler miscompilation isn't that nice though, so add some documentation, comments and compiler diagnostics to hopefully reduce future porting effort. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20210917121152.16033-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devel/porting.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/Documentation/devel/porting.rst b/Documentation/devel/porting.rst
index 97b787327c..1abaabc03a 100644
--- a/Documentation/devel/porting.rst
+++ b/Documentation/devel/porting.rst
@@ -169,6 +169,27 @@ Looking at other boards you might see some different patterns:
needs to be done at start. If a board similar to yours does this, you probably
want to do likewise.
+ - ``__naked``: All functions called before stack is correctly initialized must be
+ marked with this attribute. Otherwise, function prologue and epilogue may access
+ the uninitialized stack. If the compiler for the target architecture doesn't
+ support the attribute, stack must be set up in non-inline assembly:
+ Either a barebox assembly entry point or in earlier firmware.
+ The compiler may still spill excess local C variables used in a naked function
+ to the stack before it was initialized.
+ A naked function should thus preferably only contain inline assembly, set up a
+ stack and jump directly after to a ``noinline`` non naked function where the
+ stack is then normally usable.
+
+ - ``noinline``: Compiler code inlining is oblivious to stack manipulation in
+ inline assembly. If you want to ensure a new function has its own stack frame
+ (e.g. after setting up the stack in a ``__naked`` function), you must jump to
+ a ``__noreturn noinline`` function.
+
+ - ``arm_setup_stack``: For 32-bit ARM, ``arm_setup_stack`` initializes the stack
+ top when called from a naked C function, which allows to write the entry point
+ directly in C. The stack pointer will be decremented before pushing values.
+ Avoid interleaving with C-code. See ``__naked`` above for more details.
+
- ``__dtb_z_my_board_start[];``: Because the PBL normally doesn't parse anything out
of the device tree blob, boards can benefit from keeping the device tree blob
compressed and only unpack it in barebox proper. Such LZO-compressed device trees