int-handler.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2001 MontaVista Software Inc.
  3.  * Author: jsun@mvista.com or jsun@junsun.net
  4.  *
  5.  * First-level interrupt dispatcher for ddb5477
  6.  *
  7.  * This program is free software; you can redistribute  it and/or modify it
  8.  * under  the terms of  the GNU General  Public License as published by the
  9.  * Free Software Foundation;  either version 2 of the  License, or (at your
  10.  * option) any later version.
  11.  */
  12. #include <linux/config.h>
  13. #include <asm/asm.h>
  14. #include <asm/mipsregs.h>
  15. #include <asm/addrspace.h>
  16. #include <asm/regdef.h>
  17. #include <asm/stackframe.h>
  18. /*
  19.  * first level interrupt dispatcher for ocelot board -
  20.  * We check for the timer first, then check PCI ints A and D.
  21.  * Then check for serial IRQ and fall through.
  22.  */
  23. .align 5
  24. NESTED(ddb5477_handle_int, PT_SIZE, sp)
  25. SAVE_ALL
  26. CLI
  27. .set at
  28. .set noreorder
  29. mfc0 t0, CP0_CAUSE  
  30. mfc0 t2, CP0_STATUS
  31. and t0, t2
  32.        
  33. andi t1, t0, STATUSF_IP7 /* cpu timer */
  34. bnez t1, ll_cputimer_irq
  35. andi t1, t0, (STATUSF_IP2 | STATUSF_IP3 | STATUSF_IP4 | STATUSF_IP5 | STATUSF_IP6 ) 
  36. bnez t1, ll_vrc5477_irq
  37. andi t1, t0, STATUSF_IP0 /* software int 0 */
  38. bnez t1, ll_cpu_ip0
  39. andi t1, t0, STATUSF_IP1 /* software int 1 */
  40. bnez t1, ll_cpu_ip1
  41. nop
  42. .set reorder
  43. /* wrong alarm or masked ... */
  44. j spurious_interrupt
  45. nop
  46. END(ddb5477_handle_int)
  47. .align 5
  48. ll_vrc5477_irq:
  49. move a0, sp
  50. jal vrc5477_irq_dispatch
  51. j ret_from_irq
  52. ll_cputimer_irq:
  53. li a0, 7
  54. move a1, sp
  55. jal do_IRQ
  56. j ret_from_irq
  57. ll_cpu_ip0:
  58. li a0, 0
  59. move a1, sp
  60. jal do_IRQ
  61. j ret_from_irq
  62. ll_cpu_ip1:
  63. li a0, 1
  64. move a1, sp
  65. jal do_IRQ
  66. j ret_from_irq