hardirq.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* MN10300 Hardware IRQ statistics and management
  2. *
  3. * Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd.
  4. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  5. * Modified by David Howells (dhowells@redhat.com)
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public Licence
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the Licence, or (at your option) any later version.
  11. */
  12. #ifndef _ASM_HARDIRQ_H
  13. #define _ASM_HARDIRQ_H
  14. #include <linux/threads.h>
  15. #include <linux/irq.h>
  16. #include <asm/exceptions.h>
  17. /* assembly code in softirq.h is sensitive to the offsets of these fields */
  18. typedef struct {
  19. unsigned int __softirq_pending;
  20. #ifdef CONFIG_MN10300_WD_TIMER
  21. unsigned int __nmi_count; /* arch dependent */
  22. unsigned int __irq_count; /* arch dependent */
  23. #endif
  24. } ____cacheline_aligned irq_cpustat_t;
  25. #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
  26. extern void ack_bad_irq(int irq);
  27. /*
  28. * manipulate stubs in the MN10300 CPU Trap/Interrupt Vector table
  29. * - these should jump to __common_exception in entry.S unless there's a good
  30. * reason to do otherwise (see trap_preinit() in traps.c)
  31. */
  32. typedef void (*intr_stub_fnx)(struct pt_regs *regs,
  33. enum exception_code intcode);
  34. /*
  35. * manipulate pointers in the Exception table (see entry.S)
  36. * - these are indexed by decoding the lower 24 bits of the TBR register
  37. * - note that the MN103E010 doesn't always trap through the correct vector,
  38. * but does always set the TBR correctly
  39. */
  40. extern asmlinkage void set_excp_vector(enum exception_code code,
  41. intr_stub_fnx handler);
  42. #endif /* _ASM_HARDIRQ_H */