eisa-bus.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. /*
  2. * EISA bus support functions for sysfs.
  3. *
  4. * (C) 2002, 2003 Marc Zyngier <maz@wild-wind.fr.eu.org>
  5. *
  6. * This code is released under the GPL version 2.
  7. */
  8. #include <linux/kernel.h>
  9. #include <linux/device.h>
  10. #include <linux/eisa.h>
  11. #include <linux/module.h>
  12. #include <linux/moduleparam.h>
  13. #include <linux/init.h>
  14. #include <linux/slab.h>
  15. #include <linux/ioport.h>
  16. #include <asm/io.h>
  17. #define SLOT_ADDRESS(r,n) (r->bus_base_addr + (0x1000 * n))
  18. #define EISA_DEVINFO(i,s) { .id = { .sig = i }, .name = s }
  19. struct eisa_device_info {
  20. struct eisa_device_id id;
  21. char name[DEVICE_NAME_SIZE];
  22. };
  23. #ifdef CONFIG_EISA_NAMES
  24. static struct eisa_device_info __initdata eisa_table[] = {
  25. #include "devlist.h"
  26. };
  27. #define EISA_INFOS (sizeof (eisa_table) / (sizeof (struct eisa_device_info)))
  28. #endif
  29. #define EISA_MAX_FORCED_DEV 16
  30. static int enable_dev[EISA_MAX_FORCED_DEV];
  31. static int enable_dev_count;
  32. static int disable_dev[EISA_MAX_FORCED_DEV];
  33. static int disable_dev_count;
  34. static int is_forced_dev (int *forced_tab,
  35. int forced_count,
  36. struct eisa_root_device *root,
  37. struct eisa_device *edev)
  38. {
  39. int i, x;
  40. for (i = 0; i < forced_count; i++) {
  41. x = (root->bus_nr << 8) | edev->slot;
  42. if (forced_tab[i] == x)
  43. return 1;
  44. }
  45. return 0;
  46. }
  47. static void __init eisa_name_device (struct eisa_device *edev)
  48. {
  49. #ifdef CONFIG_EISA_NAMES
  50. int i;
  51. for (i = 0; i < EISA_INFOS; i++) {
  52. if (!strcmp (edev->id.sig, eisa_table[i].id.sig)) {
  53. strlcpy (edev->pretty_name,
  54. eisa_table[i].name,
  55. DEVICE_NAME_SIZE);
  56. return;
  57. }
  58. }
  59. /* No name was found */
  60. sprintf (edev->pretty_name, "EISA device %.7s", edev->id.sig);
  61. #endif
  62. }
  63. static char __init *decode_eisa_sig(unsigned long addr)
  64. {
  65. static char sig_str[EISA_SIG_LEN];
  66. u8 sig[4];
  67. u16 rev;
  68. int i;
  69. for (i = 0; i < 4; i++) {
  70. #ifdef CONFIG_EISA_VLB_PRIMING
  71. /*
  72. * This ugly stuff is used to wake up VL-bus cards
  73. * (AHA-284x is the only known example), so we can
  74. * read the EISA id.
  75. *
  76. * Thankfully, this only exists on x86...
  77. */
  78. outb(0x80 + i, addr);
  79. #endif
  80. sig[i] = inb (addr + i);
  81. if (!i && (sig[0] & 0x80))
  82. return NULL;
  83. }
  84. sig_str[0] = ((sig[0] >> 2) & 0x1f) + ('A' - 1);
  85. sig_str[1] = (((sig[0] & 3) << 3) | (sig[1] >> 5)) + ('A' - 1);
  86. sig_str[2] = (sig[1] & 0x1f) + ('A' - 1);
  87. rev = (sig[2] << 8) | sig[3];
  88. sprintf(sig_str + 3, "%04X", rev);
  89. return sig_str;
  90. }
  91. static int eisa_bus_match (struct device *dev, struct device_driver *drv)
  92. {
  93. struct eisa_device *edev = to_eisa_device (dev);
  94. struct eisa_driver *edrv = to_eisa_driver (drv);
  95. const struct eisa_device_id *eids = edrv->id_table;
  96. if (!eids)
  97. return 0;
  98. while (strlen (eids->sig)) {
  99. if (!strcmp (eids->sig, edev->id.sig) &&
  100. edev->state & EISA_CONFIG_ENABLED) {
  101. edev->id.driver_data = eids->driver_data;
  102. return 1;
  103. }
  104. eids++;
  105. }
  106. return 0;
  107. }
  108. struct bus_type eisa_bus_type = {
  109. .name = "eisa",
  110. .match = eisa_bus_match,
  111. };
  112. int eisa_driver_register (struct eisa_driver *edrv)
  113. {
  114. int r;
  115. edrv->driver.bus = &eisa_bus_type;
  116. if ((r = driver_register (&edrv->driver)) < 0)
  117. return r;
  118. return 0;
  119. }
  120. void eisa_driver_unregister (struct eisa_driver *edrv)
  121. {
  122. driver_unregister (&edrv->driver);
  123. }
  124. static ssize_t eisa_show_sig (struct device *dev, struct device_attribute *attr, char *buf)
  125. {
  126. struct eisa_device *edev = to_eisa_device (dev);
  127. return sprintf (buf,"%s\n", edev->id.sig);
  128. }
  129. static DEVICE_ATTR(signature, S_IRUGO, eisa_show_sig, NULL);
  130. static ssize_t eisa_show_state (struct device *dev, struct device_attribute *attr, char *buf)
  131. {
  132. struct eisa_device *edev = to_eisa_device (dev);
  133. return sprintf (buf,"%d\n", edev->state & EISA_CONFIG_ENABLED);
  134. }
  135. static DEVICE_ATTR(enabled, S_IRUGO, eisa_show_state, NULL);
  136. static int __init eisa_init_device (struct eisa_root_device *root,
  137. struct eisa_device *edev,
  138. int slot)
  139. {
  140. char *sig;
  141. unsigned long sig_addr;
  142. int i;
  143. sig_addr = SLOT_ADDRESS (root, slot) + EISA_VENDOR_ID_OFFSET;
  144. if (!(sig = decode_eisa_sig (sig_addr)))
  145. return -1; /* No EISA device here */
  146. memcpy (edev->id.sig, sig, EISA_SIG_LEN);
  147. edev->slot = slot;
  148. edev->state = inb (SLOT_ADDRESS (root, slot) + EISA_CONFIG_OFFSET) & EISA_CONFIG_ENABLED;
  149. edev->base_addr = SLOT_ADDRESS (root, slot);
  150. edev->dma_mask = root->dma_mask; /* Default DMA mask */
  151. eisa_name_device (edev);
  152. edev->dev.parent = root->dev;
  153. edev->dev.bus = &eisa_bus_type;
  154. edev->dev.dma_mask = &edev->dma_mask;
  155. edev->dev.coherent_dma_mask = edev->dma_mask;
  156. sprintf (edev->dev.bus_id, "%02X:%02X", root->bus_nr, slot);
  157. for (i = 0; i < EISA_MAX_RESOURCES; i++) {
  158. #ifdef CONFIG_EISA_NAMES
  159. edev->res[i].name = edev->pretty_name;
  160. #else
  161. edev->res[i].name = edev->id.sig;
  162. #endif
  163. }
  164. if (is_forced_dev (enable_dev, enable_dev_count, root, edev))
  165. edev->state = EISA_CONFIG_ENABLED | EISA_CONFIG_FORCED;
  166. if (is_forced_dev (disable_dev, disable_dev_count, root, edev))
  167. edev->state = EISA_CONFIG_FORCED;
  168. return 0;
  169. }
  170. static int __init eisa_register_device (struct eisa_device *edev)
  171. {
  172. if (device_register (&edev->dev))
  173. return -1;
  174. device_create_file (&edev->dev, &dev_attr_signature);
  175. device_create_file (&edev->dev, &dev_attr_enabled);
  176. return 0;
  177. }
  178. static int __init eisa_request_resources (struct eisa_root_device *root,
  179. struct eisa_device *edev,
  180. int slot)
  181. {
  182. int i;
  183. for (i = 0; i < EISA_MAX_RESOURCES; i++) {
  184. /* Don't register resource for slot 0, since this is
  185. * very likely to fail... :-( Instead, grab the EISA
  186. * id, now we can display something in /proc/ioports.
  187. */
  188. /* Only one region for mainboard */
  189. if (!slot && i > 0) {
  190. edev->res[i].start = edev->res[i].end = 0;
  191. continue;
  192. }
  193. if (slot) {
  194. edev->res[i].name = NULL;
  195. edev->res[i].start = SLOT_ADDRESS (root, slot) + (i * 0x400);
  196. edev->res[i].end = edev->res[i].start + 0xff;
  197. edev->res[i].flags = IORESOURCE_IO;
  198. } else {
  199. edev->res[i].name = NULL;
  200. edev->res[i].start = SLOT_ADDRESS (root, slot) + EISA_VENDOR_ID_OFFSET;
  201. edev->res[i].end = edev->res[i].start + 3;
  202. edev->res[i].flags = IORESOURCE_BUSY;
  203. }
  204. if (request_resource (root->res, &edev->res[i]))
  205. goto failed;
  206. }
  207. return 0;
  208. failed:
  209. while (--i >= 0)
  210. release_resource (&edev->res[i]);
  211. return -1;
  212. }
  213. static void __init eisa_release_resources (struct eisa_device *edev)
  214. {
  215. int i;
  216. for (i = 0; i < EISA_MAX_RESOURCES; i++)
  217. if (edev->res[i].start || edev->res[i].end)
  218. release_resource (&edev->res[i]);
  219. }
  220. static int __init eisa_probe (struct eisa_root_device *root)
  221. {
  222. int i, c;
  223. struct eisa_device *edev;
  224. printk (KERN_INFO "EISA: Probing bus %d at %s\n",
  225. root->bus_nr, root->dev->bus_id);
  226. /* First try to get hold of slot 0. If there is no device
  227. * here, simply fail, unless root->force_probe is set. */
  228. if (!(edev = kzalloc (sizeof (*edev), GFP_KERNEL))) {
  229. printk (KERN_ERR "EISA: Couldn't allocate mainboard slot\n");
  230. return -ENOMEM;
  231. }
  232. if (eisa_request_resources (root, edev, 0)) {
  233. printk (KERN_WARNING \
  234. "EISA: Cannot allocate resource for mainboard\n");
  235. kfree (edev);
  236. if (!root->force_probe)
  237. return -EBUSY;
  238. goto force_probe;
  239. }
  240. if (eisa_init_device (root, edev, 0)) {
  241. eisa_release_resources (edev);
  242. kfree (edev);
  243. if (!root->force_probe)
  244. return -ENODEV;
  245. goto force_probe;
  246. }
  247. printk (KERN_INFO "EISA: Mainboard %s detected.\n", edev->id.sig);
  248. if (eisa_register_device (edev)) {
  249. printk (KERN_ERR "EISA: Failed to register %s\n",
  250. edev->id.sig);
  251. eisa_release_resources (edev);
  252. kfree (edev);
  253. }
  254. force_probe:
  255. for (c = 0, i = 1; i <= root->slots; i++) {
  256. if (!(edev = kzalloc (sizeof (*edev), GFP_KERNEL))) {
  257. printk (KERN_ERR "EISA: Out of memory for slot %d\n",
  258. i);
  259. continue;
  260. }
  261. if (eisa_request_resources (root, edev, i)) {
  262. printk (KERN_WARNING \
  263. "Cannot allocate resource for EISA slot %d\n",
  264. i);
  265. kfree (edev);
  266. continue;
  267. }
  268. if (eisa_init_device (root, edev, i)) {
  269. eisa_release_resources (edev);
  270. kfree (edev);
  271. continue;
  272. }
  273. printk (KERN_INFO "EISA: slot %d : %s detected",
  274. i, edev->id.sig);
  275. switch (edev->state) {
  276. case EISA_CONFIG_ENABLED | EISA_CONFIG_FORCED:
  277. printk (" (forced enabled)");
  278. break;
  279. case EISA_CONFIG_FORCED:
  280. printk (" (forced disabled)");
  281. break;
  282. case 0:
  283. printk (" (disabled)");
  284. break;
  285. }
  286. printk (".\n");
  287. c++;
  288. if (eisa_register_device (edev)) {
  289. printk (KERN_ERR "EISA: Failed to register %s\n",
  290. edev->id.sig);
  291. eisa_release_resources (edev);
  292. kfree (edev);
  293. }
  294. }
  295. printk (KERN_INFO "EISA: Detected %d card%s.\n", c, c == 1 ? "" : "s");
  296. return 0;
  297. }
  298. static struct resource eisa_root_res = {
  299. .name = "EISA root resource",
  300. .start = 0,
  301. .end = 0xffffffff,
  302. .flags = IORESOURCE_IO,
  303. };
  304. static int eisa_bus_count;
  305. int __init eisa_root_register (struct eisa_root_device *root)
  306. {
  307. int err;
  308. /* Use our own resources to check if this bus base address has
  309. * been already registered. This prevents the virtual root
  310. * device from registering after the real one has, for
  311. * example... */
  312. root->eisa_root_res.name = eisa_root_res.name;
  313. root->eisa_root_res.start = root->res->start;
  314. root->eisa_root_res.end = root->res->end;
  315. root->eisa_root_res.flags = IORESOURCE_BUSY;
  316. if ((err = request_resource (&eisa_root_res, &root->eisa_root_res)))
  317. return err;
  318. root->bus_nr = eisa_bus_count++;
  319. if ((err = eisa_probe (root)))
  320. release_resource (&root->eisa_root_res);
  321. return err;
  322. }
  323. static int __init eisa_init (void)
  324. {
  325. int r;
  326. if ((r = bus_register (&eisa_bus_type)))
  327. return r;
  328. printk (KERN_INFO "EISA bus registered\n");
  329. return 0;
  330. }
  331. module_param_array(enable_dev, int, &enable_dev_count, 0444);
  332. module_param_array(disable_dev, int, &disable_dev_count, 0444);
  333. postcore_initcall (eisa_init);
  334. int EISA_bus; /* for legacy drivers */
  335. EXPORT_SYMBOL (EISA_bus);
  336. EXPORT_SYMBOL (eisa_bus_type);
  337. EXPORT_SYMBOL (eisa_driver_register);
  338. EXPORT_SYMBOL (eisa_driver_unregister);