exception_c.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #ifndef ARCH_ARM_EXCEPTION_C_H
  2. #define ARCH_ARM_EXCEPTION_C_H
  3. /*
  4. * Copyright (C) 2008 by Duane Ellis
  5. *
  6. * All rights reserved.
  7. *
  8. * The original code had been released as part of the LoastARM Project
  9. * under GPL Version 2 and is published here under the following license
  10. * with kind permission from the author:
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. *
  16. * 1. Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. * 2. Redistributions in binary form must reproduce the above copyright
  19. * notice, this list of conditions and the following disclaimer in the
  20. * documentation and/or other materials provided with the distribution.
  21. * 3. Neither the name of the copyright holders nor the names of
  22. * contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  26. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  27. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  28. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  29. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  30. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  31. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  32. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  33. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  34. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  35. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  36. * SUCH DAMAGE.
  37. *
  38. * For additional information see http://lostarm.sourceforge.net/
  39. */
  40. /*!
  41. * \file include/arch/arm/exception_c.h
  42. *
  43. * \verbatim
  44. * $Id: exception_c.h 4115 2012-04-12 21:06:13Z olereinhardt $
  45. * \endverbatim
  46. */
  47. // Not implemented void ARM_NOTUSED_Handler( struct pt_regs *p );
  48. void ARM_COMMON_Handler_crash( struct pt_regs *p, const char *name );
  49. void ARM_DA_Handler( struct pt_regs *p );
  50. // Not implemented void ARM_IRQ_Handler( struct pt_regs *p );
  51. // Not implemented void ARM_FIQ_Handler( struct pt_regs *p );
  52. void ARM_PFA_Handler( struct pt_regs *p );
  53. void ARM_SWI_Handler( struct pt_regs *p );
  54. void ARM_UDF_Handler( struct pt_regs *p );
  55. #endif