dio.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

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>                               /* readb() */
  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. int scode;
  107. for (scode = 0; scode < DIO_SCMAX; scode++)
  108. {
  109. void *va;
  110.                 if (DIO_SCINHOLE(scode))
  111.                         continue;
  112.                 
  113.                 va = dio_scodetoviraddr(scode);
  114.                 if (!va || !hwreg_present(va + DIO_IDOFF))
  115.                         continue;             /* no board present at that select code */
  116. if (DIO_ID(va) == deviceid)
  117. return scode;
  118. }
  119. return 0;
  120. }
  121. int dio_find(int deviceid)
  122. {
  123. if (blist) 
  124. {
  125. /* fast way */
  126. struct dioboard *b;
  127. for (b = blist; b; b = b->next)
  128. if (b->id == deviceid && b->configured == 0)
  129. return b->scode;
  130. return 0;
  131. }
  132. return dio_find_slow(deviceid);
  133. }
  134. /* This is the function that scans the DIO space and works out what
  135.  * hardware is actually present.
  136.  */
  137. void __init dio_init(void)
  138. {
  139.         int scode;
  140.         struct dioboard *b, *bprev = NULL;
  141.    
  142.         printk("Scanning for DIO devices...n");
  143.         
  144.         for (scode = 0; scode < DIO_SCMAX; ++scode)
  145.         {
  146.                 u_char prid, secid = 0;        /* primary, secondary ID bytes */
  147.                 u_char *va;
  148.                 
  149.                 if (DIO_SCINHOLE(scode))
  150.                         continue;
  151.                 
  152.                 va = dio_scodetoviraddr(scode);
  153.                 if (!va || !hwreg_present(va + DIO_IDOFF))
  154.                         continue;              /* no board present at that select code */
  155.                 /* Found a board, allocate it an entry in the list */
  156.                 b = kmalloc(sizeof(struct dioboard), GFP_KERNEL);
  157.                 
  158.                 /* read the ID byte(s) and encode if necessary. Note workaround 
  159.                  * for broken internal HPIB devices...
  160.                  */
  161.                 if (!DIO_ISIHPIB(scode))
  162.                         prid = DIO_ID(va);
  163.                 else 
  164.                         prid = DIO_ID_IHPIB;
  165.                 
  166.                 if (DIO_NEEDSSECID(prid))
  167.                 {
  168.                         secid = DIO_SECID(va);
  169.                         b->id = DIO_ENCODE_ID(prid, secid);
  170.                 }
  171.                 else
  172.                         b->id = prid;
  173.       
  174.                 b->configured = 0;
  175.                 b->scode = scode;
  176.                 b->ipl = DIO_IPL(va);
  177.                 b->name = dio_getname(b->id);
  178.                 printk("select code %3d: ID %02X", scode, prid);
  179.                 if (DIO_NEEDSSECID(b->id))
  180.                         printk(":%02X", secid);
  181.                 printk(" %sn", b->name);
  182.                 
  183.                 b->next = NULL;
  184.                 if (bprev)
  185.                         bprev->next = b;
  186.                 else
  187.                         blist = b;
  188.                 bprev = b;
  189.         }
  190. }
  191. /* Bear in mind that this is called in the very early stages of initialisation
  192.  * in order to get the virtual address of the serial port for the console...
  193.  */
  194. void *dio_scodetoviraddr(int scode)
  195. {
  196.         if (scode > DIOII_SCBASE)
  197.         {
  198.                 printk("dio_scodetoviraddr: don't support DIO-II yet!n");
  199.                 return 0;
  200.         }
  201.         else if (scode > DIO_SCMAX || scode < 0)
  202.                 return 0;
  203.         else if (DIO_SCINHOLE(scode))
  204.                 return 0;
  205.         else if (scode == DIO_IHPIBSCODE) /* this should really be #ifdef CONFIG_IHPIB */
  206.                 return (void*)DIO_IHPIBADDR;   /* or something similar... */
  207.         
  208.         return (void*)(DIO_VIRADDRBASE + DIO_BASE + scode * 0x10000);
  209. }
  210. int dio_scodetoipl(int scode)
  211. {
  212.         struct dioboard *b;
  213.         for (b = blist; b; b = b->next)
  214.                 if (b->scode == scode) 
  215.                         break;
  216.         
  217.         if (!b)
  218.         {
  219.                 printk("dio_scodetoipl: bad select code %dn", scode);
  220.                 return 0;
  221.         }
  222.         else
  223.                 return b->ipl;
  224. }
  225. const char *dio_scodetoname(int scode)
  226. {
  227.         struct dioboard *b;
  228.         for (b = blist; b; b = b->next)
  229.                 if (b->scode == scode) 
  230.                         break;
  231.         
  232.         if (!b)
  233.         {
  234.                 printk("dio_scodetoname: bad select code %dn", scode);
  235.                 return NULL;
  236.         }
  237.         else
  238.                 return b->name;
  239. }
  240. void dio_config_board(int scode)
  241. {
  242.         struct dioboard *b;
  243.         for (b = blist; b; b = b->next)
  244.                 if (b->scode == scode)
  245.                         break;
  246.    
  247.         if (!b) 
  248.                 printk("dio_config_board: bad select code %dn", scode);
  249.         else if (b->configured)
  250.                 printk("dio_config_board: board at select code %d already configuredn", scode);
  251.         else
  252.                 b->configured = 1;
  253. }
  254. void dio_unconfig_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_unconfig_board: bad select code %dn", scode);
  263.         else if (!b->configured)
  264.                 printk("dio_unconfig_board: board at select code %d not configuredn", 
  265.        scode);
  266.         else 
  267.                 b->configured = 0;
  268. }