eisa-bus.c 11 KB

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