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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Zorro Device Name Tables
  3.  *
  4.  * Copyright (C) 1999--2000 Geert Uytterhoeven
  5.  *
  6.  * Based on the PCI version:
  7.  *
  8.  * Copyright 1992--1999 Drew Eckhardt, Frederic Potter,
  9.  * David Mosberger-Tang, Martin Mares
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/init.h>
  13. #include <linux/kernel.h>
  14. #include <linux/types.h>
  15. #include <linux/zorro.h>
  16. #ifdef CONFIG_ZORRO_NAMES
  17. struct zorro_prod_info {
  18. __u16 prod;
  19. unsigned short seen;
  20. const char *name;
  21. };
  22. struct zorro_manuf_info {
  23. __u16 manuf;
  24. unsigned short nr;
  25. const char *name;
  26. struct zorro_prod_info *prods;
  27. };
  28. /*
  29.  * This is ridiculous, but we want the strings in
  30.  * the .init section so that they don't take up
  31.  * real memory.. Parse the same file multiple times
  32.  * to get all the info.
  33.  */
  34. #define MANUF( manuf, name ) static char __manufstr_##manuf[] __initdata = name;
  35. #define ENDMANUF()
  36. #define PRODUCT( manuf, prod, name )  static char __prodstr_##manuf##prod[] __initdata = name;
  37. #include "devlist.h"
  38. #define MANUF( manuf, name ) static struct zorro_prod_info __prods_##manuf[] __initdata = {
  39. #define ENDMANUF() };
  40. #define PRODUCT( manuf, prod, name ) { 0x##prod, 0, __prodstr_##manuf##prod },
  41. #include "devlist.h"
  42. static struct zorro_manuf_info __initdata zorro_manuf_list[] = {
  43. #define MANUF( manuf, name ) { 0x##manuf, sizeof(__prods_##manuf) / sizeof(struct zorro_prod_info), __manufstr_##manuf, __prods_##manuf },
  44. #define ENDMANUF()
  45. #define PRODUCT( manuf, prod, name )
  46. #include "devlist.h"
  47. };
  48. #define MANUFS (sizeof(zorro_manuf_list)/sizeof(struct zorro_manuf_info))
  49. void __init zorro_name_device(struct zorro_dev *dev)
  50. {
  51. const struct zorro_manuf_info *manuf_p = zorro_manuf_list;
  52. int i = MANUFS;
  53. char *name = dev->name;
  54. do {
  55. if (manuf_p->manuf == ZORRO_MANUF(dev->id))
  56. goto match_manuf;
  57. manuf_p++;
  58. } while (--i);
  59. /* Couldn't find either the manufacturer nor the product */
  60. sprintf(name, "Zorro device %08x", dev->id);
  61. return;
  62. match_manuf: {
  63. struct zorro_prod_info *prod_p = manuf_p->prods;
  64. int i = manuf_p->nr;
  65. while (i > 0) {
  66. if (prod_p->prod ==
  67.     ((ZORRO_PROD(dev->id)<<8) | ZORRO_EPC(dev->id)))
  68. goto match_prod;
  69. prod_p++;
  70. i--;
  71. }
  72. /* Ok, found the manufacturer, but unknown product */
  73. sprintf(name, "Zorro device %08x (%s)", dev->id, manuf_p->name);
  74. return;
  75. /* Full match */
  76. match_prod: {
  77. char *n = name + sprintf(name, "%s %s", manuf_p->name, prod_p->name);
  78. int nr = prod_p->seen + 1;
  79. prod_p->seen = nr;
  80. if (nr > 1)
  81. sprintf(n, " (#%d)", nr);
  82. }
  83. }
  84. }
  85. #else
  86. void __init zorro_name_device(struct zorro_dev *dev)
  87. {
  88. }
  89. #endif