diff options
author | Steven J. Hill <sjhill@mips.com> | 2013-02-06 02:52:02 +0400 |
---|---|---|
committer | Steven J. Hill <Steven.Hill@imgtec.com> | 2013-05-02 01:32:46 +0400 |
commit | a6a4834cdbef23a7db16e7598c8c6e427ac82531 (patch) | |
tree | 9a2a89d17ef06eb672dc03bddce61f3aea889558 /arch/mips/mm/Makefile | |
parent | abc597fe623cfd7d3b18d5235c54f3d567d2c3d3 (diff) | |
download | linux-a6a4834cdbef23a7db16e7598c8c6e427ac82531.tar.xz |
MIPS: microMIPS: uasm: Add microMIPS micro assembler support.
Add new file 'uasm-micromips.c' that allows the micro assembler
to generate microMIPS ISA code. It can be included in the kernel
alongside the classic ISA as long as the platform supports the
microMIPS ISA.
Signed-off-by: Steven J. Hill <sjhill@mips.com>
Cc: linux-mips@linux-mips.org
Cc: cernekee@gmail.com
Cc: kevink@paralogos.com
Cc: ddaney.cavm@gmail.com
Patchwork: https://patchwork.linux-mips.org/patch/4923/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
(cherry picked from commit 5f011a866afbd03a5379f67f4e70e5efbdfc16e9)
Diffstat (limited to 'arch/mips/mm/Makefile')
-rw-r--r-- | arch/mips/mm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/mm/Makefile b/arch/mips/mm/Makefile index 9e90c2182aa5..e87aae1f2e80 100644 --- a/arch/mips/mm/Makefile +++ b/arch/mips/mm/Makefile @@ -22,3 +22,5 @@ obj-$(CONFIG_IP22_CPU_SCACHE) += sc-ip22.o obj-$(CONFIG_R5000_CPU_SCACHE) += sc-r5k.o obj-$(CONFIG_RM7000_CPU_SCACHE) += sc-rm7k.o obj-$(CONFIG_MIPS_CPU_SCACHE) += sc-mips.o + +obj-$(CONFIG_SYS_SUPPORTS_MICROMIPS) += uasm-micromips.o |