/drivers/net/wireless/bcmdhd_34/include/hndrte_armtrap.h

https://bitbucket.org/cyanogenmod/android_kernel_asus_tf300t · C Header · 88 lines · 46 code · 13 blank · 29 comment · 0 complexity · be5de87e7b67649045cdc85f18a34661 MD5 · raw file

  1. /*
  2. * HNDRTE arm trap handling.
  3. *
  4. * Copyright (C) 1999-2012, Broadcom Corporation
  5. *
  6. * Unless you and Broadcom execute a separate written software license
  7. * agreement governing use of this software, this software is licensed to you
  8. * under the terms of the GNU General Public License version 2 (the "GPL"),
  9. * available at http://www.broadcom.com/licenses/GPLv2.php, with the
  10. * following added to such license:
  11. *
  12. * As a special exception, the copyright holders of this software give you
  13. * permission to link this software with independent modules, and to copy and
  14. * distribute the resulting executable under terms of your choice, provided that
  15. * you also meet, for each linked independent module, the terms and conditions of
  16. * the license of that module. An independent module is a module which is not
  17. * derived from this software. The special exception does not apply to any
  18. * modifications of the software.
  19. *
  20. * Notwithstanding the above, under no circumstances may you combine this
  21. * software in any way with any other Broadcom software provided under a license
  22. * other than the GPL, without Broadcom's express prior written consent.
  23. *
  24. * $Id: hndrte_armtrap.h 261365 2011-05-24 20:42:23Z $
  25. */
  26. #ifndef _hndrte_armtrap_h
  27. #define _hndrte_armtrap_h
  28. /* ARM trap handling */
  29. /* Trap types defined by ARM (see arminc.h) */
  30. /* Trap locations in lo memory */
  31. #define TRAP_STRIDE 4
  32. #define FIRST_TRAP TR_RST
  33. #define LAST_TRAP (TR_FIQ * TRAP_STRIDE)
  34. #if defined(__ARM_ARCH_4T__)
  35. #define MAX_TRAP_TYPE (TR_FIQ + 1)
  36. #elif defined(__ARM_ARCH_7M__)
  37. #define MAX_TRAP_TYPE (TR_ISR + ARMCM3_NUMINTS)
  38. #endif /* __ARM_ARCH_7M__ */
  39. /* The trap structure is defined here as offsets for assembly */
  40. #define TR_TYPE 0x00
  41. #define TR_EPC 0x04
  42. #define TR_CPSR 0x08
  43. #define TR_SPSR 0x0c
  44. #define TR_REGS 0x10
  45. #define TR_REG(n) (TR_REGS + (n) * 4)
  46. #define TR_SP TR_REG(13)
  47. #define TR_LR TR_REG(14)
  48. #define TR_PC TR_REG(15)
  49. #define TRAP_T_SIZE 80
  50. #ifndef _LANGUAGE_ASSEMBLY
  51. #include <typedefs.h>
  52. typedef struct _trap_struct {
  53. uint32 type;
  54. uint32 epc;
  55. uint32 cpsr;
  56. uint32 spsr;
  57. uint32 r0; /* a1 */
  58. uint32 r1; /* a2 */
  59. uint32 r2; /* a3 */
  60. uint32 r3; /* a4 */
  61. uint32 r4; /* v1 */
  62. uint32 r5; /* v2 */
  63. uint32 r6; /* v3 */
  64. uint32 r7; /* v4 */
  65. uint32 r8; /* v5 */
  66. uint32 r9; /* sb/v6 */
  67. uint32 r10; /* sl/v7 */
  68. uint32 r11; /* fp/v8 */
  69. uint32 r12; /* ip */
  70. uint32 r13; /* sp */
  71. uint32 r14; /* lr */
  72. uint32 pc; /* r15 */
  73. } trap_t;
  74. #endif /* !_LANGUAGE_ASSEMBLY */
  75. #endif /* _hndrte_armtrap_h */