All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai] ARM/BeagleBone Thumb2 Kernels
@ 2014-01-24  2:56 Charles Steinkuehler
  2014-01-24 10:52 ` Gilles Chanteperdrix
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Charles Steinkuehler @ 2014-01-24  2:56 UTC (permalink / raw)
  To: xenomai

So when I try to build a Xenomai patched kernel for the BeagleBone using
Thumb2 instructions, I get the following linker errors:

>   LD      init/built-in.o
> arch/arm/kernel/built-in.o: In function `__irq_usr':
> :(.kprobes.text+0x3c2): relocation truncated to fit: R_ARM_THM_JUMP19
> against symbol `__ipipe_ret_to_user_irqs_disabled' defined in .text
> section in arch/arm/kernel/built-in.o
> arch/arm/kernel/built-in.o: In function `ret_from_exception':
> :(.kprobes.text+0x600): relocation truncated to fit: R_ARM_THM_JUMP19
> against symbol `__ipipe_ret_to_user_irqs_disabled' defined in .text
> section in arch/arm/kernel/built-in.o
> make: *** [vmlinux] Error 1
> 
> The link error goes away if I disable CONFIG_THUMB2_KERNEL, which wasn't
> set in the original kernel config.

This has recently become more of a problem, as the default BeagleBone
kernel has switched to enabling CONFIG_THUMB2_KERNEL.

A bit of Googling turned up the following patch to fix a similar problem
on the Tegra (not Xenomai related):

  http://patchwork.ozlabs.org/patch/236760/

I applied a similar if-then patch (see below) to the two Xenomai calls
that generate the linker errors, and the result is a working kernel.

Can someone more familiar with iPipeand ARM assembly review the attached
minor patch and advise on whether or not it seems OK?

As I understand things, the two bne calls in the default ipipe patch
don't work when building a kernel using the thumb instructions due to
the limited range of the conditional branch.  Using the if-then
construct when THUMB2 is enabled allows for a larger addressing range in
the branch, thus avoiding the linker errors.  If this seems OK, perhaps
it should be applied to the master ipipe patch set?  If not, is there a
better way to avoid the linker errors when building with the thumb
instructions?

-- 
Charles Steinkuehler
charles@steinkuehler.net
-------------- next part --------------
diff --git a/arch/arm/kernel/entry-armv.S b/arch/arm/kernel/entry-armv.S
index e2bc263..6f4d9f0 100644
--- a/arch/arm/kernel/entry-armv.S
+++ b/arch/arm/kernel/entry-armv.S
@@ -469,6 +469,7 @@ __irq_usr:
 	kuser_cmpxchg_check
 	irq_handler
 #ifdef CONFIG_IPIPE
+THUMB(	it	ne )
 	bne	__ipipe_ret_to_user_irqs_disabled
 #endif	/* CONFIG_IPIPE */
 	get_thread_info tsk
@@ -767,6 +768,7 @@ ENTRY(ret_from_exception)
 	disable_irq
 	bl	__ipipe_check_root
 	cmp     r0, #1
+THUMB(	it	ne )
 	bne	__ipipe_ret_to_user_irqs_disabled  @ Fast exit path over non-root domains
 #endif /* CONFIG_IPIPE */
 	get_thread_info tsk
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 261 bytes
Desc: OpenPGP digital signature
URL: <http://www.xenomai.org/pipermail/xenomai/attachments/20140123/8019559b/attachment.sig>

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-01-25 18:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-24  2:56 [Xenomai] ARM/BeagleBone Thumb2 Kernels Charles Steinkuehler
2014-01-24 10:52 ` Gilles Chanteperdrix
2014-01-24 11:22 ` Gilles Chanteperdrix
2014-01-24 11:38   ` Charles Steinkuehler
2014-01-24 12:18     ` Gilles Chanteperdrix
2014-01-24 11:53       ` Charles Steinkuehler
2014-01-24 12:28         ` Gilles Chanteperdrix
2014-01-25 18:14 ` Gilles Chanteperdrix
2014-01-25 17:48   ` Charles Steinkuehler

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.