ioerror.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id$
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (C) 1992 - 1997, 2000-2002 Silicon Graphics, Inc. All rights reserved.
  8.  */
  9. #ifndef _ASM_IA64_SN_IOERROR_H
  10. #define _ASM_IA64_SN_IOERROR_H
  11. #ifndef __ASSEMBLY__
  12. #include <linux/types.h>
  13. #include <asm/sn/types.h>
  14. /*
  15.  * Macros defining the various Errors to be handled as part of
  16.  * IO Error handling.
  17.  */
  18. /*
  19.  * List of errors to be handled by each subsystem.
  20.  * "error_code" field will take one of these values.
  21.  * The error code is built up of single bits expressing
  22.  * our confidence that the error was that type; note
  23.  * that it is possible to have a PIO or DMA error where
  24.  * we don't know whether it was a READ or a WRITE, or
  25.  * even a READ or WRITE error that we're not sure whether
  26.  * to call a PIO or DMA.
  27.  *
  28.  * It is also possible to set both PIO and DMA, and possible
  29.  * to set both READ and WRITE; the first may be nonsensical
  30.  * but the second *could* be used to designate an access
  31.  * that is known to be a read-modify-write cycle. It is
  32.  * quite possible that nobody will ever use PIO|DMA or
  33.  * READ|WRITE ... but being flexible is good.
  34.  */
  35. #define IOECODE_UNSPEC 0
  36. #define IOECODE_READ 1
  37. #define IOECODE_WRITE 2
  38. #define IOECODE_PIO 4
  39. #define IOECODE_DMA 8
  40. #define IOECODE_PIO_READ (IOECODE_PIO|IOECODE_READ)
  41. #define IOECODE_PIO_WRITE (IOECODE_PIO|IOECODE_WRITE)
  42. #define IOECODE_DMA_READ (IOECODE_DMA|IOECODE_READ)
  43. #define IOECODE_DMA_WRITE (IOECODE_DMA|IOECODE_WRITE)
  44. /* support older names, but try to move everything
  45.  * to using new names that identify which package
  46.  * controls their values ...
  47.  */
  48. #define PIO_READ_ERROR IOECODE_PIO_READ
  49. #define PIO_WRITE_ERROR IOECODE_PIO_WRITE
  50. #define DMA_READ_ERROR IOECODE_DMA_READ
  51. #define DMA_WRITE_ERROR IOECODE_DMA_WRITE
  52. /*
  53.  * List of error numbers returned by error handling sub-system.
  54.  */
  55. #define IOERROR_HANDLED 0 /* Error Properly handled.        */
  56. #define IOERROR_NODEV 0x1 /* No such device attached        */
  57. #define IOERROR_BADHANDLE 0x2 /* Received bad handle            */
  58. #define IOERROR_BADWIDGETNUM 0x3 /* Bad widget number              */
  59. #define IOERROR_BADERRORCODE 0x4 /* Bad error code passed in       */
  60. #define IOERROR_INVALIDADDR 0x5 /* Invalid address specified      */
  61. #define IOERROR_WIDGETLEVEL 0x6 /* Some failure at widget level    */
  62. #define IOERROR_XTALKLEVEL 0x7
  63. #define IOERROR_HWGRAPH_LOOKUP 0x8 /* hwgraph lookup failed for path  */
  64. #define IOERROR_UNHANDLED 0x9 /* handler rejected error          */
  65. #define IOERROR_PANIC 0xA /* subsidiary handler has already
  66.  * started decode: continue error
  67.  * data dump, and panic from top
  68.  * caller in error chain.
  69.  */
  70. /*
  71.  * IO errors at the bus/device driver level
  72.  */
  73. #define IOERROR_DEV_NOTFOUND 0x10 /* Device matching bus addr not found */
  74. #define IOERROR_DEV_SHUTDOWN 0x11 /* Device has been shutdown        */
  75. /*
  76.  * Type of address.
  77.  * Indicates the direction of transfer that caused the error.
  78.  */
  79. #define IOERROR_ADDR_PIO 1 /* Error Address generated due to PIO */
  80. #define IOERROR_ADDR_DMA 2 /* Error address generated due to DMA */
  81. /*
  82.  * IO error structure.
  83.  *
  84.  * This structure would expand to hold the information retrieved from
  85.  * all IO related error registers.
  86.  *
  87.  * This structure is defined to hold all system specific
  88.  * information related to a single error.
  89.  *
  90.  * This serves a couple of purpose.
  91.  *      - Error handling often involves translating one form of address to other
  92.  *        form. So, instead of having different data structures at each level,
  93.  *        we have a single structure, and the appropriate fields get filled in
  94.  *        at each layer.
  95.  *      - This provides a way to dump all error related information in any layer
  96.  *        of erorr handling (debugging aid).
  97.  *
  98.  * A second possibility is to allow each layer to define its own error
  99.  * data structure, and fill in the proper fields. This has the advantage
  100.  * of isolating the layers.
  101.  * A big concern is the potential stack usage (and overflow), if each layer
  102.  * defines these structures on stack (assuming we don't want to do kmalloc.
  103.  *
  104.  * Any layer wishing to pass extra information to a layer next to it in
  105.  * error handling hierarchy, can do so as a separate parameter.
  106.  */
  107. typedef struct io_error_s {
  108.     /* Bit fields indicating which sturcture fields are valid */
  109.     union {
  110. struct {
  111.     unsigned                ievb_errortype:1;
  112.     unsigned                ievb_widgetnum:1;
  113.     unsigned                ievb_widgetdev:1;
  114.     unsigned                ievb_srccpu:1;
  115.     unsigned                ievb_srcnode:1;
  116.     unsigned                ievb_errnode:1;
  117.     unsigned                ievb_sysioaddr:1;
  118.     unsigned                ievb_xtalkaddr:1;
  119.     unsigned                ievb_busspace:1;
  120.     unsigned                ievb_busaddr:1;
  121.     unsigned                ievb_vaddr:1;
  122.     unsigned                ievb_memaddr:1;
  123.     unsigned     ievb_epc:1;
  124.     unsigned     ievb_ef:1;
  125. } iev_b;
  126. unsigned                iev_a;
  127.     } ie_v;
  128.     short                   ie_errortype; /* error type: extra info about error */
  129.     short                   ie_widgetnum; /* Widget number that's in error */
  130.     short                   ie_widgetdev; /* Device within widget in error */
  131.     cpuid_t                 ie_srccpu; /* CPU on srcnode generating error */
  132.     cnodeid_t               ie_srcnode; /* Node which caused the error   */
  133.     cnodeid_t               ie_errnode; /* Node where error was noticed  */
  134.     iopaddr_t               ie_sysioaddr; /* Sys specific IO address       */
  135.     iopaddr_t               ie_xtalkaddr; /* Xtalk (48bit) addr of Error   */
  136.     iopaddr_t               ie_busspace; /* Bus specific address space    */
  137.     iopaddr_t               ie_busaddr; /* Bus specific address          */
  138.     caddr_t                 ie_vaddr; /* Virtual address of error      */
  139.     paddr_t                 ie_memaddr; /* Physical memory address       */
  140.     caddr_t     ie_epc; /* pc when error reported  */
  141.     caddr_t     ie_ef; /* eframe when error reported  */
  142. } ioerror_t;
  143. #define IOERROR_INIT(e) do { (e)->ie_v.iev_a = 0; } while (0)
  144. #define IOERROR_SETVALUE(e,f,v) do { (e)->ie_ ## f = (v); (e)->ie_v.iev_b.ievb_ ## f = 1; } while (0)
  145. #define IOERROR_FIELDVALID(e,f) (((e)->ie_v.iev_b.ievb_ ## f) != 0)
  146. #define IOERROR_GETVALUE(e,f) (ASSERT(IOERROR_FIELDVALID(e,f)),((e)->ie_ ## f))
  147. /* hub code likes to call the SysAD address "hubaddr" ... */
  148. #define ie_hubaddr ie_sysioaddr
  149. #define ievb_hubaddr ievb_sysioaddr
  150. #endif
  151. /*
  152.  * Error handling Modes.
  153.  */
  154. typedef enum {
  155.     MODE_DEVPROBE, /* Probing mode. Errors not fatal */
  156.     MODE_DEVERROR, /* Error while system is running */
  157.     MODE_DEVUSERERROR, /* Device Error created due to user mode access */
  158.     MODE_DEVREENABLE /* Reenable pass                */
  159. } ioerror_mode_t;
  160. typedef int             error_handler_f(void *, int, ioerror_mode_t, ioerror_t *);
  161. typedef void           *error_handler_arg_t;
  162. extern void             ioerror_dump(char *, int, int, ioerror_t *);
  163. #ifdef ERROR_DEBUG
  164. #define IOERROR_DUMP(x, y, z, t) ioerror_dump((x), (y), (z), (t))
  165. #define IOERR_PRINTF(x) (x)
  166. #else
  167. #define IOERROR_DUMP(x, y, z, t)
  168. #define IOERR_PRINTF(x)
  169. #endif /* ERROR_DEBUG */
  170. #endif /* _ASM_IA64_SN_IOERROR_H */