summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/mips/README
diff options
context:
space:
mode:
authorZubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>2016-10-04 12:31:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-07 16:43:57 +0100
commit8be92dcd5979a9cae55342b7493b36497de97fea (patch)
tree9718fd5c7fdcaa8d1fe163b1cda560e7cd45b468 /meta/conf/machine/include/mips/README
parent559f52fe9cce0614d1523e735860f055cbb99b4d (diff)
downloadpoky-8be92dcd5979a9cae55342b7493b36497de97fea.tar.gz
arch-mips: Add mipsisa{32, 64}r6{el, } tunes
Add support for MIPS Release 6 ISA and the various tune configurations. This patch adds the tunes for 32r6 and 64r6 n64 and not the n32 variants at the moment. Release 6 onwards, the tuples are now - mipsisa32r6-linux-gnu - mipsisa32r6el-linux-gnu - mipsisa64r6-linux-gnuabi64 - mipsisa64r6el-linux-gnuabi64 - mipsisa64r6-linux-gnuabin32 - mipsisa64r6el-linux-gnuabin32 For more details, check https://wiki.debian.org/Multiarch/Tuples (From OE-Core rev: 6b2e0c60c3222a13b33284f258d5c340222d759f) Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/mips/README')
-rw-r--r--meta/conf/machine/include/mips/README19
1 files changed, 18 insertions, 1 deletions
diff --git a/meta/conf/machine/include/mips/README b/meta/conf/machine/include/mips/README
index c375f316df..62fa1561ba 100644
--- a/meta/conf/machine/include/mips/README
+++ b/meta/conf/machine/include/mips/README
@@ -1,3 +1,6 @@
12016/09/30 - Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
2 - Add Release 6 support
3
12012/03/30 - Mark Hatle <mark.hatle@windriver.com> 42012/03/30 - Mark Hatle <mark.hatle@windriver.com>
2 - Initial Version 5 - Initial Version
3 6
@@ -6,9 +9,14 @@ MIPS currently defines 12 ABIs. Combinations of:
6 *) Hardware/Software Floating Point 9 *) Hardware/Software Floating Point
7 *) o32, n32, n64 ABI 10 *) o32, n32, n64 ABI
8 11
12Release 6 of the ISA is a major revision and doesn't build up on previous
13releases of the ISA.
14
15For more details about tuples, check https://wiki.debian.org/Multiarch/Tuples
16
9TUNE_ARCH, the GNU canonical arch, is defined as: 17TUNE_ARCH, the GNU canonical arch, is defined as:
10 18
11mips${MIPSPKGSFX_BYTE}${MIPSPKGSFX_ENDIAN} 19"mips${MIPSPKGSFX_32R6}${MIPSPKGSFX_64R6}${MIPSPKGSFX_BYTE}${MIPSPKGSFX_R6}${MIPSPKGSFX_ENDIAN}"
12 20
13The package arch is defined in such a way to generated a standard naming 21The package arch is defined in such a way to generated a standard naming
14scheme. The scheme is: <mips variant>[-nf][-n32] 22scheme. The scheme is: <mips variant>[-nf][-n32]
@@ -34,3 +42,12 @@ that the tune is using a non-floating point ABI.
34MIPSPKGSFX_ABI - This is used to specify an alternative ABI when the previous 42MIPSPKGSFX_ABI - This is used to specify an alternative ABI when the previous
35values are not enough to distringuish the package. "-n32" is added when 43values are not enough to distringuish the package. "-n32" is added when
36building for N32 ABI. 44building for N32 ABI.
45
46MIPSPKGSFX_R6 - This is used to specify the presence of release 6.
47"r6" is added in the tuple for release 6 of the isa.
48
49MIPSPKGSFX_64R6 - This is used to specify "isa" in the tuple.
50Release 6 onwards we use "mipsisa64" instead of just "mips64".
51
52MIPSPKGSFX_32R6 - This is used to specify "isa32" in the tuple.
53Release 6 onwards we use "mipsisa32" instead of just "mips".