1. 25 1月, 2014 1 次提交
  2. 13 9月, 2013 1 次提交
  3. 15 7月, 2013 1 次提交
    • P
      blackfin: delete __cpuinit usage from all blackfin files · 13dff62d
      Paul Gortmaker 提交于
      The __cpuinit type of throwaway sections might have made sense
      some time ago when RAM was more constrained, but now the savings
      do not offset the cost and complications.  For example, the fix in
      commit 5e427ec2 ("x86: Fix bit corruption at CPU resume time")
      is a good example of the nasty type of bugs that can be created
      with improper use of the various __init prefixes.
      
      After a discussion on LKML[1] it was decided that cpuinit should go
      the way of devinit and be phased out.  Once all the users are gone,
      we can then finally remove the macros themselves from linux/init.h.
      
      Note that some harmless section mismatch warnings may result, since
      notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
      are flagged as __cpuinit  -- so if we remove the __cpuinit from
      arch specific callers, we will also get section mismatch warnings.
      As an intermediate step, we intend to turn the linux/init.h cpuinit
      content into no-ops as early as possible, since that will get rid
      of these warnings.  In any case, they are temporary and harmless.
      
      This removes all the arch/blackfin uses of the __cpuinit macros from
      all C files.  Currently blackfin does not have any __CPUINIT used in
      assembly files.
      
      [1] https://lkml.org/lkml/2013/5/20/589
      
      Cc: Mike Frysinger <vapier@gentoo.org>
      Cc: Bob Liu <lliubbo@gmail.com>
      Cc: Sonic Zhang <sonic.zhang@analog.com>
      Cc: uclinux-dist-devel@blackfin.uclinux.org
      Acked-by: NMike Frysinger <vapier@gentoo.org>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      13dff62d
  4. 09 5月, 2013 1 次提交
  5. 27 6月, 2012 1 次提交
  6. 21 5月, 2012 6 次提交
  7. 01 4月, 2012 1 次提交
  8. 21 3月, 2012 1 次提交
  9. 09 1月, 2012 1 次提交
  10. 23 7月, 2011 1 次提交
  11. 25 5月, 2011 7 次提交
  12. 18 3月, 2011 1 次提交
    • S
      Blackfin: SMP: work around anomaly 05000491 · c6345ab1
      Sonic Zhang 提交于
      In order to safely work around anomaly 05000491, we have to execute IFLUSH
      from L1 instruction sram.  The trouble with multi-core systems is that all
      L1 sram is visible only to the active core.  So we can't just place the
      functions into L1 and call it directly.  We need to setup a jump table and
      place the entry point in external memory.  This will call the right func
      based on the active core.
      
      In the process, convert from the manual relocation of a small bit of code
      into Core B's L1 to the more general framework we already have in place
      for loading arbitrary pieces of code into L1.
      Signed-off-by: NSonic Zhang <sonic.zhang@analog.com>
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      c6345ab1
  13. 07 8月, 2010 1 次提交
  14. 23 5月, 2010 1 次提交
  15. 09 3月, 2010 5 次提交
  16. 15 12月, 2009 3 次提交
  17. 07 10月, 2009 1 次提交
    • R
      Blackfin: mass clean up of copyright/licensing info · 96f1050d
      Robin Getz 提交于
      Bill Gatliff & David Brownell pointed out we were missing some
      copyrights, and licensing terms in some of the files in
      ./arch/blackfin, so this fixes things, and cleans them up.
      
      It also removes:
       - verbose GPL text(refer to the top level ./COPYING file)
       - file names (you are looking at the file)
       - bug url (it's in the ./MAINTAINERS file)
       - "or later" on GPL-2, when we did not have that right
      
      It also allows some Blackfin-specific assembly files to be under a BSD
      like license (for people to use them outside of Linux).
      Signed-off-by: NRobin Getz <robin.getz@analog.com>
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      96f1050d
  18. 17 9月, 2009 5 次提交
  19. 16 7月, 2009 1 次提交