From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 01/30] arch/arm: add blind options to know the ARM architecture
Date: Tue, 21 Oct 2014 23:06:13 +0200 [thread overview]
Message-ID: <20141021210613.GC23999@free.fr> (raw)
In-Reply-To: <1413923237-2861-2-git-send-email-thomas.petazzoni@free-electrons.com>
Thomas, All,
On 2014-10-21 22:26 +0200, Thomas Petazzoni spake thusly:
> In preparation to the removal of BR2_GCC_TARGET_ARCH for ARM, this
> commit introduces a number of blind options for each ARM architecture,
> so that packages/toolchains that had dependencies using
> BR2_GCC_TARGET_ARCH can continue to express their dependencies. It can
> also be used to simplify package dependencies that were using the
> individual ARM core options.
>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
> arch/Config.in.arm | 30 ++++++++++++++++++++++++++++++
> 1 file changed, 30 insertions(+)
>
> diff --git a/arch/Config.in.arm b/arch/Config.in.arm
> index 201ff1d..5441c8d 100644
> --- a/arch/Config.in.arm
> +++ b/arch/Config.in.arm
> @@ -37,6 +37,18 @@ config BR2_ARM_CPU_HAS_THUMB
> config BR2_ARM_CPU_HAS_THUMB2
> bool
>
> +config BR2_ARM_CPU_ARMV4
> + bool
> +
> +config BR2_ARM_CPU_ARMV5
> + bool
> +
> +config BR2_ARM_CPU_ARMV6
> + bool
> +
> +config BR2_ARM_CPU_ARMV7A
> + bool
I still believe we could go with ARMV7 only, since we only have CPUs of
the A series for now.
When we add a new CPU of the M series, then we could go this route:
- add a new config option stating the CPU only has Thumb-2:
config BR2_ARM_CPU_HAS_THUMB2_ONLY
bool
or add another option:
config BR2_ARM_CPU_HAS_ARM
bool # 'y' is CPU has the ARM mode
- use it in packages that have an interest in them.
- select it from appropriate CPUs
But we can rename that option later, since it is a blind option, it will
have no incidence on defconfig or .config files. So:
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> choice
> prompt "Target Architecture Variant"
> depends on BR2_arm || BR2_armeb
> @@ -47,70 +59,88 @@ choice
> config BR2_arm920t
> bool "arm920t"
> select BR2_ARM_CPU_HAS_THUMB
> + select BR2_ARM_CPU_ARMV4
> config BR2_arm922t
> bool "arm922t"
> select BR2_ARM_CPU_HAS_THUMB
> + select BR2_ARM_CPU_ARMV4
> config BR2_arm926t
> bool "arm926t"
> select BR2_ARM_CPU_MAYBE_HAS_VFPV2
> select BR2_ARM_CPU_HAS_THUMB
> + select BR2_ARM_CPU_ARMV5
> config BR2_arm1136jf_s_r0
> bool "arm1136jf_s rev0"
> select BR2_ARM_CPU_HAS_VFPV2
> select BR2_ARM_CPU_HAS_THUMB
> + select BR2_ARM_CPU_ARMV6
> config BR2_arm1136jf_s_r1
> bool "arm1136jf_s rev1"
> select BR2_ARM_CPU_HAS_VFPV2
> select BR2_ARM_CPU_HAS_THUMB
> + select BR2_ARM_CPU_ARMV6
> config BR2_arm1176jz_s
> bool "arm1176jz-s"
> select BR2_ARM_CPU_HAS_THUMB
> + select BR2_ARM_CPU_ARMV6
> config BR2_arm1176jzf_s
> bool "arm1176jzf-s"
> select BR2_ARM_CPU_HAS_VFPV2
> select BR2_ARM_CPU_HAS_THUMB
> + select BR2_ARM_CPU_ARMV6
> config BR2_cortex_a5
> bool "cortex-A5"
> select BR2_ARM_CPU_MAYBE_HAS_NEON
> select BR2_ARM_CPU_MAYBE_HAS_VFPV4
> select BR2_ARM_CPU_HAS_THUMB2
> + select BR2_ARM_CPU_ARMV7A
> config BR2_cortex_a7
> bool "cortex-A7"
> select BR2_ARM_CPU_HAS_NEON
> select BR2_ARM_CPU_HAS_VFPV4
> select BR2_ARM_CPU_HAS_THUMB2
> + select BR2_ARM_CPU_ARMV7A
> config BR2_cortex_a8
> bool "cortex-A8"
> select BR2_ARM_CPU_HAS_NEON
> select BR2_ARM_CPU_HAS_VFPV3
> select BR2_ARM_CPU_HAS_THUMB2
> + select BR2_ARM_CPU_ARMV7A
> config BR2_cortex_a9
> bool "cortex-A9"
> select BR2_ARM_CPU_MAYBE_HAS_NEON
> select BR2_ARM_CPU_MAYBE_HAS_VFPV3
> select BR2_ARM_CPU_HAS_THUMB2
> + select BR2_ARM_CPU_ARMV7A
> config BR2_cortex_a12
> bool "cortex-A12"
> select BR2_ARM_CPU_HAS_NEON
> select BR2_ARM_CPU_HAS_VFPV4
> select BR2_ARM_CPU_HAS_THUMB2
> + select BR2_ARM_CPU_ARMV7A
> config BR2_cortex_a15
> bool "cortex-A15"
> select BR2_ARM_CPU_HAS_NEON
> select BR2_ARM_CPU_HAS_VFPV4
> select BR2_ARM_CPU_HAS_THUMB2
> + select BR2_ARM_CPU_ARMV7A
> config BR2_fa526
> bool "fa526/626"
> + select BR2_ARM_CPU_ARMV4
> config BR2_pj4
> bool "pj4"
> select BR2_ARM_CPU_HAS_VFPV3
> + select BR2_ARM_CPU_ARMV7A
> config BR2_strongarm
> bool "strongarm sa110/sa1100"
> + select BR2_ARM_CPU_ARMV4
> config BR2_xscale
> bool "xscale"
> select BR2_ARM_CPU_HAS_THUMB
> + select BR2_ARM_CPU_ARMV5
> config BR2_iwmmxt
> bool "iwmmxt"
> + select BR2_ARM_CPU_ARMV5
> endchoice
>
> config BR2_arm1136jf_s
> --
> 2.0.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
next prev parent reply other threads:[~2014-10-21 21:06 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-21 20:26 [Buildroot] [PATCH v2 00/30] Removal of BR2_GCC_TARGET_TUNE and other arch/ updates Thomas Petazzoni
2014-10-21 20:26 ` [Buildroot] [PATCH v2 01/30] arch/arm: add blind options to know the ARM architecture Thomas Petazzoni
2014-10-21 21:06 ` Yann E. MORIN [this message]
2014-10-21 20:26 ` [Buildroot] [PATCH v2 02/30] ffmpeg: use the new BR2_ARM_CPU_ARM* options Thomas Petazzoni
2014-10-21 21:09 ` Yann E. MORIN
2014-10-21 20:26 ` [Buildroot] [PATCH v2 03/30] ffmpeg: fix ARM condition for --{enable, disable}-vfp Thomas Petazzoni
2014-10-21 21:15 ` Yann E. MORIN
2014-10-21 20:26 ` [Buildroot] [PATCH v2 04/30] gst-ffmpeg: use the new BR2_ARM_CPU_ARM* options Thomas Petazzoni
2014-10-21 21:18 ` Yann E. MORIN
2014-10-22 7:34 ` Thomas Petazzoni
2014-10-22 16:14 ` Arnout Vandecappelle
2014-10-23 7:49 ` Thomas Petazzoni
2014-10-23 8:27 ` Arnout Vandecappelle
2014-10-21 20:26 ` [Buildroot] [PATCH v2 05/30] gst-ffmpeg: allow usage of ARMv6 optimizations on ARMv7 platforms Thomas Petazzoni
2014-10-21 21:24 ` Yann E. MORIN
2014-10-21 20:26 ` [Buildroot] [PATCH v2 06/30] gst1-libav: use the new BR2_ARM_CPU_ARM* options Thomas Petazzoni
2014-10-21 20:26 ` [Buildroot] [PATCH v2 07/30] gst1-libav: allow usage of ARMv6 optimizations on ARMv7 platforms Thomas Petazzoni
2014-10-21 20:26 ` [Buildroot] [PATCH v2 08/30] mplayer: use BR2_ARM_CPU_ARM* options Thomas Petazzoni
2014-11-06 22:33 ` Peter Korsgaard
2014-10-21 20:26 ` [Buildroot] [PATCH v2 09/30] libplayer: use BR2_ARM_CPU_ARM* option Thomas Petazzoni
2014-10-21 20:26 ` [Buildroot] [PATCH v2 10/30] nettle: use the BR2_ARM_CPU_ARM* options Thomas Petazzoni
2014-10-21 20:26 ` [Buildroot] [PATCH v2 11/30] nodejs: use " Thomas Petazzoni
2014-10-21 20:26 ` [Buildroot] [PATCH v2 12/30] qt5: use the " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 13/30] speex: use " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 14/30] vo-aacenc: use the " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 15/30] webkit: use " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 16/30] valgrind: use the " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 17/30] x264: use the BR2_ARM_CPU_ARMV7A option Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 18/30] libnspr: " Thomas Petazzoni
2014-11-06 22:57 ` Peter Korsgaard
2014-10-21 20:27 ` [Buildroot] [PATCH v2 19/30] toolchain-external: use BR2_ARM_CPU_ARM* options Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 20/30] dhcpcd: do not pass --target option Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 21/30] arch/arm: do not distinguish revisions of ARM1136JF-S Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 22/30] arch/arm: remove BR2_GCC_TARGET_ARCH definitions on ARM Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 23/30] ffmpeg: use arch and cpu instead of tune Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 24/30] arch/x86: get rid of BR2_GCC_TARGET_TUNE Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 25/30] arch/sparc: " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 26/30] arch/powerpc: " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 27/30] arch/m68k: " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 28/30] gcc: do not use BR2_GCC_TARGET_TUNE anymore Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 29/30] toolchain-external: " Thomas Petazzoni
2014-10-21 20:27 ` [Buildroot] [PATCH v2 30/30] arch: remove the BR2_GCC_TARGET_TUNE option Thomas Petazzoni
2014-10-25 10:46 ` [Buildroot] [PATCH v2 00/30] Removal of BR2_GCC_TARGET_TUNE and other arch/ updates Thomas Petazzoni
2014-11-06 7:24 ` Thomas Petazzoni
2014-11-06 22:06 ` Peter Korsgaard
2014-11-06 23:20 ` Peter Korsgaard
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=20141021210613.GC23999@free.fr \
--to=yann.morin.1998@free.fr \
--cc=buildroot@busybox.net \
/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