public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Mike Frysinger <vapier@gentoo.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [RFC] ARM ISA/cpu/SoC code organization for cache and other functions
Date: Fri, 14 Oct 2011 00:43:05 -0400	[thread overview]
Message-ID: <201110140043.06763.vapier@gentoo.org> (raw)
In-Reply-To: <4E727134.6090408@aribaud.net>

On Thursday 15 September 2011 17:42:12 Albert ARIBAUD wrote:
> The object files shall be linked in decreasing precedence order, i.e.
> SoC file first, then cpu file, then isa file, then lib last, so that for
> each cache op, the weak symbol mechanism uses the most specific one.

as long as the weak symbols don't cause a pain in terms of making sure the 
right one is selected.  having one depth of weak and strong is fine, but two 
deep sounds like it could be fragile.

i wonder if cascading aliases would work ?  that way each symbol only has one 
weak/strong pair to deal with.  hopefully it's not too confusing ?

>          (isa)   (cpu)     SoC)
> arch/arm
>          /armv5t/
>                  cache-ops.c

__weak void arm_isa_icache_flush(...) { ... }
void icache_flush(...) __attribute__((alias("arm_isa_icache_flush")));

>                  arm926ejs/
>                            cache-ops.c

__weak void arm_cpu_icache_flush(...) { ... }
void arm_isa_icache_flush(...) __attribute__((alias("arm_cpu_icache_flush")));

>                            orion5x/
>                                    cache-ops.c

void arm_soc_icache_flush(...) { ... }
void arm_cpu_icache_flush(...) __attribute__((alias("arm_soc_icache_flush")));
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20111014/5584858a/attachment.pgp 

  parent reply	other threads:[~2011-10-14  4:43 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-15 21:42 [U-Boot] [RFC] ARM ISA/cpu/SoC code organization for cache and other functions Albert ARIBAUD
2011-09-15 23:10 ` Jason
2011-09-15 23:18   ` Jason
2011-09-16 17:24     ` Albert ARIBAUD
2011-10-14  4:43 ` Mike Frysinger [this message]
2011-10-18 18:50   ` Albert ARIBAUD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201110140043.06763.vapier@gentoo.org \
    --to=vapier@gentoo.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox