eisa-bus.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  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. edrv->driver.bus = &eisa_bus_type;
  115. return driver_register (&edrv->driver);
  116. }
  117. void eisa_driver_unregister (struct eisa_driver *edrv)
  118. {
  119. driver_unregister (&edrv->driver);
  120. }
  121. static ssize_t eisa_show_sig (struct device *dev, struct device_attribute *attr, char *buf)
  122. {
  123. struct eisa_device *edev = to_eisa_device (dev);
  124. return sprintf (buf,"%s\n", edev->id.sig);
  125. }
  126. static DEVICE_ATTR(signature, S_IRUGO, eisa_show_sig, NULL);
  127. static ssize_t eisa_show_state (struct device *dev, struct device_attribute *attr, char *buf)
  128. {
  129. struct eisa_device *edev = to_eisa_device (dev);
  130. return sprintf (buf,"%d\n", edev->state & EISA_CONFIG_ENABLED);
  131. }
  132. static DEVICE_ATTR(enabled, S_IRUGO, eisa_show_state, NULL);
  133. static int __init eisa_init_device (struct eisa_root_device *root,
  134. struct eisa_device *edev,
  135. int slot)
  136. {
  137. char *sig;
  138. unsigned long sig_addr;
  139. int i;
  140. sig_addr = SLOT_ADDRESS (root, slot) + EISA_VENDOR_ID_OFFSET;
  141. if (!(sig = decode_eisa_sig (sig_addr)))
  142. return -1; /* No EISA device here */
  143. memcpy (edev->id.sig, sig, EISA_SIG_LEN);
  144. edev->slot = slot;
  145. edev->state = inb (SLOT_ADDRESS (root, slot) + EISA_CONFIG_OFFSET) & EISA_CONFIG_ENABLED;
  146. edev->base_addr = SLOT_ADDRESS (root, slot);
  147. edev->dma_mask = root->dma_mask; /* Default DMA mask */
  148. eisa_name_device (edev);
  149. edev->dev.parent = root->dev;
  150. edev->dev.bus = &eisa_bus_type;
  151. edev->dev.dma_mask = &edev->dma_mask;
  152. edev->dev.coherent_dma_mask = edev->dma_mask;
  153. sprintf (edev->dev.bus_id, "%02X:%02X", root->bus_nr, slot);
  154. for (i = 0; i < EISA_MAX_RESOURCES; i++) {
  155. #ifdef CONFIG_EISA_NAMES
  156. edev->res[i].name = edev->pretty_name;
  157. #else
  158. edev->res[i].name = edev->id.sig;
  159. #endif
  160. }
  161. if (is_forced_dev (enable_dev, enable_dev_count, root, edev))
  162. edev->state = EISA_CONFIG_ENABLED | EISA_CONFIG_FORCED;
  163. if (is_forced_dev (disable_dev, disable_dev_count, root, edev))
  164. edev->state = EISA_CONFIG_FORCED;
  165. return 0;
  166. }
  167. static int __init eisa_register_device (struct eisa_device *edev)
  168. {
  169. if (device_register (&edev->dev))
  170. return -1;
  171. device_create_file (&edev->dev, &dev_attr_signature);
  172. device_create_file (&edev->dev, &dev_attr_enabled);
  173. return 0;
  174. }
  175. static int __init eisa_request_resources (struct eisa_root_device *root,
  176. struct eisa_device *edev,
  177. int slot)
  178. {
  179. int i;
  180. for (i = 0; i < EISA_MAX_RESOURCES; i++) {
  181. /* Don't register resource for slot 0, since this is
  182. * very likely to fail... :-( Instead, grab the EISA
  183. * id, now we can display something in /proc/ioports.
  184. */
  185. /* Only one region for mainboard */
  186. if (!slot && i > 0) {
  187. edev->res[i].start = edev->res[i].end = 0;
  188. continue;
  189. }
  190. if (slot) {
  191. edev->res[i].name = NULL;
  192. edev->res[i].start = SLOT_ADDRESS (root, slot) + (i * 0x400);
  193. edev->res[i].end = edev->res[i].start + 0xff;
  194. edev->res[i].flags = IORESOURCE_IO;
  195. } else {
  196. edev->res[i].name = NULL;
  197. edev->res[i].start = SLOT_ADDRESS (root, slot) + EISA_VENDOR_ID_OFFSET;
  198. edev->res[i].end = edev->res[i].start + 3;
  199. edev->res[i].flags = IORESOURCE_BUSY;
  200. }
  201. if (request_resource (root->res, &edev->res[i]))
  202. goto failed;
  203. }
  204. return 0;
  205. failed:
  206. while (--i >= 0)
  207. release_resource (&edev->res[i]);
  208. return -1;
  209. }
  210. static void __init eisa_release_resources (struct eisa_device *edev)
  211. {
  212. int i;
  213. for (i = 0; i < EISA_MAX_RESOURCES; i++)
  214. if (edev->res[i].start || edev->res[i].end)
  215. release_resource (&edev->res[i]);
  216. }
  217. static int __init eisa_probe (struct eisa_root_device *root)
  218. {
  219. int i, c;
  220. struct eisa_device *edev;
  221. printk (KERN_INFO "EISA: Probing bus %d at %s\n",
  222. root->bus_nr, root->dev->bus_id);
  223. /* First try to get hold of slot 0. If there is no device
  224. * here, simply fail, unless root->force_probe is set. */
  225. if (!(edev = kzalloc (sizeof (*edev), GFP_KERNEL))) {
  226. printk (KERN_ERR "EISA: Couldn't allocate mainboard slot\n");
  227. return -ENOMEM;
  228. }
  229. if (eisa_request_resources (root, edev, 0)) {
  230. printk (KERN_WARNING \
  231. "EISA: Cannot allocate resource for mainboard\n");
  232. kfree (edev);
  233. if (!root->force_probe)
  234. return -EBUSY;
  235. goto force_probe;
  236. }
  237. if (eisa_init_device (root, edev, 0)) {
  238. eisa_release_resources (edev);
  239. kfree (edev);
  240. if (!root->force_probe)
  241. return -ENODEV;
  242. goto force_probe;
  243. }
  244. printk (KERN_INFO "EISA: Mainboard %s detected.\n", edev->id.sig);
  245. if (eisa_register_device (edev)) {
  246. printk (KERN_ERR "EISA: Failed to register %s\n",
  247. edev->id.sig);
  248. eisa_release_resources (edev);
  249. kfree (edev);
  250. }
  251. force_probe:
  252. for (c = 0, i = 1; i <= root->slots; i++) {
  253. if (!(edev = kzalloc (sizeof (*edev), GFP_KERNEL))) {
  254. printk (KERN_ERR "EISA: Out of memory for slot %d\n",
  255. i);
  256. continue;
  257. }
  258. if (eisa_request_resources (root, edev, i)) {
  259. printk (KERN_WARNING \
  260. "Cannot allocate resource for EISA slot %d\n",
  261. i);
  262. kfree (edev);
  263. continue;
  264. }
  265. if (eisa_init_device (root, edev, i)) {
  266. eisa_release_resources (edev);
  267. kfree (edev);
  268. continue;
  269. }
  270. printk (KERN_INFO "EISA: slot %d : %s detected",
  271. i, edev->id.sig);
  272. switch (edev->state) {
  273. case EISA_CONFIG_ENABLED | EISA_CONFIG_FORCED:
  274. printk (" (forced enabled)");
  275. break;
  276. case EISA_CONFIG_FORCED:
  277. printk (" (forced disabled)");
  278. break;
  279. case 0:
  280. printk (" (disabled)");
  281. break;
  282. }
  283. printk (".\n");
  284. c++;
  285. if (eisa_register_device (edev)) {
  286. printk (KERN_ERR "EISA: Failed to register %s\n",
  287. edev->id.sig);
  288. eisa_release_resources (edev);
  289. kfree (edev);
  290. }
  291. }
  292. printk (KERN_INFO "EISA: Detected %d card%s.\n", c, c == 1 ? "" : "s");
  293. return 0;
  294. }
  295. static struct resource eisa_root_res = {
  296. .name = "EISA root resource",
  297. .start = 0,
  298. .end = 0xffffffff,
  299. .flags = IORESOURCE_IO,
  300. };
  301. static int eisa_bus_count;
  302. int __init eisa_root_register (struct eisa_root_device *root)
  303. {
  304. int err;
  305. /* Use our own resources to check if this bus base address has
  306. * been already registered. This prevents the virtual root
  307. * device from registering after the real one has, for
  308. * example... */
  309. root->eisa_root_res.name = eisa_root_res.name;
  310. root->eisa_root_res.start = root->res->start;
  311. root->eisa_root_res.end = root->res->end;
  312. root->eisa_root_res.flags = IORESOURCE_BUSY;
  313. if ((err = request_resource (&eisa_root_res, &root->eisa_root_res)))
  314. return err;
  315. root->bus_nr = eisa_bus_count++;
  316. if ((err = eisa_probe (root)))
  317. release_resource (&root->eisa_root_res);
  318. return err;
  319. }
  320. static int __init eisa_init (void)
  321. {
  322. int r;
  323. if ((r = bus_register (&eisa_bus_type)))
  324. return r;
  325. printk (KERN_INFO "EISA bus registered\n");
  326. return 0;
  327. }
  328. module_param_array(enable_dev, int, &enable_dev_count, 0444);
  329. module_param_array(disable_dev, int, &disable_dev_count, 0444);
  330. postcore_initcall (eisa_init);
  331. int EISA_bus; /* for legacy drivers */
  332. EXPORT_SYMBOL (EISA_bus);
  333. EXPORT_SYMBOL (eisa_bus_type);
  334. EXPORT_SYMBOL (eisa_driver_register);
  335. EXPORT_SYMBOL (eisa_driver_unregister);