gas: blackfin: add support for BF592 processors
authorMike Frysinger <vapier@gentoo.org>
Wed, 22 Sep 2010 20:17:51 +0000 (20:17 +0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 22 Sep 2010 20:17:51 +0000 (20:17 +0000)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
gas/ChangeLog
gas/config/tc-bfin.c
gas/doc/c-bfin.texi

index 168c01e26cd4ff95e546da26461f0ecad7402174..6d9fa4f28e8aeb311da8c3ce6f25c224b556f105 100644 (file)
@@ -1,3 +1,9 @@
+2010-09-22  Mike Frysinger  <vapier@gentoo.org>
+
+       * doc/c-bfin.texi (-mcpu): Add bf592.
+       * config/tc-bfin.c (bfin_cpu_type): Add BFIN_CPU_BF592.
+       (bfin_cpus[]): Add 0.0/0.1 for bf592.
+
 2010-09-22  Mike Frysinger  <vapier@gentoo.org>
 
        * config/tc-bfin.c (comment_chars): Add #.
index 814250ef5331dc66814366c503e346dfc629c9c1..6b4002ec1d3d1896b738423b37b04d892b16e347 100644 (file)
@@ -181,7 +181,8 @@ typedef enum bfin_cpu_type
   BFIN_CPU_BF548M,
   BFIN_CPU_BF549,
   BFIN_CPU_BF549M,
-  BFIN_CPU_BF561
+  BFIN_CPU_BF561,
+  BFIN_CPU_BF592,
 } bfin_cpu_t;
 
 bfin_cpu_t bfin_cpu_type = BFIN_CPU_UNKNOWN;
@@ -313,6 +314,9 @@ struct bfin_cpu bfin_cpus[] =
   {"bf561", BFIN_CPU_BF561, 0x0003, AC_05000074},
   {"bf561", BFIN_CPU_BF561, 0x0002, AC_05000074},
 
+  {"bf592", BFIN_CPU_BF592, 0x0001, AC_05000074},
+  {"bf592", BFIN_CPU_BF592, 0x0000, AC_05000074},
+
   {NULL, 0, 0, 0}
 };
 
index dee592b1c1a0ef74cf4a586113b5e24ff50ce3bb..7a367457dc7723ac8ae8c49034efe04d947629ac 100644 (file)
@@ -1,4 +1,4 @@
-@c Copyright 2005, 2006, 2009
+@c Copyright 2005, 2006, 2009, 2010
 @c Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
@@ -65,8 +65,9 @@ recognized:
 @code{bf548m},
 @code{bf549},
 @code{bf549m},
+@code{bf561},
 and
-@code{bf561}.
+@code{bf592}.
 
 @cindex @code{-mfdpic} command line option, Blackfin
 @item -mfdpic
This page took 0.042059 seconds and 4 git commands to generate.