1. 28 10月, 2015 1 次提交
  2. 17 10月, 2015 1 次提交
  3. 21 8月, 2015 1 次提交
  4. 20 8月, 2015 3 次提交
  5. 06 7月, 2015 1 次提交
    • A
      ARCv2: guard SLC DMA ops with spinlock · b607eddd
      Alexey Brodkin 提交于
      SLC maintenance ops need to be serialized by software as there is no
      inherent buffering / quequing of aux commands. It can silently ignore a
      new aux operation if previous one is still ongoing (SLC_CTRL_BUSY)
      
      So gaurd the SLC op using a spin lock
      
      The spin lock doesn't seem to be contended even in heavy workloads such
      as iperf. On FPGA @ 75 MHz.
      
       [1] Before this change:
       ============================================================
        # iperf -c 10.42.0.1
       ------------------------------------------------------------
       Client connecting to 10.42.0.1, TCP port 5001
       TCP window size: 43.8 KByte (default)
       ------------------------------------------------------------
       [  3] local 10.42.0.110 port 38935 connected with 10.42.0.1 port 5001
       [ ID] Interval       Transfer     Bandwidth
       [  3]  0.0-10.0 sec  48.4 MBytes  40.6 Mbits/sec
       ============================================================
      
       [2] After this change:
       ============================================================
       # iperf -c 10.42.0.1
       ------------------------------------------------------------
       Client connecting to 10.42.0.1, TCP port 5001
       TCP window size: 43.8 KByte (default)
       ------------------------------------------------------------
       [  3] local 10.42.0.243 port 60248 connected with 10.42.0.1 port 5001
       [ ID] Interval       Transfer     Bandwidth
       [  3]  0.0-10.0 sec  47.5 MBytes  39.8 Mbits/sec
       # iperf -c 10.42.0.1
       ------------------------------------------------------------
       Client connecting to 10.42.0.1, TCP port 5001
       TCP window size: 43.8 KByte (default)
       ------------------------------------------------------------
       [  3] local 10.42.0.243 port 60249 connected with 10.42.0.1 port 5001
       [ ID] Interval       Transfer     Bandwidth
       [  3]  0.0-10.0 sec  54.9 MBytes  46.0 Mbits/sec
       ============================================================
      Signed-off-by: NAlexey Brodkin <abrodkin@synopsys.com>
      Cc: arc-linux-dev@synopsys.com
      Signed-off-by: NVineet Gupta <vgupta@synopsys.com>
      b607eddd
  6. 25 6月, 2015 1 次提交
  7. 22 6月, 2015 2 次提交
  8. 19 6月, 2015 4 次提交
  9. 19 5月, 2015 1 次提交
  10. 11 5月, 2015 1 次提交
  11. 13 10月, 2014 1 次提交
  12. 04 9月, 2014 1 次提交
  13. 30 8月, 2014 1 次提交
  14. 23 7月, 2014 3 次提交
  15. 26 6月, 2014 1 次提交
    • V
      ARC: [SMP] Enable icache coherency · 2328af0c
      Vineet Gupta 提交于
      icaches are not snooped hence not cohrent in SMP setups which means
      kernel has to do cross core calls to ensure the same.
      
      The leaf routine __ic_line_inv_vaddr() now does cross core calls.
      
      __sync_icache_dcache() is affected due to this:
      
      * local dcache line flushed ahead of remote icache inv requests
      * can't disable interrupts anymore, since
            __ic_line_inv_vaddr()->on_each_cpu() can deadlock.
      
      | WARNING: CPU: 0 PID: 1 at kernel/smp.c:374
      | smp_call_function_many+0x25a/0x2c4()
      |
      |  init_kprobes+0x90/0xc8
      |     register_kprobe+0x1d6/0x510
      |	__sync_icache_dcache+0x28/0x80
      |
      |	    DISABLE IRQ
      |
      |	    __ic_line_inv_vaddr
      |		on_each_cpu
      |		     smp_call_function_many+0x25a/0x2c4   --> WARN
      |			__ic_line_inv_vaddr_local
      |	    __dc_line_op
      
      * TODO: Needs to use mask of relevant CPUs to avoid broadcasting
      Signed-off-by: NNoam Camus <noamc@ezchip.com>
      Signed-off-by: NVineet Gupta <vgupta@synopsys.com>
      2328af0c
  16. 03 6月, 2014 1 次提交
  17. 05 5月, 2014 1 次提交
  18. 05 4月, 2014 1 次提交
    • V
      ARC: [SMP] General Fixes · c3441edd
      Vineet Gupta 提交于
      -Pass the expected arg to non-boot park'ing routine
       (It worked so far because existing SMP backends don't use the arg)
      
      -CONFIG_DEBUG_PREEMPT warning
      c3441edd
  19. 08 3月, 2014 1 次提交
  20. 06 11月, 2013 4 次提交
  21. 29 8月, 2013 1 次提交
  22. 27 6月, 2013 1 次提交
    • P
      arc: delete __cpuinit usage from all arc files · ce759956
      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/arc uses of the __cpuinit macros from
      all C files.  Currently arc does not have any __CPUINIT used in
      assembly files.
      
      [1] https://lkml.org/lkml/2013/5/20/589
      
      Cc: Vineet Gupta <vgupta@synopsys.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      Signed-off-by: NVineet Gupta <vgupta@synopsys.com>
      ce759956
  23. 22 6月, 2013 7 次提交