isapnp.c
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:52k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2.  *  ISA Plug & Play support
  3.  *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
  4.  *
  5.  *  Modified by Ed Okerson <eokerson@quicknet.net> to work with the 2.2.x
  6.  *  series of Linux kernels. 11/17/99
  7.  *
  8.  *   This program is free software; you can redistribute it and/or modify
  9.  *   it under the terms of the GNU General Public License as published by
  10.  *   the Free Software Foundation; either version 2 of the License, or
  11.  *   (at your option) any later version.
  12.  *
  13.  *   This program is distributed in the hope that it will be useful,
  14.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *   GNU General Public License for more details.
  17.  *
  18.  *   You should have received a copy of the GNU General Public License
  19.  *   along with this program; if not, write to the Free Software
  20.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  */
  23. #include <linux/config.h>
  24. #include <linux/version.h>
  25. #define EXPORT_SYMTAB
  26. #include <linux/module.h>
  27. #include <linux/kernel.h>
  28. #include <linux/errno.h>
  29. #include <linux/ioport.h>
  30. #include <linux/string.h>
  31. #include <linux/malloc.h>
  32. #include <linux/proc_fs.h>
  33. #include <linux/delay.h>
  34. #include <asm/io.h>
  35. #include <asm/dma.h>
  36. #include <asm/irq.h>
  37. #include <linux/pci.h>
  38. #include <linux/vmalloc.h>
  39. #include <linux/poll.h>
  40. #include <linux/init.h>
  41. #include <asm/uaccess.h>
  42. #include "pnpio.h"
  43. #include "isapnp.h"
  44. #ifdef CONFIG_PROC_FS
  45. #include "isapnp_proc.c"
  46. #endif
  47. #if 0
  48. #define ISAPNP_REGION_OK
  49. #endif
  50. #if 0
  51. #define ISAPNP_DEBUG
  52. #endif
  53. //struct resource *pidxr_res = NULL;
  54. //struct resource *pnpwrp_res = NULL;
  55. //struct resource *isapnp_rdp_res = NULL;
  56. int isapnp_disable = 0; /* Disable ISA PnP */
  57. int isapnp_rdp = 0; /* Read Data Port */
  58. int isapnp_reset = 0; /* reset all PnP cards (deactivate) */
  59. int isapnp_skip_pci_scan = 0; /* skip PCI resource scanning */
  60. int isapnp_verbose = 1; /* verbose mode */
  61. int isapnp_reserve_irq[16] = { [0 ... 15] = -1 }; /* reserve (don't use) some IRQ */
  62. int isapnp_reserve_dma[8] = { [0 ... 7] = -1 }; /* reserve (don't use) some DMA */
  63. int isapnp_reserve_io[16] = { [0 ... 15] = -1 }; /* reserve (don't use) some I/O region */
  64. int isapnp_reserve_mem[16] = { [0 ... 15] = -1 }; /* reserve (don't use) some memory region */
  65. int isapnp_debug = 0;
  66. MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
  67. MODULE_DESCRIPTION("Generic ISA Plug & Play support");
  68. MODULE_PARM(isapnp_disable, "i");
  69. MODULE_PARM_DESC(isapnp_disable, "ISA Plug & Play disable");
  70. MODULE_PARM(isapnp_rdp, "i");
  71. MODULE_PARM_DESC(isapnp_rdp, "ISA Plug & Play read data port");
  72. MODULE_PARM(isapnp_reset, "i");
  73. MODULE_PARM_DESC(isapnp_reset, "ISA Plug & Play reset all cards");
  74. MODULE_PARM(isapnp_skip_pci_scan, "i");
  75. MODULE_PARM_DESC(isapnp_skip_pci_scan, "ISA Plug & Play skip PCI resource scanning");
  76. MODULE_PARM(isapnp_verbose, "i");
  77. MODULE_PARM_DESC(isapnp_verbose, "ISA Plug & Play verbose mode");
  78. MODULE_PARM(isapnp_reserve_irq, "1-16i");
  79. MODULE_PARM_DESC(isapnp_reserve_irq, "ISA Plug & Play - reserve IRQ line(s)");
  80. MODULE_PARM(isapnp_reserve_dma, "1-8i");
  81. MODULE_PARM_DESC(isapnp_reserve_dma, "ISA Plug & Play - reserve DMA channel(s)");
  82. MODULE_PARM(isapnp_reserve_io, "1-16i");
  83. MODULE_PARM_DESC(isapnp_reserve_io, "ISA Plug & Play - reserve I/O region(s) - port,size");
  84. MODULE_PARM(isapnp_reserve_mem, "1-16i");
  85. MODULE_PARM_DESC(isapnp_reserve_mem, "ISA Plug & Play - reserve memory region(s) - address,size");
  86. MODULE_PARM(isapnp_debug, "i");
  87. MODULE_PARM_DESC(isapnp_debug, "ISA Plug & Play - Turn on some debugging messages");
  88. #define _PIDXR 0x279
  89. #define _PNPWRP 0xa79
  90. /* short tags */
  91. #define _STAG_PNPVERNO 0x01
  92. #define _STAG_LOGDEVID 0x02
  93. #define _STAG_COMPATDEVID 0x03
  94. #define _STAG_IRQ 0x04
  95. #define _STAG_DMA 0x05
  96. #define _STAG_STARTDEP 0x06
  97. #define _STAG_ENDDEP 0x07
  98. #define _STAG_IOPORT 0x08
  99. #define _STAG_FIXEDIO 0x09
  100. #define _STAG_VENDOR 0x0e
  101. #define _STAG_END 0x0f
  102. /* long tags */
  103. #define _LTAG_MEMRANGE 0x81
  104. #define _LTAG_ANSISTR 0x82
  105. #define _LTAG_UNICODESTR 0x83
  106. #define _LTAG_VENDOR 0x84
  107. #define _LTAG_MEM32RANGE 0x85
  108. #define _LTAG_FIXEDMEM32RANGE 0x86
  109. struct pnp_bus *isapnp_cards = NULL; /* ISA PnP cards */
  110. struct pnp_dev *isapnp_devices = NULL; /* ISA PnP devices */
  111. static struct pnp_dev *isapnp_last_device = NULL;
  112. static unsigned char isapnp_checksum_value;
  113. static struct semaphore isapnp_cfg_mutex = MUTEX;
  114. static int isapnp_detected = 0;
  115. /* some prototypes */
  116. static int isapnp_config_prepare(struct pnp_dev *dev);
  117. static int isapnp_config_activate(struct pnp_dev *dev);
  118. static int isapnp_config_deactivate(struct pnp_dev *dev);
  119. static inline void write_data(unsigned char x)
  120. {
  121. outb(x, _PNPWRP);
  122. }
  123. static inline void write_address(unsigned char x)
  124. {
  125. outb(x, _PIDXR);
  126. udelay(10);
  127. }
  128. static inline unsigned char read_data(void)
  129. {
  130. unsigned char val = inb(isapnp_rdp);
  131. return val;
  132. }
  133. unsigned char isapnp_read_byte(unsigned char idx)
  134. {
  135. write_address(idx);
  136. return read_data();
  137. }
  138. unsigned short isapnp_read_word(unsigned char idx)
  139. {
  140. unsigned short val;
  141. val = isapnp_read_byte(idx);
  142. val = (val << 8) + isapnp_read_byte(idx+1);
  143. return val;
  144. }
  145. unsigned int isapnp_read_dword(unsigned char idx)
  146. {
  147. unsigned int val;
  148. val = isapnp_read_byte(idx);
  149. val = (val << 8) + isapnp_read_byte(idx+1);
  150. val = (val << 8) + isapnp_read_byte(idx+2);
  151. val = (val << 8) + isapnp_read_byte(idx+3);
  152. return val;
  153. }
  154. void isapnp_write_byte(unsigned char idx, unsigned char val)
  155. {
  156. write_address(idx);
  157. write_data(val);
  158. }
  159. void isapnp_write_word(unsigned char idx, unsigned short val)
  160. {
  161. isapnp_write_byte(idx, val >> 8);
  162. isapnp_write_byte(idx+1, val);
  163. }
  164. void isapnp_write_dword(unsigned char idx, unsigned int val)
  165. {
  166. isapnp_write_byte(idx, val >> 24);
  167. isapnp_write_byte(idx+1, val >> 16);
  168. isapnp_write_byte(idx+2, val >> 8);
  169. isapnp_write_byte(idx+3, val);
  170. }
  171. static void *isapnp_alloc(long size)
  172. {
  173. void *result;
  174. result = kmalloc(size, GFP_KERNEL);
  175. if (!result)
  176. return NULL;
  177. memset(result, 0, size);
  178. return result;
  179. }
  180. static void isapnp_key(void)
  181. {
  182. unsigned char code = 0x6a, msb;
  183. int i;
  184. mdelay(1);
  185. write_address(0x00);
  186. write_address(0x00);
  187. write_address(code);
  188. for (i = 1; i < 32; i++) {
  189. msb = ((code & 0x01) ^ ((code & 0x02) >> 1)) << 7;
  190. code = (code >> 1) | msb;
  191. write_address(code);
  192. }
  193. }
  194. /* place all pnp cards in wait-for-key state */
  195. static void isapnp_wait(void)
  196. {
  197. isapnp_write_byte(0x02, 0x02);
  198. }
  199. void isapnp_wake(unsigned char csn)
  200. {
  201. isapnp_write_byte(0x03, csn);
  202. }
  203. void isapnp_device(unsigned char logdev)
  204. {
  205. isapnp_write_byte(0x07, logdev);
  206. }
  207. void isapnp_activate(unsigned char logdev)
  208. {
  209. isapnp_device(logdev);
  210. isapnp_write_byte(ISAPNP_CFG_ACTIVATE, 1);
  211. udelay(250);
  212. }
  213. void isapnp_deactivate(unsigned char logdev)
  214. {
  215. isapnp_device(logdev);
  216. isapnp_write_byte(ISAPNP_CFG_ACTIVATE, 0);
  217. }
  218. static void __init isapnp_peek(unsigned char *data, int bytes)
  219. {
  220. int i, j;
  221. unsigned char d;
  222. for (i = 1; i <= bytes; i++) {
  223. for (j = 0; j < 10; j++) {
  224. d = isapnp_read_byte(0x05);
  225. if (d & 1)
  226. break;
  227. udelay(10);
  228. }
  229. if (!(d & 1)) {
  230. *data++ = 0xff;
  231. continue;
  232. }
  233. d = isapnp_read_byte(0x04); /* PRESDI */
  234. isapnp_checksum_value += d;
  235. if (data != NULL)
  236. *data++ = d;
  237. }
  238. }
  239. #define RDP_STEP 32 /* minimum is 4 */
  240. static int isapnp_next_rdp(void)
  241. {
  242. int rdp = isapnp_rdp;
  243. while (rdp <= 0x3ff) {
  244. if (!check_region(rdp, 1)) {
  245. isapnp_rdp = rdp;
  246. return 0;
  247. }
  248. rdp += RDP_STEP;
  249. }
  250. return -1;
  251. }
  252. /* Set read port address */
  253. static inline void isapnp_set_rdp(void)
  254. {
  255. isapnp_write_byte(0x00, isapnp_rdp >> 2);
  256. udelay(100);
  257. }
  258. /*
  259.  * This code is badly broken. We cannot simply pick ports as the 
  260.  * ISAPnP specification implies. We should try 4 or 5 safe ports
  261.  * then bale by default.
  262.  *
  263.  * This code touches NE2K cards or other devices and your box is
  264.  * history.
  265.  */
  266. static int __init isapnp_isolate_rdp_select(void)
  267. {
  268. isapnp_wait();
  269. isapnp_key();
  270. /* Control: reset CSN and conditionally everything else too */
  271. isapnp_write_byte(0x02, isapnp_reset ? 0x05 : 0x04);
  272. mdelay(2);
  273. isapnp_wait();
  274. isapnp_key();
  275. isapnp_wake(0x00);
  276. if (isapnp_next_rdp() < 0) {
  277. isapnp_wait();
  278. return -1;
  279. }
  280. isapnp_set_rdp();
  281. udelay(1000);
  282. write_address(0x01);
  283. udelay(1000);
  284. return 0;
  285. }
  286. /*
  287.  *  Isolate (assign uniqued CSN) to all ISA PnP devices.
  288.  */
  289. static int __init isapnp_isolate(void)
  290. {
  291. unsigned char checksum = 0x6a;
  292. unsigned char chksum = 0x00;
  293. unsigned char bit = 0x00;
  294. int data;
  295. int csn = 0;
  296. int i;
  297. int iteration = 1;
  298. isapnp_rdp = 0x213;
  299. if (isapnp_isolate_rdp_select() < 0)
  300. return -1;
  301. while (1) {
  302. for (i = 1; i <= 64; i++) {
  303. data = read_data() << 8;
  304. udelay(250);
  305. data = data | read_data();
  306. udelay(250);
  307. if (data == 0x55aa)
  308. bit = 0x01;
  309. checksum = ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7) | (checksum >> 1);
  310. bit = 0x00;
  311. }
  312. for (i = 65; i <= 72; i++) {
  313. data = read_data() << 8;
  314. udelay(250);
  315. data = data | read_data();
  316. udelay(250);
  317. if (data == 0x55aa)
  318. chksum |= (1 << (i - 65));
  319. }
  320. if (checksum != 0x00 && checksum == chksum) {
  321. csn++;
  322. isapnp_write_byte(0x06, csn);
  323. udelay(250);
  324. iteration++;
  325. isapnp_wake(0x00);
  326. write_address(0x01);
  327. goto __next;
  328. }
  329. if (iteration == 1) {
  330. isapnp_rdp += RDP_STEP;
  331. if (isapnp_isolate_rdp_select() < 0)
  332. return -1;
  333. } else if (iteration > 1) {
  334. break;
  335. }
  336.       __next:
  337. checksum = 0x6a;
  338. chksum = 0x00;
  339. bit = 0x00;
  340. }
  341. isapnp_wait();
  342. return csn;
  343. }
  344. /*
  345.  *  Read one tag from stream.
  346.  */
  347. static int __init isapnp_read_tag(unsigned char *type, unsigned short *size)
  348. {
  349. unsigned char tag, tmp[2];
  350. isapnp_peek(&tag, 1);
  351. if (tag == 0) /* invalid tag */
  352. return -1;
  353. if (tag & 0x80) { /* large item */
  354. *type = tag;
  355. isapnp_peek(tmp, 2);
  356. *size = (tmp[1] << 8) | tmp[0];
  357. } else {
  358. *type = (tag >> 3) & 0x0f;
  359. *size = tag & 0x07;
  360. }
  361.         if(isapnp_debug > 0)
  362.         {
  363.   printk("tag = 0x%x, type = 0x%x, size = %in", tag, *type, *size);
  364.         }
  365. if (type == 0) /* wrong type */
  366. return -1;
  367. if (*type == 0xff && *size == 0xffff) /* probably invalid data */
  368. return -1;
  369. return 0;
  370. }
  371. /*
  372.  *  Skip specified number of bytes from stream.
  373.  */
  374.  
  375. static void __init isapnp_skip_bytes(int count)
  376. {
  377. isapnp_peek(NULL, count);
  378. }
  379. /*
  380.  *  Parse logical device tag.
  381.  */
  382. static struct pnp_dev * __init isapnp_parse_device(struct pnp_bus *card,
  383. int size, int number)
  384. {
  385. unsigned char tmp[6];
  386. struct pnp_dev *dev;
  387. isapnp_peek(tmp, size);
  388. dev = isapnp_alloc(sizeof(struct pnp_dev));
  389. if (!dev)
  390. return NULL;
  391. dev->devfn = number;
  392. dev->vendor = (tmp[1] << 8) | tmp[0];
  393. dev->device = (tmp[3] << 8) | tmp[2];
  394. dev->regs = tmp[4];
  395. dev->bus = card;
  396. if (size > 5)
  397. dev->regs |= tmp[5] << 8;
  398. dev->prepare = isapnp_config_prepare;
  399. dev->activate = isapnp_config_activate;
  400. dev->deactivate = isapnp_config_deactivate;
  401. return dev;
  402. }
  403. /*
  404.  *  Build new resources structure
  405.  */
  406. static struct isapnp_resources * __init isapnp_build_resources(struct pnp_dev *dev, int dependent)
  407. {
  408. struct isapnp_resources *res, *ptr, *ptra;
  409. res = isapnp_alloc(sizeof(struct isapnp_resources));
  410. if (!res)
  411. return NULL;
  412. res->dev = dev;
  413. ptr = (struct isapnp_resources *)dev->sysdata;
  414. while (ptr && ptr->next)
  415. ptr = ptr->next;
  416. if (ptr && ptr->dependent && dependent) { /* add to another list */
  417. ptra = ptr->alt;
  418. while (ptra && ptra->alt)
  419. ptra = ptra->alt;
  420. if (!ptra)
  421. ptr->alt = res;
  422. else
  423. ptra->alt = res;
  424. } else {
  425. if (!ptr)
  426. dev->sysdata = res;
  427. else
  428. ptr->next = res;
  429. }
  430. if (dependent) {
  431. res->priority = dependent & 0xff;
  432. if (res->priority > ISAPNP_RES_PRIORITY_FUNCTIONAL)
  433. res->priority = ISAPNP_RES_PRIORITY_INVALID;
  434. res->dependent = 1;
  435. } else {
  436. res->priority = ISAPNP_RES_PRIORITY_PREFERRED;
  437. res->dependent = 0;
  438. }
  439. return res;
  440. }
  441. /*
  442.  *  Add IRQ resource to resources list.
  443.  */
  444. static void __init isapnp_add_irq_resource(struct pnp_dev *dev,
  445.                                             struct isapnp_resources **res,
  446.                                                int dependent, int size)
  447. {
  448. unsigned char tmp[3];
  449. struct isapnp_irq *irq, *ptr;
  450. isapnp_peek(tmp, size);
  451. irq = isapnp_alloc(sizeof(struct isapnp_irq));
  452. if (!irq)
  453. return;
  454. if (*res == NULL) {
  455. *res = isapnp_build_resources(dev, dependent);
  456. if (*res == NULL) {
  457. kfree(irq);
  458. return;
  459. }
  460. }
  461. irq->map = (tmp[1] << 8) | tmp[0];
  462. if (size > 2)
  463. irq->flags = tmp[2];
  464. else
  465. irq->flags = IORESOURCE_IRQ_HIGHEDGE;
  466. irq->res = *res;
  467. ptr = (*res)->irq;
  468. while (ptr && ptr->next)
  469. ptr = ptr->next;
  470. if (ptr)
  471. ptr->next = irq;
  472. else
  473. (*res)->irq = irq;
  474. }
  475. /*
  476.  *  Add DMA resource to resources list.
  477.  */
  478. static void __init isapnp_add_dma_resource(struct pnp_dev *dev,
  479.                                             struct isapnp_resources **res,
  480.                                             int dependent, int size)
  481. {
  482. unsigned char tmp[2];
  483. struct isapnp_dma *dma, *ptr;
  484. isapnp_peek(tmp, size);
  485. dma = isapnp_alloc(sizeof(struct isapnp_dma));
  486. if (!dma)
  487. return;
  488. if (*res == NULL) {
  489. *res = isapnp_build_resources(dev, dependent);
  490. if (*res == NULL) {
  491. kfree(dma);
  492. return;
  493. }
  494. }
  495. dma->map = tmp[0];
  496. dma->flags = tmp[1];
  497. dma->res = *res;
  498. ptr = (*res)->dma;
  499. while (ptr && ptr->next)
  500. ptr = ptr->next;
  501. if (ptr)
  502. ptr->next = dma;
  503. else
  504. (*res)->dma = dma;
  505. }
  506. /*
  507.  *  Add port resource to resources list.
  508.  */
  509. static void __init isapnp_add_port_resource(struct pnp_dev *dev,
  510. struct isapnp_resources **res,
  511. int dependent, int size)
  512. {
  513. unsigned char tmp[7];
  514. struct isapnp_port *port, *ptr;
  515. isapnp_peek(tmp, size);
  516. port = isapnp_alloc(sizeof(struct isapnp_port));
  517. if (!port)
  518. return;
  519. if (*res == NULL) {
  520. *res = isapnp_build_resources(dev, dependent);
  521. if (*res == NULL) {
  522. kfree(port);
  523. return;
  524. }
  525. }
  526. port->min = (tmp[2] << 8) | tmp[1];
  527. port->max = (tmp[4] << 8) | tmp[3];
  528. port->align = tmp[5];
  529. port->size = tmp[6];
  530. port->flags = tmp[0] ? ISAPNP_PORT_FLAG_16BITADDR : 0;
  531. port->res = *res;
  532. ptr = (*res)->port;
  533. while (ptr && ptr->next)
  534. ptr = ptr->next;
  535. if (ptr)
  536. ptr->next = port;
  537. else
  538. (*res)->port = port;
  539. }
  540. /*
  541.  *  Add fixed port resource to resources list.
  542.  */
  543. static void __init isapnp_add_fixed_port_resource(struct pnp_dev *dev,
  544.       struct isapnp_resources **res,
  545.       int dependent, int size)
  546. {
  547. unsigned char tmp[3];
  548. struct isapnp_port *port, *ptr;
  549. isapnp_peek(tmp, size);
  550. port = isapnp_alloc(sizeof(struct isapnp_port));
  551. if (!port)
  552. return;
  553. if (*res == NULL) {
  554. *res = isapnp_build_resources(dev, dependent);
  555. if (*res == NULL) {
  556. kfree(port);
  557. return;
  558. }
  559. }
  560. port->min = port->max = (tmp[1] << 8) | tmp[0];
  561. port->size = tmp[2];
  562. port->align = 0;
  563. port->flags = ISAPNP_PORT_FLAG_FIXED;
  564. port->res = *res;
  565. ptr = (*res)->port;
  566. while (ptr && ptr->next)
  567. ptr = ptr->next;
  568. if (ptr)
  569. ptr->next = port;
  570. else
  571. (*res)->port = port;
  572. }
  573. /*
  574.  *  Add memory resource to resources list.
  575.  */
  576. static void __init isapnp_add_mem_resource(struct pnp_dev *dev,
  577.        struct isapnp_resources **res,
  578.        int dependent, int size)
  579. {
  580. unsigned char tmp[9];
  581. struct isapnp_mem *mem, *ptr;
  582. isapnp_peek(tmp, size);
  583. mem = isapnp_alloc(sizeof(struct isapnp_mem));
  584. if (!mem)
  585. return;
  586. if (*res == NULL) {
  587. *res = isapnp_build_resources(dev, dependent);
  588. if (*res == NULL) {
  589. kfree(mem);
  590. return;
  591. }
  592. }
  593. mem->min = ((tmp[2] << 8) | tmp[1]) << 8;
  594. mem->max = ((tmp[4] << 8) | tmp[3]) << 8;
  595. mem->align = (tmp[6] << 8) | tmp[5];
  596. mem->size = ((tmp[8] << 8) | tmp[7]) << 8;
  597. mem->flags = tmp[0];
  598. mem->res = *res;
  599. ptr = (*res)->mem;
  600. while (ptr && ptr->next)
  601. ptr = ptr->next;
  602. if (ptr)
  603. ptr->next = mem;
  604. else
  605. (*res)->mem = mem;
  606. }
  607. /*
  608.  *  Add 32-bit memory resource to resources list.
  609.  */
  610. static void __init isapnp_add_mem32_resource(struct pnp_dev *dev,
  611.  struct isapnp_resources **res,
  612.  int dependent, int size)
  613. {
  614. unsigned char tmp[17];
  615. struct isapnp_mem32 *mem32, *ptr;
  616. isapnp_peek(tmp, size);
  617. mem32 = isapnp_alloc(sizeof(struct isapnp_mem32));
  618. if (!mem32)
  619. return;
  620. if (*res == NULL) {
  621. *res = isapnp_build_resources(dev, dependent);
  622. if (*res == NULL) {
  623. kfree(mem32);
  624. return;
  625. }
  626. }
  627. memcpy(mem32->data, tmp, 17);
  628. mem32->res = *res;
  629. ptr = (*res)->mem32;
  630. while (ptr && ptr->next)
  631. ptr = ptr->next;
  632. if (ptr)
  633. ptr->next = mem32;
  634. else
  635. (*res)->mem32 = mem32;
  636. }
  637. /*
  638.  *  Add 32-bit fixed memory resource to resources list.
  639.  */
  640. static void __init isapnp_add_fixed_mem32_resource(struct pnp_dev *dev,
  641.        struct isapnp_resources **res,
  642.        int dependent, int size)
  643. {
  644. unsigned char tmp[17];
  645. struct isapnp_mem32 *mem32, *ptr;
  646. isapnp_peek(tmp, size);
  647. mem32 = isapnp_alloc(sizeof(struct isapnp_mem32));
  648. if (!mem32)
  649. return;
  650. if (*res == NULL) {
  651. *res = isapnp_build_resources(dev, dependent);
  652. if (*res == NULL) {
  653. kfree(mem32);
  654. return;
  655. }
  656. }
  657. memcpy(mem32->data, tmp, 17);
  658. mem32->res = *res;
  659. ptr = (*res)->mem32;
  660. while (ptr && ptr->next)
  661. ptr = ptr->next;
  662. if (ptr)
  663. ptr->next = mem32;
  664. else
  665. (*res)->mem32 = mem32;
  666. }
  667. /*
  668.  *  Parse resource map for logical device.
  669.  */
  670. static int __init isapnp_create_device(struct pnp_bus *card,
  671.    unsigned short size)
  672. {
  673. int number = 0, skip = 0, dependent = 0, compat = 0;
  674. unsigned char type, tmp[17];
  675. struct pnp_dev *dev, *prev_dev;
  676. struct isapnp_resources *res = NULL;
  677. if ((dev = isapnp_parse_device(card, size, number++)) == NULL)
  678. return 1;
  679. card->devices = dev;
  680. if (isapnp_last_device) {
  681. isapnp_last_device->next = dev;
  682. isapnp_last_device = dev;
  683. } else {
  684. isapnp_devices = isapnp_last_device = dev;
  685. }
  686. while (1) {
  687. if (isapnp_read_tag(&type, &size)<0)
  688. return 1;
  689. if (skip && type != _STAG_LOGDEVID && type != _STAG_END)
  690. goto __skip;
  691. switch (type) {
  692. case _STAG_LOGDEVID:
  693. if (size >= 5 && size <= 6) {
  694. prev_dev = dev;
  695. isapnp_config_prepare(dev);
  696. if ((dev = isapnp_parse_device(card, size, number++)) == NULL)
  697. return 1;
  698. prev_dev->sibling = dev;
  699. isapnp_last_device->next = dev;
  700. isapnp_last_device = dev;
  701. size = 0;
  702. skip = 0;
  703. } else {
  704. skip = 1;
  705. }
  706. res = NULL;
  707. dependent = 0;
  708. compat = 0;
  709. break;
  710. case _STAG_COMPATDEVID:
  711. if (size == 4 && compat < DEVICE_COUNT_COMPATIBLE) {
  712. isapnp_peek(tmp, 4);
  713. dev->vendor_compatible[compat] = (tmp[1] << 8) | tmp[0];
  714. dev->device_compatible[compat] = (tmp[3] << 8) | tmp[2];
  715. compat++;
  716. size = 0;
  717. }
  718. break;
  719. case _STAG_IRQ:
  720. if (size < 2 || size > 3)
  721. goto __skip;
  722. isapnp_add_irq_resource(dev, &res, dependent, size);
  723. size = 0;
  724. break;
  725. case _STAG_DMA:
  726. if (size != 2)
  727. goto __skip;
  728. isapnp_add_dma_resource(dev, &res, dependent, size);
  729. size = 0;
  730. break;
  731. case _STAG_STARTDEP:
  732. if (size > 1)
  733. goto __skip;
  734. res = NULL;
  735. dependent = 0x100 | ISAPNP_RES_PRIORITY_ACCEPTABLE;
  736. if (size > 0) {
  737. isapnp_peek(tmp, size);
  738. dependent = 0x100 | tmp[0];
  739. size = 0;
  740. }
  741. break;
  742. case _STAG_ENDDEP:
  743. if (size != 0)
  744. goto __skip;
  745. res = NULL;
  746. dependent = 0;
  747. break;
  748. case _STAG_IOPORT:
  749. if (size != 7)
  750. goto __skip;
  751. isapnp_add_port_resource(dev, &res, dependent, size);
  752. size = 0;
  753. break;
  754. case _STAG_FIXEDIO:
  755. if (size != 3)
  756. goto __skip;
  757. isapnp_add_fixed_port_resource(dev, &res, dependent, size);
  758. size = 0;
  759. break;
  760. case _STAG_VENDOR:
  761. break;
  762. case _LTAG_MEMRANGE:
  763. if (size != 9)
  764. goto __skip;
  765. isapnp_add_mem_resource(dev, &res, dependent, size);
  766. size = 0;
  767. break;
  768. case _LTAG_ANSISTR:
  769. if (dev->name[0] == '') {
  770. unsigned short size1 = size > 47 ? 47 : size;
  771. isapnp_peek(dev->name, size1);
  772. dev->name[size1] = '';
  773. size -= size1;
  774. }
  775. break;
  776. case _LTAG_UNICODESTR:
  777. /* silently ignore */
  778. /* who use unicode for hardware identification? */
  779. break;
  780. case _LTAG_VENDOR:
  781. break;
  782. case _LTAG_MEM32RANGE:
  783. if (size != 17)
  784. goto __skip;
  785. isapnp_add_mem32_resource(dev, &res, dependent, size);
  786. size = 0;
  787. break;
  788. case _LTAG_FIXEDMEM32RANGE:
  789. if (size != 17)
  790. goto __skip;
  791. isapnp_add_fixed_mem32_resource(dev, &res, dependent, size);
  792. size = 0;
  793. break;
  794. case _STAG_END:
  795. if (size > 0)
  796. isapnp_skip_bytes(size);
  797. return 1;
  798. default:
  799. printk("isapnp: unexpected or unknown tag type 0x%x for logical device %i (device %i), ignoredn", type, dev->devfn, card->number);
  800. }
  801.       __skip:
  802.        if (size > 0)
  803.        isapnp_skip_bytes(size);
  804. }
  805. isapnp_config_prepare(dev);
  806. return 0;
  807. }
  808. /*
  809.  *  Parse resource map for ISA PnP card.
  810.  */
  811.  
  812. static void __init isapnp_parse_resource_map(struct pnp_bus *card)
  813. {
  814. unsigned char type, tmp[17];
  815. unsigned short size;
  816. while (1) {
  817. if (isapnp_read_tag(&type, &size)<0)
  818. return;
  819. switch (type) {
  820. case _STAG_PNPVERNO:
  821. if (size != 2)
  822. goto __skip;
  823. isapnp_peek(tmp, 2);
  824. card->pnpver = tmp[0];
  825. card->productver = tmp[1];
  826. size = 0;
  827. break;
  828. case _STAG_LOGDEVID:
  829. if (size >= 5 && size <= 6) {
  830. if (isapnp_create_device(card, size)==1)
  831. return;
  832. size = 0;
  833. }
  834. break;
  835. case _STAG_VENDOR:
  836. break;
  837. case _LTAG_ANSISTR:
  838. if (card->name[0] == '') {
  839. unsigned short size1 = size > 47 ? 47 : size;
  840. isapnp_peek(card->name, size1);
  841. card->name[size1] = '';
  842. size -= size1;
  843. }
  844. break;
  845. case _LTAG_UNICODESTR:
  846. /* silently ignore */
  847. /* who use unicode for hardware identification? */
  848. break;
  849. case _LTAG_VENDOR:
  850. break;
  851. case _STAG_END:
  852. if (size > 0)
  853. isapnp_skip_bytes(size);
  854. return;
  855. default:
  856. printk("isapnp: unexpected or unknown tag type 0x%x for device %i, ignoredn", type, card->number);
  857. }
  858.       __skip:
  859.        if (size > 0)
  860.        isapnp_skip_bytes(size);
  861. }
  862. }
  863. /*
  864.  *  Compute ISA PnP checksum for first eight bytes.
  865.  */
  866. static unsigned char __init isapnp_checksum(unsigned char *data)
  867. {
  868. int i, j;
  869. unsigned char checksum = 0x6a, bit, b;
  870. for (i = 0; i < 8; i++) {
  871. b = data[i];
  872. for (j = 0; j < 8; j++) {
  873. bit = 0;
  874. if (b & (1 << j))
  875. bit = 1;
  876. checksum = ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7) | (checksum >> 1);
  877. }
  878. }
  879. return checksum;
  880. }
  881. /*
  882.  *  Build device list for all present ISA PnP devices.
  883.  */
  884. static int __init isapnp_build_device_list(void)
  885. {
  886. int csn;
  887. unsigned char header[9], checksum;
  888. struct pnp_bus *card, *prev = NULL;
  889. isapnp_wait();
  890. isapnp_key();
  891. for (csn = 1; csn <= 10; csn++) {
  892. isapnp_wake(csn);
  893. isapnp_peek(header, 9);
  894. checksum = isapnp_checksum(header);
  895.         if(isapnp_debug > 0)
  896.         {
  897. printk("vendor: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02xn",
  898. header[0], header[1], header[2], header[3],
  899. header[4], header[5], header[6], header[7], header[8]);
  900. printk("checksum = 0x%xn", checksum);
  901.         }
  902. if (checksum == 0x00 || checksum != header[8]) /* not valid CSN */
  903. continue;
  904. if ((card = isapnp_alloc(sizeof(struct pnp_bus))) == NULL)
  905. continue;
  906. card->number = csn;
  907. card->vendor = (header[1] << 8) | header[0];
  908. card->device = (header[3] << 8) | header[2];
  909. card->serial = (header[7] << 24) | (header[6] << 16) | (header[5] << 8) | header[4];
  910. isapnp_checksum_value = 0x00;
  911. isapnp_parse_resource_map(card);
  912. if (isapnp_checksum_value != 0x00)
  913. printk("isapnp: checksum for device %i is not valid (0x%x)n", csn, isapnp_checksum_value);
  914. card->checksum = isapnp_checksum_value;
  915. if (!isapnp_cards)
  916. isapnp_cards = card;
  917. else
  918. prev->next = card;
  919. prev = card;
  920. }
  921. return 0;
  922. }
  923. /*
  924.  *  Basic configuration routines.
  925.  */
  926. int isapnp_present(void)
  927. {
  928. if (isapnp_devices)
  929. return 1;
  930. return 0;
  931. }
  932. int isapnp_cfg_begin(int csn, int logdev)
  933. {
  934. if (csn < 1 || csn > 10 || logdev > 10)
  935. return -EINVAL;
  936. MOD_INC_USE_COUNT;
  937. down(&isapnp_cfg_mutex);
  938. isapnp_wait();
  939. isapnp_key();
  940. isapnp_wake(csn);
  941. #if 1 /* to avoid malfunction when the isapnptools package is used */
  942. isapnp_set_rdp();
  943. udelay(1000); /* delay 1000us */
  944. write_address(0x01);
  945. udelay(1000); /* delay 1000us */
  946. #endif
  947. if (logdev >= 0)
  948. isapnp_device(logdev);
  949. return 0;
  950. }
  951. int isapnp_cfg_end(void)
  952. {
  953. isapnp_wait();
  954. up(&isapnp_cfg_mutex);
  955. MOD_DEC_USE_COUNT;
  956. return 0;
  957. }
  958. /*
  959.  *  Resource manager.
  960.  */
  961. static struct isapnp_port *isapnp_find_port(struct pnp_dev *dev, int index)
  962. {
  963. struct isapnp_resources *res;
  964. struct isapnp_port *port;
  965. if (!dev || index < 0 || index > 7)
  966. return NULL;
  967. for (res = (struct isapnp_resources *)dev->sysdata; res; res = res->next) {
  968. for (port = res->port; port; port = port->next) {
  969. if (!index)
  970. return port;
  971. index--;
  972. }
  973. }
  974. return NULL;
  975. }
  976. struct isapnp_irq *isapnp_find_irq(struct pnp_dev *dev, int index)
  977. {
  978. struct isapnp_resources *res, *resa;
  979. struct isapnp_irq *irq;
  980. int index1, index2, index3;
  981. if (!dev || index < 0 || index > 7)
  982. return NULL;
  983. for (res = (struct isapnp_resources *)dev->sysdata; res; res = res->next) {
  984. index3 = 0;
  985. for (resa = res; resa; resa = resa->alt) {
  986. index1 = index;
  987. index2 = 0;
  988. for (irq = resa->irq; irq; irq = irq->next) {
  989. if (!index1)
  990. return irq;
  991. index1--;
  992. index2++;
  993. }
  994. if (index3 < index2)
  995. index3 = index2;
  996. }
  997. index -= index3;
  998. }
  999. return NULL;
  1000. }
  1001. struct isapnp_dma *isapnp_find_dma(struct pnp_dev *dev, int index)
  1002. {
  1003. struct isapnp_resources *res;
  1004. struct isapnp_dma *dma;
  1005. if (!dev || index < 0 || index > 7)
  1006. return NULL;
  1007. for (res = (struct isapnp_resources *)dev->sysdata; res; res = res->next) {
  1008. for (dma = res->dma; dma; dma = dma->next) {
  1009. if (!index)
  1010. return dma;
  1011. index--;
  1012. }
  1013. }
  1014. return NULL;
  1015. }
  1016. struct isapnp_mem *isapnp_find_mem(struct pnp_dev *dev, int index)
  1017. {
  1018. struct isapnp_resources *res;
  1019. struct isapnp_mem *mem;
  1020. if (!dev || index < 0 || index > 7)
  1021. return NULL;
  1022. for (res = (struct isapnp_resources *)dev->sysdata; res; res = res->next) {
  1023. for (mem = res->mem; mem; mem = mem->next) {
  1024. if (!index)
  1025. return mem;
  1026. index--;
  1027. }
  1028. }
  1029. return NULL;
  1030. }
  1031. struct isapnp_mem32 *isapnp_find_mem32(struct pnp_dev *dev, int index)
  1032. {
  1033. struct isapnp_resources *res;
  1034. struct isapnp_mem32 *mem32;
  1035. if (!dev || index < 0 || index > 7)
  1036. return NULL;
  1037. for (res = (struct isapnp_resources *)dev->sysdata; res; res = res->next) {
  1038. for (mem32 = res->mem32; mem32; mem32 = mem32->next) {
  1039. if (!index)
  1040. return mem32;
  1041. index--;
  1042. }
  1043. }
  1044. return NULL;
  1045. }
  1046. /*
  1047.  *  Device manager.
  1048.  */
  1049. struct pnp_bus *isapnp_find_card(unsigned short vendor,
  1050.  unsigned short device,
  1051.  struct pnp_bus *from)
  1052. {
  1053. struct pnp_bus *card;
  1054. if (from == NULL) {
  1055. from = isapnp_cards;
  1056. } else {
  1057. from = from->next;
  1058. }
  1059. for (card = from; card; card = card->next) {
  1060. if (card->vendor == vendor && card->device == device)
  1061. return card;
  1062. }
  1063. return NULL;
  1064. }
  1065. struct pnp_dev *isapnp_find_dev(struct pnp_bus *card,
  1066. unsigned short vendor,
  1067. unsigned short function,
  1068. struct pnp_dev *from)
  1069. {
  1070. struct pnp_dev *dev;
  1071. int idx;
  1072. if (card == NULL) { /* look for a logical device from all cards */
  1073. if (from == NULL) {
  1074. from = isapnp_devices;
  1075. } else {
  1076. from = from->next;
  1077. }
  1078. for (dev = from; dev; dev = dev->next) {
  1079. if (dev->vendor == vendor && dev->device == function)
  1080. return dev;
  1081. for (idx = 0; idx < DEVICE_COUNT_COMPATIBLE; idx++)
  1082. if (dev->vendor_compatible[idx] == vendor &&
  1083.     dev->device_compatible[idx] == function)
  1084. return dev;
  1085. }
  1086. } else {
  1087. if (from == NULL) {
  1088. from = card->devices;
  1089. } else {
  1090. from = from->next;
  1091. }
  1092. if (from->bus != card) /* something is wrong */
  1093. return NULL;
  1094. for (dev = from; dev; dev = dev->sibling) {
  1095. if (dev->vendor == vendor && dev->device == function)
  1096. return dev;
  1097. for (idx = 0; idx < DEVICE_COUNT_COMPATIBLE; idx++)
  1098. if (dev->vendor_compatible[idx] == vendor &&
  1099.     dev->device_compatible[idx] == function)
  1100. return dev;
  1101. }
  1102. }
  1103. return NULL;
  1104. }
  1105. static unsigned int isapnp_dma_resource_flags(struct isapnp_dma *dma)
  1106. {
  1107. return dma->flags | IORESOURCE_DMA | IORESOURCE_AUTO;
  1108. }
  1109. static unsigned int isapnp_mem_resource_flags(struct isapnp_mem *mem)
  1110. {
  1111. unsigned int result;
  1112. result = mem->flags | IORESOURCE_MEM | IORESOURCE_AUTO;
  1113. if (!(mem->flags & IORESOURCE_MEM_WRITEABLE))
  1114. result |= IORESOURCE_READONLY;
  1115. if (mem->flags & IORESOURCE_MEM_CACHEABLE)
  1116. result |= IORESOURCE_CACHEABLE;
  1117. if (mem->flags & IORESOURCE_MEM_RANGELENGTH)
  1118. result |= IORESOURCE_RANGELENGTH;
  1119. if (mem->flags & IORESOURCE_MEM_SHADOWABLE)
  1120. result |= IORESOURCE_SHADOWABLE;
  1121. return result;
  1122. }
  1123. static unsigned int isapnp_irq_resource_flags(struct isapnp_irq *irq)
  1124. {
  1125. return irq->flags | IORESOURCE_IRQ | IORESOURCE_AUTO;
  1126. }
  1127. static unsigned int isapnp_port_resource_flags(struct isapnp_port *port)
  1128. {
  1129. return port->flags | IORESOURCE_IO | IORESOURCE_AUTO;
  1130. }
  1131. static int isapnp_config_prepare(struct pnp_dev *dev)
  1132. {
  1133. struct isapnp_resources *res, *resa;
  1134. struct isapnp_port *port;
  1135. struct isapnp_irq *irq;
  1136. struct isapnp_dma *dma;
  1137. struct isapnp_mem *mem;
  1138. int port_count, port_count1;
  1139. int irq_count, irq_count1;
  1140. int dma_count, dma_count1;
  1141. int mem_count, mem_count1;
  1142. int idx;
  1143. if (dev == NULL)
  1144. return -EINVAL;
  1145. if (dev->active) // || dev->ro)
  1146. return -EBUSY;
  1147. for (idx = 0; idx < DEVICE_COUNT_IRQ; idx++) {
  1148. dev->irq_resource[idx].name = NULL;
  1149. dev->irq_resource[idx].start = 0;
  1150. dev->irq_resource[idx].end = 0;
  1151. dev->irq_resource[idx].flags = 0;
  1152. }
  1153. for (idx = 0; idx < DEVICE_COUNT_DMA; idx++) {
  1154. dev->dma_resource[idx].name = NULL;
  1155. dev->dma_resource[idx].start = 0;
  1156. dev->dma_resource[idx].end = 0;
  1157. dev->dma_resource[idx].flags = 0;
  1158. }
  1159. for (idx = 0; idx < DEVICE_COUNT_RESOURCE; idx++) {
  1160. dev->resource[idx].name = NULL;
  1161. dev->resource[idx].start = 0;
  1162. dev->resource[idx].end = 0;
  1163. dev->resource[idx].flags = 0;
  1164. }
  1165. port_count = irq_count = dma_count = mem_count = 0;
  1166. for (res = (struct isapnp_resources *)dev->sysdata; res; res = res->next) {
  1167. port_count1 = irq_count1 = dma_count1 = mem_count1 = 0;
  1168. for (resa = res; resa; resa = resa->alt) {
  1169. for (port = resa->port, idx = 0; port; port = port->next, idx++) {
  1170. if (dev->resource[port_count + idx].flags == 0) {
  1171. dev->resource[port_count + idx].flags = isapnp_port_resource_flags(port);
  1172. dev->resource[port_count + idx].end = port->size;
  1173. }
  1174. }
  1175. if (port_count1 < idx)
  1176. port_count1 = idx;
  1177. for (irq = resa->irq, idx = 0; irq; irq = irq->next, idx++) {
  1178. int count = irq_count + idx;
  1179. if (count < DEVICE_COUNT_IRQ) {
  1180. if (dev->irq_resource[count].flags == 0) {
  1181. dev->irq_resource[count].flags = isapnp_irq_resource_flags(irq);
  1182. }
  1183. }
  1184. }
  1185. if (irq_count1 < idx)
  1186. irq_count1 = idx;
  1187. for (dma = resa->dma, idx = 0; dma; dma = dma->next, idx++)
  1188. if (dev->dma_resource[idx].flags == 0) {
  1189. dev->dma_resource[idx].flags = isapnp_dma_resource_flags(dma);
  1190. }
  1191. if (dma_count1 < idx)
  1192. dma_count1 = idx;
  1193. for (mem = resa->mem, idx = 0; mem; mem = mem->next, idx++)
  1194. if (dev->resource[mem_count + idx + 8].flags == 0) {
  1195. dev->resource[mem_count + idx + 8].flags = isapnp_mem_resource_flags(mem);
  1196. }
  1197. if (mem_count1 < idx)
  1198. mem_count1 = idx;
  1199. }
  1200. port_count += port_count1;
  1201. irq_count += irq_count1;
  1202. dma_count += dma_count1;
  1203. mem_count += mem_count1;
  1204. }
  1205. return 0;
  1206. }
  1207. struct isapnp_cfgtmp {
  1208. struct isapnp_port *port[8];
  1209. struct isapnp_irq *irq[2];
  1210. struct isapnp_dma *dma[2];
  1211. struct isapnp_mem *mem[4];
  1212. struct pnp_dev *request;
  1213. struct pnp_dev result;
  1214. };
  1215. static int isapnp_alternative_switch(struct isapnp_cfgtmp *cfg,
  1216.      struct isapnp_resources *from,
  1217.      struct isapnp_resources *to)
  1218. {
  1219. int tmp, tmp1;
  1220. struct isapnp_port *port;
  1221. struct isapnp_irq *irq;
  1222. struct isapnp_dma *dma;
  1223. struct isapnp_mem *mem;
  1224. if (!cfg)
  1225. return -EINVAL;
  1226. /* process port settings */
  1227. for (tmp = 0; tmp < 8; tmp++) {
  1228. if (!(cfg->request->resource[tmp].flags & IORESOURCE_AUTO))
  1229. continue; /* don't touch */
  1230. port = cfg->port[tmp];
  1231. if (!port) {
  1232. cfg->port[tmp] = port = isapnp_find_port(cfg->request, tmp);
  1233. if (!port)
  1234. return -EINVAL;
  1235. }
  1236. if (from && port->res == from) {
  1237. while (port->res != to) {
  1238. if (!port->res->alt)
  1239. return -EINVAL;
  1240. port = port->res->alt->port;
  1241. for (tmp1 = tmp; tmp1 > 0 && port; tmp1--)
  1242. port = port->next;
  1243. cfg->port[tmp] = port;
  1244. if (!port)
  1245. return -ENOENT;
  1246. cfg->result.resource[tmp].flags = isapnp_port_resource_flags(port);
  1247. }
  1248. }
  1249. }
  1250. /* process irq settings */
  1251. for (tmp = 0; tmp < 2; tmp++) {
  1252. if (!(cfg->request->irq_resource[tmp].flags & IORESOURCE_AUTO))
  1253. continue; /* don't touch */
  1254. irq = cfg->irq[tmp];
  1255. if (!irq) {
  1256. cfg->irq[tmp] = irq = isapnp_find_irq(cfg->request, tmp);
  1257. if (!irq)
  1258. return -EINVAL;
  1259. }
  1260. if (from && irq->res == from) {
  1261. while (irq->res != to) {
  1262. if (!irq->res->alt)
  1263. return -EINVAL;
  1264. irq = irq->res->alt->irq;
  1265. for (tmp1 = tmp; tmp1 > 0 && irq; tmp1--)
  1266. irq = irq->next;
  1267. cfg->irq[tmp] = irq;
  1268. if (!irq)
  1269. return -ENOENT;
  1270. cfg->result.irq_resource[tmp].flags = isapnp_irq_resource_flags(irq);
  1271. }
  1272. }
  1273. }
  1274. /* process dma settings */
  1275. for (tmp = 0; tmp < 2; tmp++) {
  1276. if (!(cfg->request->dma_resource[tmp].flags & IORESOURCE_AUTO))
  1277. continue; /* don't touch */
  1278. dma = cfg->dma[tmp];
  1279. if (!dma) {
  1280. cfg->dma[tmp] = dma = isapnp_find_dma(cfg->request, tmp);
  1281. if (!dma)
  1282. return -EINVAL;
  1283. }
  1284. if (from && dma->res == from) {
  1285. while (dma->res != to) {
  1286. if (!dma->res->alt)
  1287. return -EINVAL;
  1288. dma = dma->res->alt->dma;
  1289. for (tmp1 = tmp; tmp1 > 0 && dma; tmp1--)
  1290. dma = dma->next;
  1291. cfg->dma[tmp] = dma;
  1292. if (!dma)
  1293. return -ENOENT;
  1294. cfg->result.dma_resource[tmp].flags = isapnp_dma_resource_flags(dma);
  1295. }
  1296. }
  1297. }
  1298. /* process memory settings */
  1299. for (tmp = 0; tmp < 4; tmp++) {
  1300. if (!(cfg->request->resource[tmp + 8].flags & IORESOURCE_AUTO))
  1301. continue; /* don't touch */
  1302. mem = cfg->mem[tmp];
  1303. if (!mem) {
  1304. cfg->mem[tmp] = mem = isapnp_find_mem(cfg->request, tmp);
  1305. if (!mem)
  1306. return -EINVAL;
  1307. }
  1308. if (from && mem->res == from) {
  1309. while (mem->res != to) {
  1310. if (!mem->res->alt)
  1311. return -EINVAL;
  1312. mem = mem->res->alt->mem;
  1313. for (tmp1 = tmp; tmp1 > 0 && mem; tmp1--)
  1314. mem = mem->next;
  1315. cfg->mem[tmp] = mem;
  1316. if (!mem)
  1317. return -ENOENT;
  1318. cfg->result.resource[tmp + 8].flags = isapnp_mem_resource_flags(mem);
  1319. }
  1320. }
  1321. }
  1322. return 0;
  1323. }
  1324. static int isapnp_check_port(struct isapnp_cfgtmp *cfg, int port, int size, int idx)
  1325. {
  1326. int i, tmp, rport, rsize;
  1327. struct isapnp_port *xport;
  1328. struct pnp_dev *dev;
  1329. if (check_region(port, size))
  1330. return 1;
  1331. for (i = 0; i < 8; i++) {
  1332. rport = isapnp_reserve_io[i << 1];
  1333. rsize = isapnp_reserve_io[(i << 1) + 1];
  1334. if (port >= rport && port < rport + rsize)
  1335. return 1;
  1336. if (port + size > rport && port + size < (rport + rsize) - 1)
  1337. return 1;
  1338. }
  1339. for (dev = isapnp_devices; dev; dev = dev->next) {
  1340. if (dev->active) {
  1341. for (tmp = 0; tmp < 8; tmp++) {
  1342. if (dev->resource[tmp].flags) {
  1343. rport = dev->resource[tmp].start;
  1344. rsize = (dev->resource[tmp].end - rport) + 1;
  1345. if (port >= rport && port < rport + rsize)
  1346. return 1;
  1347. if (port + size > rport && port + size < (rport + rsize) - 1)
  1348. return 1;
  1349. }
  1350. }
  1351. }
  1352. }
  1353. for (i = 0; i < 8; i++) {
  1354. unsigned int flags;
  1355. if (i == idx)
  1356. continue;
  1357. flags = cfg->request->resource[i].flags;
  1358. if (!flags)
  1359. continue;
  1360. tmp = cfg->request->resource[i].start;
  1361. if (flags & IORESOURCE_AUTO) { /* auto */
  1362. xport = cfg->port[i];
  1363. if (!xport)
  1364. return 1;
  1365. if (cfg->result.resource[i].flags & IORESOURCE_AUTO)
  1366. continue;
  1367. tmp = cfg->result.resource[i].start;
  1368. if (tmp + xport->size >= port && tmp <= port + xport->size)
  1369. return 1;
  1370. continue;
  1371. }
  1372. if (port == tmp)
  1373. return 1;
  1374. xport = isapnp_find_port(cfg->request, i);
  1375. if (!xport)
  1376. return 1;
  1377. if (tmp + xport->size >= port && tmp <= port + xport->size)
  1378. return 1;
  1379. }
  1380. return 0;
  1381. }
  1382. static int isapnp_valid_port(struct isapnp_cfgtmp *cfg, int idx)
  1383. {
  1384. int err;
  1385. unsigned long *value1, *value2;
  1386. struct isapnp_port *port;
  1387. if (!cfg || idx < 0 || idx > 7)
  1388. return -EINVAL;
  1389. if (!(cfg->result.resource[idx].flags & IORESOURCE_AUTO)) /* don't touch */
  1390. return 0;
  1391.       __again:
  1392.        port = cfg->port[idx];
  1393.        if (!port)
  1394.        return -EINVAL;
  1395.        value1 = &cfg->result.resource[idx].start;
  1396.        value2 = &cfg->result.resource[idx].end;
  1397. if (cfg->result.resource[idx].flags & IORESOURCE_AUTO) {
  1398. cfg->result.resource[idx].flags &= ~IORESOURCE_AUTO;
  1399. *value1 = port->min;
  1400. *value2 = port->min + port->size - 1;
  1401. if (!isapnp_check_port(cfg, *value1, port->size, idx))
  1402. return 0;
  1403. }
  1404. do {
  1405. *value1 += port->align;
  1406. *value2 = *value1 + port->size - 1;
  1407. if (*value1 > port->max || !port->align) {
  1408. if (port->res && port->res->alt) {
  1409. if ((err = isapnp_alternative_switch(cfg, port->res, port->res->alt))<0)
  1410. return err;
  1411. goto __again;
  1412. }
  1413. return -ENOENT;
  1414. }
  1415. } while (isapnp_check_port(cfg, *value1, port->size, idx));
  1416. return 0;
  1417. }
  1418. static void isapnp_test_handler(int irq, void *dev_id, struct pt_regs *regs)
  1419. {
  1420. }
  1421. static int isapnp_check_interrupt(struct isapnp_cfgtmp *cfg, int irq, int idx)
  1422. {
  1423. int i;
  1424. struct pnp_dev *dev;
  1425. if (irq < 0 || irq > 15)
  1426. return 1;
  1427. for (i = 0; i < 16; i++) {
  1428. if (isapnp_reserve_irq[i] == irq)
  1429. return 1;
  1430. }
  1431. for (dev = isapnp_devices; dev; dev = dev->next) {
  1432. if (dev->active) {
  1433. if (dev->irq_resource[0].start == irq ||
  1434.     dev->irq_resource[1].start == irq)
  1435. return 1;
  1436. }
  1437. }
  1438. if (request_irq(irq, isapnp_test_handler, SA_INTERRUPT, "isapnp", NULL))
  1439. return 1;
  1440. free_irq(irq, NULL);
  1441. for (i = 0; i < DEVICE_COUNT_IRQ; i++) {
  1442. if (i == idx)
  1443. continue;
  1444. if (!cfg->result.irq_resource[i].flags)
  1445. continue;
  1446. if (cfg->result.irq_resource[i].flags & IORESOURCE_AUTO)
  1447. continue;
  1448. if (cfg->result.irq_resource[i].start == irq)
  1449. return 1;
  1450. }
  1451. return 0;
  1452. }
  1453. static int isapnp_valid_irq(struct isapnp_cfgtmp *cfg, int idx)
  1454. {
  1455. /* IRQ priority: this table is good for i386 */
  1456. static unsigned short xtab[16] = {
  1457. 5, 10, 11, 12, 9, 14, 15, 7, 3, 4, 13, 0, 1, 6, 8, 2
  1458. };
  1459. int err, i;
  1460. unsigned long *value1, *value2;
  1461. struct isapnp_irq *irq;
  1462. if (!cfg || idx < 0 || idx > 1)
  1463. return -EINVAL;
  1464. if (!(cfg->result.irq_resource[idx].flags & IORESOURCE_AUTO))
  1465. return 0;
  1466.       __again:
  1467.        irq = cfg->irq[idx];
  1468.        if (!irq)
  1469.        return -EINVAL;
  1470.        value1 = &cfg->result.irq_resource[idx].start;
  1471.        value2 = &cfg->result.irq_resource[idx].end;
  1472. if (cfg->result.irq_resource[idx].flags & IORESOURCE_AUTO) {
  1473. for (i = 0; i < 16 && !(irq->map & (1<<xtab[i])); i++);
  1474. if (i >= 16)
  1475. return -ENOENT;
  1476. cfg->result.irq_resource[idx].flags &= ~IORESOURCE_AUTO;
  1477. if (!isapnp_check_interrupt(cfg, *value1 = *value2 = xtab[i], idx))
  1478. return 0;
  1479. }
  1480. do {
  1481. for (i = 0; i < 16 && xtab[i] != *value1; i++);
  1482. for (i++; i < 16 && !(irq->map & (1<<xtab[i])); i++);
  1483. if (i >= 16) {
  1484. if (irq->res && irq->res->alt) {
  1485. if ((err = isapnp_alternative_switch(cfg, irq->res, irq->res->alt))<0)
  1486. return err;
  1487. goto __again;
  1488. }
  1489. return -ENOENT;
  1490. } else {
  1491. *value1 = *value2 = xtab[i];
  1492. }
  1493. } while (isapnp_check_interrupt(cfg, *value1, idx));
  1494. return 0;
  1495. }
  1496. static int isapnp_check_dma(struct isapnp_cfgtmp *cfg, int dma, int idx)
  1497. {
  1498. int i;
  1499. struct pnp_dev *dev;
  1500. if (dma < 0 || dma == 4 || dma > 7)
  1501. return 1;
  1502. for (i = 0; i < 8; i++) {
  1503. if (isapnp_reserve_dma[i] == dma)
  1504. return 1;
  1505. }
  1506. for (dev = isapnp_devices; dev; dev = dev->next) {
  1507. if (dev->active) {
  1508. if (dev->dma_resource[0].start == dma || dev->dma_resource[1].start == dma)
  1509. return 1;
  1510. }
  1511. }
  1512. if (request_dma(dma, "isapnp"))
  1513. return 1;
  1514. free_dma(dma);
  1515. for (i = 0; i < 2; i++) {
  1516. if (i == idx)
  1517. continue;
  1518. if (!cfg->result.dma_resource[i].flags ||
  1519.     (cfg->result.dma_resource[i].flags & IORESOURCE_AUTO))
  1520. continue;
  1521. if (cfg->result.dma_resource[i].start == dma)
  1522. return 1;
  1523. }
  1524. return 0;
  1525. }
  1526. static int isapnp_valid_dma(struct isapnp_cfgtmp *cfg, int idx)
  1527. {
  1528. int err, i;
  1529. unsigned long *value1, *value2;
  1530. struct isapnp_dma *dma;
  1531. if (!cfg || idx < 0 || idx > 1)
  1532. return -EINVAL;
  1533. if (!(cfg->result.dma_resource[idx].flags & IORESOURCE_AUTO)) /* don't touch */
  1534. return 0;
  1535.       __again:
  1536.        dma = cfg->dma[idx];
  1537.        if (!dma)
  1538.        return -EINVAL;
  1539.        value1 = &cfg->result.dma_resource[idx].start;
  1540.        value2 = &cfg->result.dma_resource[idx].end;
  1541. if (cfg->result.dma_resource[idx].flags & IORESOURCE_AUTO) {
  1542. for (i = 0; i < 8 && !(dma->map & (1<<i)); i++);
  1543. if (i >= 8)
  1544. return -ENOENT;
  1545. cfg->result.dma_resource[idx].flags &= ~IORESOURCE_AUTO;
  1546. if (!isapnp_check_dma(cfg, *value1 = *value2 = i, idx))
  1547. return 0;
  1548. }
  1549. do {
  1550. for (i = *value1 + 1; i < 8 && !(dma->map & (1<<i)); i++);
  1551. if (i >= 8) {
  1552. if (dma->res && dma->res->alt) {
  1553. if ((err = isapnp_alternative_switch(cfg, dma->res, dma->res->alt))<0)
  1554. return err;
  1555. goto __again;
  1556. }
  1557. return -ENOENT;
  1558. } else {
  1559. *value1 = *value2 = i;
  1560. }
  1561. } while (isapnp_check_dma(cfg, *value1, idx));
  1562. return 0;
  1563. }
  1564. static int isapnp_check_mem(struct isapnp_cfgtmp *cfg, unsigned int addr, unsigned int size, int idx)
  1565. {
  1566. int i, tmp;
  1567. unsigned int raddr, rsize;
  1568. struct pnp_dev *dev;
  1569. struct isapnp_mem *xmem;
  1570. for (i = 0; i < 8; i++) {
  1571. raddr = (unsigned int)isapnp_reserve_mem[i << 1];
  1572. rsize = (unsigned int)isapnp_reserve_mem[(i << 1) + 1];
  1573. if (addr >= raddr && addr < raddr + rsize)
  1574. return 1;
  1575. if (addr + size > raddr && addr + size < (raddr + rsize) - 1)
  1576. return 1;
  1577. // if (__check_region(&iomem_resource, addr, size))
  1578. if (check_region(addr, size))
  1579. return 1;
  1580. }
  1581. for (dev = isapnp_devices; dev; dev = dev->next) {
  1582. if (dev->active) {
  1583. for (tmp = 0; tmp < 4; tmp++) {
  1584. if (dev->resource[tmp].flags) {
  1585. raddr = dev->resource[tmp + 8].start;
  1586. rsize = (dev->resource[tmp + 8].end - raddr) + 1;
  1587. if (addr >= raddr && addr < raddr + rsize)
  1588. return 1;
  1589. if (addr + size > raddr && addr + size < (raddr + rsize) - 1)
  1590. return 1;
  1591. }
  1592. }
  1593. }
  1594. }
  1595. for (i = 0; i < 4; i++) {
  1596. unsigned int flags = cfg->request->resource[i + 8].flags;
  1597. if (i == idx)
  1598. continue;
  1599. if (!flags)
  1600. continue;
  1601. tmp = cfg->result.resource[i + 8].start;
  1602. if (flags & IORESOURCE_AUTO) { /* auto */
  1603. xmem = cfg->mem[i];
  1604. if (!xmem)
  1605. return 1;
  1606. if (cfg->result.resource[i + 8].flags & IORESOURCE_AUTO)
  1607. continue;
  1608. if (tmp + xmem->size >= addr && tmp <= addr + xmem->size)
  1609. return 1;
  1610. continue;
  1611. }
  1612. if (addr == tmp)
  1613. return 1;
  1614. xmem = isapnp_find_mem(cfg->request, i);
  1615. if (!xmem)
  1616. return 1;
  1617. if (tmp + xmem->size >= addr && tmp <= addr + xmem->size)
  1618. return 1;
  1619. }
  1620. return 0;
  1621. }
  1622. static int isapnp_valid_mem(struct isapnp_cfgtmp *cfg, int idx)
  1623. {
  1624. int err;
  1625. unsigned long *value1, *value2;
  1626. struct isapnp_mem *mem;
  1627. if (!cfg || idx < 0 || idx > 3)
  1628. return -EINVAL;
  1629. if (!(cfg->result.resource[idx + 8].flags & IORESOURCE_AUTO)) /* don't touch */
  1630. return 0;
  1631.       __again:
  1632.        mem = cfg->mem[idx];
  1633.        if (!mem)
  1634.        return -EINVAL;
  1635.        value1 = &cfg->result.resource[idx].start;
  1636.        value2 = &cfg->result.resource[idx].end;
  1637. if (cfg->result.resource[idx + 8].flags & IORESOURCE_AUTO) {
  1638. cfg->result.resource[idx + 8].flags &= ~IORESOURCE_AUTO;
  1639. *value1 = mem->min;
  1640. *value2 = mem->min + mem->size - 1;
  1641. if (!isapnp_check_mem(cfg, *value1, mem->size, idx))
  1642. return 0;
  1643. }
  1644. do {
  1645. *value1 += mem->align;
  1646. *value2 = *value1 + mem->size - 1;
  1647. if (*value1 >= 8 || !mem->align) {
  1648. if (mem->res && mem->res->alt) {
  1649. if ((err = isapnp_alternative_switch(cfg, mem->res, mem->res->alt))<0)
  1650. return err;
  1651. goto __again;
  1652. }
  1653. return -ENOENT;
  1654. }
  1655. } while (isapnp_check_mem(cfg, *value1, mem->size, idx));
  1656. return 0;
  1657. }
  1658. static int isapnp_check_valid(struct isapnp_cfgtmp *cfg)
  1659. {
  1660. int tmp;
  1661. for (tmp = 0; tmp < 8; tmp++)
  1662. if (cfg->result.resource[tmp].flags & IORESOURCE_AUTO)
  1663. return -EAGAIN;
  1664. for (tmp = 0; tmp < 2; tmp++)
  1665. if (cfg->result.irq_resource[tmp].flags & IORESOURCE_AUTO)
  1666. return -EAGAIN;
  1667. for (tmp = 0; tmp < 2; tmp++)
  1668. if (cfg->result.dma_resource[tmp].flags & IORESOURCE_AUTO)
  1669. return -EAGAIN;
  1670. for (tmp = 0; tmp < 4; tmp++)
  1671. if (cfg->result.resource[tmp + 8].flags & IORESOURCE_AUTO)
  1672. return -EAGAIN;
  1673. return 0;
  1674. }
  1675. static int isapnp_config_activate(struct pnp_dev *dev)
  1676. {
  1677. struct isapnp_cfgtmp cfg;
  1678. int tmp, fauto, err;
  1679. if (!dev)
  1680. return -EINVAL;
  1681. if (dev->active)
  1682. return -EBUSY;
  1683. memset(&cfg, 0, sizeof(cfg));
  1684. cfg.request = dev;
  1685. memcpy(&cfg.result, dev, sizeof(struct pnp_dev));
  1686. /* check if all values are set, otherwise try auto-configuration */
  1687. for (tmp = fauto = 0; !fauto && tmp < 8; tmp++) {
  1688. if (dev->resource[tmp].flags & IORESOURCE_AUTO)
  1689. fauto++;
  1690. }
  1691. for (tmp = 0; !fauto && tmp < 2; tmp++) {
  1692. if (dev->irq_resource[tmp].flags & IORESOURCE_AUTO)
  1693. fauto++;
  1694. }
  1695. for (tmp = 0; !fauto && tmp < 2; tmp++) {
  1696. if (dev->dma_resource[tmp].flags & IORESOURCE_AUTO)
  1697. fauto++;
  1698. }
  1699. for (tmp = 0; !fauto && tmp < 4; tmp++) {
  1700. if (dev->resource[tmp + 8].flags & IORESOURCE_AUTO)
  1701. fauto++;
  1702. }
  1703. if (!fauto)
  1704. goto __skip_auto;
  1705. /* set variables to initial values */
  1706. if ((err = isapnp_alternative_switch(&cfg, NULL, NULL))<0)
  1707. return err;
  1708. /* find first valid configuration */
  1709. fauto = 0;
  1710. do {
  1711. for (tmp = 0; tmp < 8 && cfg.result.resource[tmp].flags; tmp++)
  1712. if ((err = isapnp_valid_port(&cfg, tmp))<0)
  1713. return err;
  1714. for (tmp = 0; tmp < 2 && cfg.result.irq_resource[tmp].flags; tmp++)
  1715. if ((err = isapnp_valid_irq(&cfg, tmp))<0)
  1716. return err;
  1717. for (tmp = 0; tmp < 2 && cfg.result.dma_resource[tmp].flags; tmp++)
  1718. if ((err = isapnp_valid_dma(&cfg, tmp))<0)
  1719. return err;
  1720. for (tmp = 0; tmp < 4 && cfg.result.resource[tmp + 8].flags; tmp++)
  1721. if ((err = isapnp_valid_mem(&cfg, tmp))<0)
  1722. return err;
  1723. } while (isapnp_check_valid(&cfg)<0 && fauto++ < 20);
  1724. if (fauto >= 20)
  1725. return -EAGAIN;
  1726.       __skip_auto:
  1727.        /* we have valid configuration, try configure hardware */
  1728.        isapnp_cfg_begin(dev->bus->number, dev->devfn);
  1729. dev->active = 1;
  1730. dev->irq_resource[0] = cfg.result.irq_resource[0];
  1731. dev->irq_resource[1] = cfg.result.irq_resource[1];
  1732. dev->dma_resource[0] = cfg.result.dma_resource[0];
  1733. dev->dma_resource[1] = cfg.result.dma_resource[1];
  1734. for (tmp = 0; tmp < 12; tmp++) {
  1735. dev->resource[tmp] = cfg.result.resource[tmp];
  1736. }
  1737. for (tmp = 0; tmp < 8 && dev->resource[tmp].flags; tmp++)
  1738. isapnp_write_word(ISAPNP_CFG_PORT+(tmp<<1), dev->resource[tmp].start);
  1739. for (tmp = 0; tmp < 2 && dev->irq_resource[tmp].flags; tmp++) {
  1740. int irq = dev->irq_resource[tmp].start;
  1741. if (irq == 2)
  1742. irq = 9;
  1743. isapnp_write_byte(ISAPNP_CFG_IRQ+(tmp<<1), irq);
  1744. }
  1745. for (tmp = 0; tmp < 2 && dev->dma_resource[tmp].flags; tmp++)
  1746. isapnp_write_byte(ISAPNP_CFG_DMA+tmp, dev->dma_resource[tmp].start);
  1747. for (tmp = 0; tmp < 4 && dev->resource[tmp+8].flags; tmp++)
  1748. isapnp_write_word(ISAPNP_CFG_MEM+(tmp<<2), (dev->resource[tmp + 8].start >> 8) & 0xffff);
  1749. isapnp_activate(dev->devfn);
  1750. isapnp_cfg_end();
  1751. return 0;
  1752. }
  1753. static int isapnp_config_deactivate(struct pnp_dev *dev)
  1754. {
  1755. if (!dev || !dev->active)
  1756. return -EINVAL;
  1757.        isapnp_cfg_begin(dev->bus->number, dev->devfn);
  1758. isapnp_deactivate(dev->devfn);
  1759. dev->active = 0;
  1760. isapnp_cfg_end();
  1761. return 0;
  1762. }
  1763. void isapnp_resource_change(struct resource *resource,
  1764.     unsigned long start,
  1765.     unsigned long size)
  1766. {
  1767. if (resource == NULL)
  1768. return;
  1769. resource->flags &= ~IORESOURCE_AUTO;
  1770. resource->start = start;
  1771. resource->end = start + size - 1;
  1772. }
  1773. /*
  1774.  *  Inititialization.
  1775.  */
  1776. #ifdef MODULE
  1777. static void isapnp_free_port(struct isapnp_port *port)
  1778. {
  1779. struct isapnp_port *next;
  1780. while (port) {
  1781. next = port->next;
  1782. kfree(port);
  1783. port = next;
  1784. }
  1785. }
  1786. static void isapnp_free_irq(struct isapnp_irq *irq)
  1787. {
  1788. struct isapnp_irq *next;
  1789. while (irq) {
  1790. next = irq->next;
  1791. kfree(irq);
  1792. irq = next;
  1793. }
  1794. }
  1795. static void isapnp_free_dma(struct isapnp_dma *dma)
  1796. {
  1797. struct isapnp_dma *next;
  1798. while (dma) {
  1799. next = dma->next;
  1800. kfree(dma);
  1801. dma = next;
  1802. }
  1803. }
  1804. static void isapnp_free_mem(struct isapnp_mem *mem)
  1805. {
  1806. struct isapnp_mem *next;
  1807. while (mem) {
  1808. next = mem->next;
  1809. kfree(mem);
  1810. mem = next;
  1811. }
  1812. }
  1813. static void isapnp_free_mem32(struct isapnp_mem32 *mem32)
  1814. {
  1815. struct isapnp_mem32 *next;
  1816. while (mem32) {
  1817. next = mem32->next;
  1818. kfree(mem32);
  1819. mem32 = next;
  1820. }
  1821. }
  1822. static void isapnp_free_resources(struct isapnp_resources *resources, int alt)
  1823. {
  1824. struct isapnp_resources *next;
  1825. while (resources) {
  1826. next = alt ? resources->alt : resources->next;
  1827. isapnp_free_port(resources->port);
  1828. isapnp_free_irq(resources->irq);
  1829. isapnp_free_dma(resources->dma);
  1830. isapnp_free_mem(resources->mem);
  1831. isapnp_free_mem32(resources->mem32);
  1832. if (!alt && resources->alt)
  1833. isapnp_free_resources(resources->alt, 1);
  1834. kfree(resources);
  1835. resources = next;
  1836. }
  1837. }
  1838. static void isapnp_free_device(struct pnp_dev *dev)
  1839. {
  1840. struct pnp_dev *next;
  1841. while (dev) {
  1842. next = dev->sibling;
  1843. isapnp_free_resources((struct isapnp_resources *)dev->sysdata, 0);
  1844. kfree(dev);
  1845. dev = next;
  1846. }
  1847. }
  1848. #endif /* MODULE */
  1849. static void isapnp_free_all_resources(void)
  1850. {
  1851. #ifdef MODULE
  1852. struct pnp_bus *card, *cardnext;
  1853. #endif
  1854. #ifdef ISAPNP_REGION_OK
  1855. // release_resource(pidxr_res);
  1856.         release_region(_PIDXR, 1);
  1857. #endif
  1858. // release_resource(pnpwrp_res);
  1859.         release_region(_PNPWRP, 1);
  1860. if (isapnp_rdp >= 0x203 && isapnp_rdp <= 0x3ff)
  1861. // release_resource(isapnp_rdp_res);
  1862. release_region(isapnp_rdp, 1);
  1863. #ifdef MODULE
  1864. for (card = isapnp_cards; card; card = cardnext) {
  1865. cardnext = card->next;
  1866. isapnp_free_device(card->devices);
  1867. kfree(card);
  1868. }
  1869. #ifdef CONFIG_PROC_FS
  1870. isapnp_proc_done();
  1871. #endif
  1872. #endif
  1873. }
  1874. static int __init isapnp_do_reserve_irq(int irq)
  1875. {
  1876. int i;
  1877. if (irq < 0 || irq > 15)
  1878. return -EINVAL;
  1879. for (i = 0; i < 16; i++) {
  1880. if (isapnp_reserve_irq[i] == irq)
  1881. return 0;
  1882. }
  1883. for (i = 0; i < 16; i++) {
  1884. if (isapnp_reserve_irq[i] < 0) {
  1885. isapnp_reserve_irq[i] = irq;
  1886. #ifdef ISAPNP_DEBUG
  1887. printk("IRQ %i is reserved now.n", irq);
  1888. #endif
  1889. return 0;
  1890. }
  1891. }
  1892. return -ENOMEM;
  1893. }
  1894. #ifdef CONFIG_PCI
  1895. struct pnp_dev *
  1896. pnp_find_slot(unsigned int bus, unsigned int devfn)
  1897. {
  1898.         struct pnp_dev *dev;
  1899.         for(dev=isapnp_devices; dev; dev=dev->next)
  1900.                 if (dev->bus->number == bus && dev->devfn == devfn)
  1901.                         break;
  1902.         return dev;
  1903. }
  1904. static void __init isapnp_pci_init(void)
  1905. {
  1906. int devfn;
  1907. struct pnp_dev *dev;
  1908. for (devfn = 0; devfn < 255; devfn++) {
  1909. dev = pnp_find_slot(0, devfn);
  1910. if (dev != NULL)
  1911. break;
  1912. }
  1913. if (dev == NULL)
  1914. return;
  1915. while (dev) {
  1916. #ifdef ISAPNP_DEBUG
  1917. printk("PCI: reserved IRQ: %in", dev->irq);
  1918. #endif
  1919. if (dev->irq > 0)
  1920. isapnp_do_reserve_irq(dev->irq);
  1921. dev = dev->next;
  1922. }
  1923. }
  1924. #endif /* CONFIG_PCI */
  1925. EXPORT_SYMBOL(isapnp_present);
  1926. EXPORT_SYMBOL(isapnp_cfg_begin);
  1927. EXPORT_SYMBOL(isapnp_cfg_end);
  1928. EXPORT_SYMBOL(isapnp_read_byte);
  1929. EXPORT_SYMBOL(isapnp_read_word);
  1930. EXPORT_SYMBOL(isapnp_read_dword);
  1931. EXPORT_SYMBOL(isapnp_write_byte);
  1932. EXPORT_SYMBOL(isapnp_write_word);
  1933. EXPORT_SYMBOL(isapnp_write_dword);
  1934. EXPORT_SYMBOL(isapnp_wake);
  1935. EXPORT_SYMBOL(isapnp_device);
  1936. EXPORT_SYMBOL(isapnp_activate);
  1937. EXPORT_SYMBOL(isapnp_deactivate);
  1938. EXPORT_SYMBOL(isapnp_find_card);
  1939. EXPORT_SYMBOL(isapnp_find_dev);
  1940. EXPORT_SYMBOL(isapnp_resource_change);
  1941. int __init isapnp_init(void)
  1942. {
  1943. int cards;
  1944. struct pnp_bus *card;
  1945. struct pnp_dev *dev;
  1946. if (isapnp_disable) {
  1947. isapnp_detected = 0;
  1948. printk("isapnp: ISA Plug & Play support disabledn");
  1949. return 0;
  1950. }
  1951. #ifdef ISAPNP_REGION_OK
  1952. request_region(_PIDXR, 1, "isapnp index");
  1953. // pidxr_res=request_region(_PIDXR, 1, "isapnp index");
  1954. // if(!pidxr_res) {
  1955. // printk("isapnp: Index Register 0x%x already usedn", _PIDXR);
  1956. // return -EBUSY;
  1957. // }
  1958. #endif
  1959. request_region(_PNPWRP, 1, "isapnp write");
  1960. // pnpwrp_res=request_region(_PNPWRP, 1, "isapnp write");
  1961. // if(!pnpwrp_res) {
  1962. // printk("isapnp: Write Data Register 0x%x already usedn", _PNPWRP);
  1963. // return -EBUSY;
  1964. // }
  1965. /*
  1966.  * Print a message. The existing ISAPnP code is hanging machines
  1967.  * so let the user know where.
  1968.  */
  1969.  
  1970. printk("isapnp: Scanning for Pnp cards...n");
  1971. if (isapnp_rdp >= 0x203 && isapnp_rdp <= 0x3ff) {
  1972. isapnp_rdp |= 3;
  1973. request_region(isapnp_rdp, 1, "isapnp read");
  1974. // isapnp_rdp_res=request_region(isapnp_rdp, 1, "isapnp read");
  1975. // if(!isapnp_rdp_res) {
  1976. // printk("isapnp: Read Data Register 0x%x already usedn", isapnp_rdp);
  1977. // return -EBUSY;
  1978. // }
  1979. isapnp_set_rdp();
  1980. }
  1981. isapnp_detected = 1;
  1982. if (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff) {
  1983. cards = isapnp_isolate();
  1984. if (cards < 0 || 
  1985.     (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff)) {
  1986. isapnp_free_all_resources();
  1987. isapnp_detected = 0;
  1988. printk("isapnp: No Plug & Play device foundn");
  1989. return 0;
  1990. }
  1991. request_region(isapnp_rdp, 1, "isapnp read");
  1992. // isapnp_rdp_res=request_region(isapnp_rdp, 1, "isapnp read");
  1993. }
  1994. isapnp_build_device_list();
  1995. cards = 0;
  1996. for (card = isapnp_cards; card; card = card->next)
  1997. cards++;
  1998. if (isapnp_verbose) {
  1999. for (card = isapnp_cards; card; card = card->next) {
  2000. printk( "isapnp: Card '%s'n", card->name[0]?card->name:"Unknown");
  2001. if (isapnp_verbose < 2)
  2002. continue;
  2003. for (dev = card->devices; dev; dev = dev->next)
  2004. printk("isapnp:   Device '%s'n", dev->name[0]?card->name:"Unknown");
  2005. }
  2006. }
  2007. if (cards) {
  2008. printk("isapnp: %i Plug & Play card%s detected totaln", cards, cards>1?"s":"");
  2009. } else {
  2010. printk("isapnp: No Plug & Play card foundn");
  2011. }
  2012. #ifdef CONFIG_PCI
  2013. if (!isapnp_skip_pci_scan)
  2014. isapnp_pci_init();
  2015. #endif
  2016. #ifdef CONFIG_PROC_FS
  2017. isapnp_proc_init();
  2018. #endif
  2019. return 0;
  2020. }
  2021. #ifdef MODULE
  2022. int init_module(void)
  2023. {
  2024. return isapnp_init();
  2025. }
  2026. void cleanup_module(void)
  2027. {
  2028. if (isapnp_detected)
  2029. isapnp_free_all_resources();
  2030. }
  2031. #endif