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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Code to support devices on the DIO (and eventually DIO-II) bus
  2.  * Copyright (C) 05/1998 Peter Maydell <pmaydell@chiark.greenend.org.uk>
  3.  * 
  4.  * This code has basically these routines at the moment:
  5.  * int dio_find(u_int deviceid)
  6.  *    Search the list of DIO devices and return the select code
  7.  *    of the next unconfigured device found that matches the given device ID.
  8.  *    Note that the deviceid parameter should be the encoded ID.
  9.  *    This means that framebuffers should pass it as 
  10.  *    DIO_ENCODE_ID(DIO_ID_FBUFFER,DIO_ID2_TOPCAT)
  11.  *    (or whatever); everybody else just uses DIO_ID_FOOBAR.
  12.  * void *dio_scodetoviraddr(int scode)
  13.  *    Return the virtual address corresponding to the given select code.
  14.  *    NB: DIO-II devices will have to be mapped in in this routine!
  15.  * int dio_scodetoipl(int scode)
  16.  *    Every DIO card has a fixed interrupt priority level. This function 
  17.  *    returns it, whatever it is.
  18.  * const char *dio_scodetoname(int scode)
  19.  *    Return a character string describing this board [might be "" if 
  20.  *    not CONFIG_DIO_CONSTANTS]
  21.  * void dio_config_board(int scode)     mark board as configured in the list
  22.  * void dio_unconfig_board(int scode)   mark board as no longer configured
  23.  *
  24.  * This file is based on the way the Amiga port handles Zorro II cards, 
  25.  * although we aren't so complicated...
  26.  */
  27. #include <linux/config.h>
  28. #include <linux/kernel.h>
  29. #include <linux/types.h>
  30. #include <linux/dio.h>
  31. #include <linux/slab.h>                         /* kmalloc() */
  32. #include <linux/init.h>
  33. #include <asm/hwtest.h>                           /* hwreg_present() */
  34. #include <asm/io.h>
  35. /* not a real config option yet! */
  36. #define CONFIG_DIO_CONSTANTS
  37. #ifdef CONFIG_DIO_CONSTANTS
  38. /* We associate each numeric ID with an appropriate descriptive string
  39.  * using a constant array of these structs.
  40.  * FIXME: we should be able to arrange to throw away most of the strings
  41.  * using the initdata stuff. Then we wouldn't need to worry about 
  42.  * carrying them around...
  43.  * I think we do this by copying them into newly kmalloc()ed memory and 
  44.  * marking the names[] array as .initdata ?
  45.  */
  46. struct dioname
  47. {
  48.         int id;
  49.         const char *name;
  50. };
  51. /* useful macro */
  52. #define DIONAME(x) { DIO_ID_##x, DIO_DESC_##x }
  53. #define DIOFBNAME(x) { DIO_ENCODE_ID( DIO_ID_FBUFFER, DIO_ID2_##x), DIO_DESC2_##x }
  54. static struct dioname names[] = 
  55. {
  56.         DIONAME(DCA0), DIONAME(DCA0REM), DIONAME(DCA1), DIONAME(DCA1REM),
  57.         DIONAME(DCM), DIONAME(DCMREM),
  58.         DIONAME(LAN),
  59.         DIONAME(FHPIB), DIONAME(NHPIB), DIONAME(IHPIB),
  60.         DIONAME(SCSI0), DIONAME(SCSI1), DIONAME(SCSI2), DIONAME(SCSI3),
  61.         DIONAME(FBUFFER),
  62.         DIONAME(PARALLEL), DIONAME(VME), DIONAME(DCL), DIONAME(DCLREM),
  63.         DIONAME(MISC0), DIONAME(MISC1), DIONAME(MISC2), DIONAME(MISC3),
  64.         DIONAME(MISC4), DIONAME(MISC5), DIONAME(MISC6), DIONAME(MISC7),
  65.         DIONAME(MISC8), DIONAME(MISC9), DIONAME(MISC10), DIONAME(MISC11), 
  66.         DIONAME(MISC12), DIONAME(MISC13),
  67.         DIOFBNAME(GATORBOX), DIOFBNAME(TOPCAT), DIOFBNAME(RENAISSANCE),
  68.         DIOFBNAME(LRCATSEYE), DIOFBNAME(HRCCATSEYE), DIOFBNAME(HRMCATSEYE),
  69.         DIOFBNAME(DAVINCI), DIOFBNAME(XXXCATSEYE), DIOFBNAME(HYPERION),
  70.         DIOFBNAME(XGENESIS), DIOFBNAME(TIGER), DIOFBNAME(YGENESIS)   
  71. };
  72. #undef DIONAME
  73. #undef DIOFBNAME
  74. #define NUMNAMES (sizeof(names) / sizeof(struct dioname))
  75. static const char *unknowndioname 
  76.         = "unknown DIO board -- please email <pmaydell@chiark.greenend.org.uk>!";
  77. static const char *dio_getname(int id)
  78. {
  79.         /* return pointer to a constant string describing the board with given ID */
  80. unsigned int i;
  81.         for (i = 0; i < NUMNAMES; i++)
  82.                 if (names[i].id == id) 
  83.                         return names[i].name;
  84.         
  85.         return unknowndioname;
  86. }
  87. #else
  88. static char dio_no_name[] = { 0 };
  89. #define dio_getname(_id) (dio_no_name)
  90. #endif /* CONFIG_DIO_CONSTANTS */
  91. /* We represent all the DIO boards in the system with a linked list of these structs. */
  92. struct dioboard
  93. {
  94.         struct dioboard *next;                    /* link to next struct in list */
  95.         int ipl;                                  /* IPL of this board */
  96.         int configured;                           /* has this board been configured? */
  97.         int scode;                                /* select code of this board */
  98.         int id;                                   /* encoded ID */
  99.         const char *name;
  100. };
  101. static struct dioboard *blist = NULL;
  102. static int __init dio_find_slow(int deviceid)
  103. {
  104. /* Called to find a DIO device before the full bus scan has run.  Basically
  105.          * only used by the console driver.
  106.          * We don't do the primary+secondary ID encoding thing here. Maybe we should.
  107.          * (that would break the topcat detection, though. I need to think about
  108.          * the whole primary/secondary ID thing.)
  109.          */
  110. int scode;
  111.         u_char prid;
  112. for (scode = 0; scode < DIO_SCMAX; scode++)
  113. {
  114. void *va;
  115.                 if (DIO_SCINHOLE(scode))
  116.                         continue;
  117.                 
  118.                 va = dio_scodetoviraddr(scode);
  119.                 if (!va || !hwreg_present(va + DIO_IDOFF))
  120.                         continue;             /* no board present at that select code */
  121.                 /* We aren't very likely to want to use this to get at the IHPIB,
  122.                  * but maybe it's returning the same ID as the card we do want...
  123.                  */
  124.                 if (!DIO_ISIHPIB(scode))
  125.                         prid = DIO_ID(va);
  126.                 else
  127.                         prid = DIO_ID_IHPIB;
  128. if (prid == deviceid)
  129. return scode;
  130. }
  131. return 0;
  132. }
  133. /* Aargh: we use 0 for an error return code, but select code 0 exists!
  134.  * FIXME (trivial, use -1, but requires changes to all the drivers :-< )
  135.  */
  136. int dio_find(int deviceid)
  137. {
  138. if (blist) 
  139. {
  140. /* fast way */
  141. struct dioboard *b;
  142. for (b = blist; b; b = b->next)
  143. if (b->id == deviceid && b->configured == 0)
  144. return b->scode;
  145. return 0;
  146. }
  147. return dio_find_slow(deviceid);
  148. }
  149. /* This is the function that scans the DIO space and works out what
  150.  * hardware is actually present.
  151.  */
  152. void __init dio_init(void)
  153. {
  154.         int scode;
  155.         struct dioboard *b, *bprev = NULL;
  156.    
  157.         printk("Scanning for DIO devices...n");
  158.         
  159.         for (scode = 0; scode < DIO_SCMAX; ++scode)
  160.         {
  161.                 u_char prid, secid = 0;        /* primary, secondary ID bytes */
  162.                 u_char *va;
  163.                 
  164.                 if (DIO_SCINHOLE(scode))
  165.                         continue;
  166.                 
  167.                 va = dio_scodetoviraddr(scode);
  168.                 if (!va || !hwreg_present(va + DIO_IDOFF))
  169.                         continue;              /* no board present at that select code */
  170.                 /* Found a board, allocate it an entry in the list */
  171.                 b = kmalloc(sizeof(struct dioboard), GFP_KERNEL);
  172.                 
  173.                 /* read the ID byte(s) and encode if necessary. Note workaround 
  174.                  * for broken internal HPIB devices...
  175.                  */
  176.                 if (!DIO_ISIHPIB(scode))
  177.                         prid = DIO_ID(va);
  178.                 else 
  179.                         prid = DIO_ID_IHPIB;
  180.                 
  181.                 if (DIO_NEEDSSECID(prid))
  182.                 {
  183.                         secid = DIO_SECID(va);
  184.                         b->id = DIO_ENCODE_ID(prid, secid);
  185.                 }
  186.                 else
  187.                         b->id = prid;
  188.       
  189.                 b->configured = 0;
  190.                 b->scode = scode;
  191.                 b->ipl = DIO_IPL(va);
  192.                 b->name = dio_getname(b->id);
  193.                 printk("select code %3d: ipl %d: ID %02X", scode, b->ipl, prid);
  194.                 if (DIO_NEEDSSECID(b->id))
  195.                         printk(":%02X", secid);
  196.                 printk(": %sn", b->name);
  197.                 
  198.                 b->next = NULL;
  199.                 if (bprev)
  200.                         bprev->next = b;
  201.                 else
  202.                         blist = b;
  203.                 bprev = b;
  204.         }
  205. }
  206. /* Bear in mind that this is called in the very early stages of initialisation
  207.  * in order to get the virtual address of the serial port for the console...
  208.  */
  209. void *dio_scodetoviraddr(int scode)
  210. {
  211.         if (scode > DIOII_SCBASE)
  212.         {
  213.                 printk("dio_scodetoviraddr: don't support DIO-II yet!n");
  214.                 return 0;
  215.         }
  216.         else if (scode > DIO_SCMAX || scode < 0)
  217.                 return 0;
  218.         else if (DIO_SCINHOLE(scode))
  219.                 return 0;
  220.         else if (DIO_ISIHPIB(scode))
  221.                 return (void*)DIO_IHPIBADDR;
  222.         return (void*)(DIO_VIRADDRBASE + DIO_BASE + scode * 0x10000);
  223. }
  224. int dio_scodetoipl(int scode)
  225. {
  226.         struct dioboard *b;
  227.         for (b = blist; b; b = b->next)
  228.                 if (b->scode == scode) 
  229.                         break;
  230.         
  231.         if (!b)
  232.         {
  233.                 printk("dio_scodetoipl: bad select code %dn", scode);
  234.                 return 0;
  235.         }
  236.         else
  237.                 return b->ipl;
  238. }
  239. const char *dio_scodetoname(int scode)
  240. {
  241.         struct dioboard *b;
  242.         for (b = blist; b; b = b->next)
  243.                 if (b->scode == scode) 
  244.                         break;
  245.         
  246.         if (!b)
  247.         {
  248.                 printk("dio_scodetoname: bad select code %dn", scode);
  249.                 return NULL;
  250.         }
  251.         else
  252.                 return b->name;
  253. }
  254. void dio_config_board(int scode)
  255. {
  256.         struct dioboard *b;
  257.         for (b = blist; b; b = b->next)
  258.                 if (b->scode == scode)
  259.                         break;
  260.    
  261.         if (!b) 
  262.                 printk("dio_config_board: bad select code %dn", scode);
  263.         else if (b->configured)
  264.                 printk("dio_config_board: board at select code %d already configuredn", scode);
  265.         else
  266.                 b->configured = 1;
  267. }
  268. void dio_unconfig_board(int scode)
  269. {
  270.         struct dioboard *b;
  271.         for (b = blist; b; b = b->next)
  272.                 if (b->scode == scode) 
  273.                         break;
  274.    
  275.         if (!b) 
  276.                 printk("dio_unconfig_board: bad select code %dn", scode);
  277.         else if (!b->configured)
  278.                 printk("dio_unconfig_board: board at select code %d not configuredn", 
  279.        scode);
  280.         else 
  281.                 b->configured = 0;
  282. }