ioport.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:20k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: ioport.c,v 1.45 2001/10/30 04:54:21 davem Exp $
  2.  * ioport.c:  Simple io mapping allocator.
  3.  *
  4.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  * Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
  6.  *
  7.  * 1996: sparc_free_io, 1999: ioremap()/iounmap() by Pete Zaitcev.
  8.  *
  9.  * 2000/01/29
  10.  * <rth> zait: as long as pci_alloc_consistent produces something addressable, 
  11.  * things are ok.
  12.  * <zaitcev> rth: no, it is relevant, because get_free_pages returns you a
  13.  * pointer into the big page mapping
  14.  * <rth> zait: so what?
  15.  * <rth> zait: remap_it_my_way(virt_to_phys(get_free_page()))
  16.  * <zaitcev> Hmm
  17.  * <zaitcev> Suppose I did this remap_it_my_way(virt_to_phys(get_free_page())).
  18.  * So far so good.
  19.  * <zaitcev> Now, driver calls pci_free_consistent(with result of
  20.  * remap_it_my_way()).
  21.  * <zaitcev> How do you find the address to pass to free_pages()?
  22.  * <rth> zait: walk the page tables?  It's only two or three level after all.
  23.  * <rth> zait: you have to walk them anyway to remove the mapping.
  24.  * <zaitcev> Hmm
  25.  * <zaitcev> Sounds reasonable
  26.  */
  27. #include <linux/config.h>
  28. #include <linux/sched.h>
  29. #include <linux/kernel.h>
  30. #include <linux/errno.h>
  31. #include <linux/types.h>
  32. #include <linux/ioport.h>
  33. #include <linux/mm.h>
  34. #include <linux/slab.h>
  35. #include <linux/pci.h> /* struct pci_dev */
  36. #include <linux/proc_fs.h>
  37. #include <asm/io.h>
  38. #include <asm/vaddrs.h>
  39. #include <asm/oplib.h>
  40. #include <asm/page.h>
  41. #include <asm/pgalloc.h>
  42. #include <asm/pgtable.h>
  43. #define mmu_inval_dma_area(p, l) /* Anton pulled it out for 2.4.0-xx */
  44. struct resource *_sparc_find_resource(struct resource *r, unsigned long);
  45. static void *_sparc_ioremap(struct resource *res, u32 bus, u32 pa, int sz);
  46. static void *_sparc_alloc_io(unsigned int busno, unsigned long phys,
  47.     unsigned long size, char *name);
  48. static void _sparc_free_io(struct resource *res);
  49. /* This points to the next to use virtual memory for DVMA mappings */
  50. static struct resource _sparc_dvma = {
  51. "sparc_dvma", DVMA_VADDR, DVMA_END - 1
  52. };
  53. /* This points to the start of I/O mappings, cluable from outside. */
  54. /*ext*/ struct resource sparc_iomap = {
  55. "sparc_iomap", IOBASE_VADDR, IOBASE_END - 1
  56. };
  57. /*
  58.  * BTFIXUP would do as well but it seems overkill for the case.
  59.  */
  60. static void (*_sparc_mapioaddr)(unsigned long pa, unsigned long va,
  61.     int bus, int ro);
  62. static void (*_sparc_unmapioaddr)(unsigned long va);
  63. /*
  64.  * Our mini-allocator...
  65.  * Boy this is gross! We need it because we must map I/O for
  66.  * timers and interrupt controller before the kmalloc is available.
  67.  */
  68. #define XNMLN  15
  69. #define XNRES  10 /* SS-10 uses 8 */
  70. struct xresource {
  71. struct resource xres; /* Must be first */
  72. int xflag; /* 1 == used */
  73. char xname[XNMLN+1];
  74. };
  75. static struct xresource xresv[XNRES];
  76. static struct xresource *xres_alloc(void) {
  77. struct xresource *xrp;
  78. int n;
  79. xrp = xresv;
  80. for (n = 0; n < XNRES; n++) {
  81. if (xrp->xflag == 0) {
  82. xrp->xflag = 1;
  83. return xrp;
  84. }
  85. xrp++;
  86. }
  87. return NULL;
  88. }
  89. static void xres_free(struct xresource *xrp) {
  90. xrp->xflag = 0;
  91. }
  92. /*
  93.  * These are typically used in PCI drivers
  94.  * which are trying to be cross-platform.
  95.  *
  96.  * Bus type is always zero on IIep.
  97.  */
  98. void *ioremap(unsigned long offset, unsigned long size)
  99. {
  100. char name[14];
  101. sprintf(name, "phys_%08x", (u32)offset);
  102. return _sparc_alloc_io(0, offset, size, name);
  103. }
  104. /*
  105.  * Comlimentary to ioremap().
  106.  */
  107. void iounmap(void *virtual)
  108. {
  109. unsigned long vaddr = (unsigned long) virtual & PAGE_MASK;
  110. struct resource *res;
  111. if ((res = _sparc_find_resource(&sparc_iomap, vaddr)) == NULL) {
  112. printk("free_io/iounmap: cannot free %lxn", vaddr);
  113. return;
  114. }
  115. _sparc_free_io(res);
  116. if ((char *)res >= (char*)xresv && (char *)res < (char *)&xresv[XNRES]) {
  117. xres_free((struct xresource *)res);
  118. } else {
  119. kfree(res);
  120. }
  121. }
  122. /*
  123.  */
  124. unsigned long sbus_ioremap(struct resource *phyres, unsigned long offset,
  125.     unsigned long size, char *name)
  126. {
  127. return (unsigned long) _sparc_alloc_io(phyres->flags & 0xF,
  128.     phyres->start + offset, size, name);
  129. }
  130. /*
  131.  */
  132. void sbus_iounmap(unsigned long addr, unsigned long size)
  133. {
  134. iounmap((void *)addr);
  135. }
  136. /*
  137.  * Meat of mapping
  138.  */
  139. static void *_sparc_alloc_io(unsigned int busno, unsigned long phys,
  140.     unsigned long size, char *name)
  141. {
  142. static int printed_full;
  143. struct xresource *xres;
  144. struct resource *res;
  145. char *tack;
  146. int tlen;
  147. void *va; /* P3 diag */
  148. if (name == NULL) name = "???";
  149. if ((xres = xres_alloc()) != 0) {
  150. tack = xres->xname;
  151. res = &xres->xres;
  152. } else {
  153. if (!printed_full) {
  154. printk("ioremap: done with statics, switching to mallocn");
  155. printed_full = 1;
  156. }
  157. tlen = strlen(name);
  158. tack = kmalloc(sizeof (struct resource) + tlen + 1, GFP_KERNEL);
  159. if (tack == NULL) return NULL;
  160. memset(tack, 0, sizeof(struct resource));
  161. res = (struct resource *) tack;
  162. tack += sizeof (struct resource);
  163. }
  164. strncpy(tack, name, XNMLN);
  165. tack[XNMLN] = 0;
  166. res->name = tack;
  167. va = _sparc_ioremap(res, busno, phys, size);
  168. /* printk("ioremap(0x%x:%08lx[0x%lx])=%pn", busno, phys, size, va); */ /* P3 diag */
  169. return va;
  170. }
  171. /*
  172.  */
  173. static void *
  174. _sparc_ioremap(struct resource *res, u32 bus, u32 pa, int sz)
  175. {
  176. unsigned long offset = ((unsigned long) pa) & (~PAGE_MASK);
  177. unsigned long va;
  178. unsigned int psz;
  179. if (allocate_resource(&sparc_iomap, res,
  180.     (offset + sz + PAGE_SIZE-1) & PAGE_MASK,
  181.     sparc_iomap.start, sparc_iomap.end, PAGE_SIZE, NULL, NULL) != 0) {
  182. /* Usually we cannot see printks in this case. */
  183. prom_printf("alloc_io_res(%s): cannot occupyn",
  184.     (res->name != NULL)? res->name: "???");
  185. prom_halt();
  186. }
  187. va = res->start;
  188. pa &= PAGE_MASK;
  189. for (psz = res->end - res->start + 1; psz != 0; psz -= PAGE_SIZE) {
  190. (*_sparc_mapioaddr)(pa, va, bus, 0);
  191. va += PAGE_SIZE;
  192. pa += PAGE_SIZE;
  193. }
  194. /*
  195.  * XXX Playing with implementation details here.
  196.  * On sparc64 Ebus has resources with precise boundaries.
  197.  * We share drivers with sparc64. Too clever drivers use
  198.  * start of a resource instead of a base address.
  199.  *
  200.  * XXX-2 This may be not valid anymore, clean when
  201.  * interface to sbus_ioremap() is resolved.
  202.  */
  203. res->start += offset;
  204. res->end = res->start + sz - 1; /* not strictly necessary.. */
  205. return (void *) res->start;
  206. }
  207. /*
  208.  * Comlimentary to _sparc_ioremap().
  209.  */
  210. static void _sparc_free_io(struct resource *res)
  211. {
  212. unsigned long plen;
  213. plen = res->end - res->start + 1;
  214. plen = (plen + PAGE_SIZE-1) & PAGE_MASK;
  215. while (plen != 0) {
  216. plen -= PAGE_SIZE;
  217. (*_sparc_unmapioaddr)(res->start + plen);
  218. }
  219. release_resource(res);
  220. }
  221. #ifdef CONFIG_SBUS
  222. void sbus_set_sbus64(struct sbus_dev *sdev, int x) {
  223. printk("sbus_set_sbus64: unsupportedn");
  224. }
  225. /*
  226.  * Allocate a chunk of memory suitable for DMA.
  227.  * Typically devices use them for control blocks.
  228.  * CPU may access them without any explicit flushing.
  229.  *
  230.  * XXX Some clever people know that sdev is not used and supply NULL. Watch.
  231.  */
  232. void *sbus_alloc_consistent(struct sbus_dev *sdev, long len, u32 *dma_addrp)
  233. {
  234. unsigned long len_total = (len + PAGE_SIZE-1) & PAGE_MASK;
  235. unsigned long va;
  236. struct resource *res;
  237. int order;
  238. /* XXX why are some lenghts signed, others unsigned? */
  239. if (len <= 0) {
  240. return NULL;
  241. }
  242. /* XXX So what is maxphys for us and how do drivers know it? */
  243. if (len > 256*1024) { /* __get_free_pages() limit */
  244. return NULL;
  245. }
  246. order = get_order(len_total);
  247. va = __get_free_pages(GFP_KERNEL, order);
  248. if (va == 0) {
  249. /*
  250.  * printk here may be flooding... Consider removal XXX.
  251.  */
  252. printk("sbus_alloc_consistent: no %ld pagesn", len_total>>PAGE_SHIFT);
  253. return NULL;
  254. }
  255. if ((res = kmalloc(sizeof(struct resource), GFP_KERNEL)) == NULL) {
  256. free_pages(va, order);
  257. printk("sbus_alloc_consistent: no coren");
  258. return NULL;
  259. }
  260. memset((char*)res, 0, sizeof(struct resource));
  261. if (allocate_resource(&_sparc_dvma, res, len_total,
  262.     _sparc_dvma.start, _sparc_dvma.end, PAGE_SIZE, NULL, NULL) != 0) {
  263. printk("sbus_alloc_consistent: cannot occupy 0x%lx", len_total);
  264. free_pages(va, order);
  265. kfree(res);
  266. return NULL;
  267. }
  268. mmu_map_dma_area(va, res->start, len_total);
  269. *dma_addrp = res->start;
  270. return (void *)res->start;
  271. }
  272. void sbus_free_consistent(struct sbus_dev *sdev, long n, void *p, u32 ba)
  273. {
  274. struct resource *res;
  275. unsigned long pgp;
  276. if ((res = _sparc_find_resource(&_sparc_dvma,
  277.     (unsigned long)p)) == NULL) {
  278. printk("sbus_free_consistent: cannot free %pn", p);
  279. return;
  280. }
  281. if (((unsigned long)p & (PAGE_SIZE-1)) != 0) {
  282. printk("sbus_free_consistent: unaligned va %pn", p);
  283. return;
  284. }
  285. n = (n + PAGE_SIZE-1) & PAGE_MASK;
  286. if ((res->end-res->start)+1 != n) {
  287. printk("sbus_free_consistent: region 0x%lx asked 0x%lxn",
  288.     (long)((res->end-res->start)+1), n);
  289. return;
  290. }
  291. release_resource(res);
  292. kfree(res);
  293. /* mmu_inval_dma_area(va, n); */ /* it's consistent, isn't it */
  294. pgp = (unsigned long) phys_to_virt(mmu_translate_dvma(ba));
  295. mmu_unmap_dma_area(ba, n);
  296. free_pages(pgp, get_order(n));
  297. }
  298. /*
  299.  * Map a chunk of memory so that devices can see it.
  300.  * CPU view of this memory may be inconsistent with
  301.  * a device view and explicit flushing is necessary.
  302.  */
  303. dma_addr_t sbus_map_single(struct sbus_dev *sdev, void *va, size_t len, int direction)
  304. {
  305. #if 0 /* This is the version that abuses consistent space */
  306. unsigned long len_total = (len + PAGE_SIZE-1) & PAGE_MASK;
  307. struct resource *res;
  308. /* XXX why are some lenghts signed, others unsigned? */
  309. if (len <= 0) {
  310. return 0;
  311. }
  312. /* XXX So what is maxphys for us and how do drivers know it? */
  313. if (len > 256*1024) { /* __get_free_pages() limit */
  314. return 0;
  315. }
  316. if ((res = kmalloc(sizeof(struct resource), GFP_KERNEL)) == NULL) {
  317. printk("sbus_map_single: no coren");
  318. return 0;
  319. }
  320. memset((char*)res, 0, sizeof(struct resource));
  321. res->name = va; /* XXX */
  322. if (allocate_resource(&_sparc_dvma, res, len_total,
  323.     _sparc_dvma.start, _sparc_dvma.end, PAGE_SIZE) != 0) {
  324. printk("sbus_map_single: cannot occupy 0x%lx", len);
  325. kfree(res);
  326. return 0;
  327. }
  328. mmu_map_dma_area(va, res->start, len_total);
  329. mmu_flush_dma_area((unsigned long)va, len_total); /* in all contexts? */
  330. return res->start;
  331. #endif
  332. #if 1 /* "trampoline" version */
  333. /* XXX why are some lenghts signed, others unsigned? */
  334. if (len <= 0) {
  335. return 0;
  336. }
  337. /* XXX So what is maxphys for us and how do drivers know it? */
  338. if (len > 256*1024) { /* __get_free_pages() limit */
  339. return 0;
  340. }
  341. return mmu_get_scsi_one(va, len, sdev->bus);
  342. #endif
  343. }
  344. void sbus_unmap_single(struct sbus_dev *sdev, dma_addr_t ba, size_t n, int direction)
  345. {
  346. #if 0 /* This is the version that abuses consistent space */
  347. struct resource *res;
  348. unsigned long va;
  349. if ((res = _sparc_find_resource(&_sparc_dvma, ba)) == NULL) {
  350. printk("sbus_unmap_single: cannot find %08xn", (unsigned)ba);
  351. return;
  352. }
  353. n = (n + PAGE_SIZE-1) & PAGE_MASK;
  354. if ((res->end-res->start)+1 != n) {
  355. printk("sbus_unmap_single: region 0x%lx asked 0x%lxn",
  356.     (long)((res->end-res->start)+1), n);
  357. return;
  358. }
  359. va = (unsigned long) res->name; /* XXX Ouch */
  360. mmu_inval_dma_area(va, n); /* in all contexts, mm's?... */
  361. mmu_unmap_dma_area(ba, n); /* iounit cache flush is here */
  362. release_resource(res);
  363. kfree(res);
  364. #endif
  365. #if 1 /* "trampoline" version */
  366. mmu_release_scsi_one(ba, n, sdev->bus);
  367. #endif
  368. }
  369. int sbus_map_sg(struct sbus_dev *sdev, struct scatterlist *sg, int n, int direction)
  370. {
  371. mmu_get_scsi_sgl(sg, n, sdev->bus);
  372. /*
  373.  * XXX sparc64 can return a partial length here. sun4c should do this
  374.  * but it currently panics if it can't fulfill the request - Anton
  375.  */
  376. return n;
  377. }
  378. void sbus_unmap_sg(struct sbus_dev *sdev, struct scatterlist *sg, int n, int direction)
  379. {
  380. mmu_release_scsi_sgl(sg, n, sdev->bus);
  381. }
  382. /*
  383.  */
  384. void sbus_dma_sync_single(struct sbus_dev *sdev, dma_addr_t ba, size_t size, int direction)
  385. {
  386. #if 0
  387. unsigned long va;
  388. struct resource *res;
  389. /* We do not need the resource, just print a message if invalid. */
  390. res = _sparc_find_resource(&_sparc_dvma, ba);
  391. if (res == NULL)
  392. panic("sbus_dma_sync_single: 0x%xn", ba);
  393. va = (unsigned long) phys_to_virt(mmu_translate_dvma(ba));
  394. /*
  395.  * XXX This bogosity will be fixed with the iommu rewrite coming soon
  396.  * to a kernel near you. - Anton
  397.  */
  398. /* mmu_inval_dma_area(va, (size + PAGE_SIZE-1) & PAGE_MASK); */
  399. #endif
  400. }
  401. void sbus_dma_sync_sg(struct sbus_dev *sdev, struct scatterlist *sg, int n, int direction)
  402. {
  403. printk("sbus_dma_sync_sg: not implemented yetn");
  404. }
  405. #endif /* CONFIG_SBUS */
  406. #ifdef CONFIG_PCI
  407. /* Allocate and map kernel buffer using consistent mode DMA for a device.
  408.  * hwdev should be valid struct pci_dev pointer for PCI devices.
  409.  */
  410. void *pci_alloc_consistent(struct pci_dev *pdev, size_t len, dma_addr_t *pba)
  411. {
  412. unsigned long len_total = (len + PAGE_SIZE-1) & PAGE_MASK;
  413. unsigned long va;
  414. struct resource *res;
  415. int order;
  416. if (len == 0) {
  417. return NULL;
  418. }
  419. if (len > 256*1024) { /* __get_free_pages() limit */
  420. return NULL;
  421. }
  422. order = get_order(len_total);
  423. va = __get_free_pages(GFP_KERNEL, order);
  424. if (va == 0) {
  425. printk("pci_alloc_consistent: no %ld pagesn", len_total>>PAGE_SHIFT);
  426. return NULL;
  427. }
  428. if ((res = kmalloc(sizeof(struct resource), GFP_KERNEL)) == NULL) {
  429. free_pages(va, order);
  430. printk("pci_alloc_consistent: no coren");
  431. return NULL;
  432. }
  433. memset((char*)res, 0, sizeof(struct resource));
  434. if (allocate_resource(&_sparc_dvma, res, len_total,
  435.     _sparc_dvma.start, _sparc_dvma.end, PAGE_SIZE, NULL, NULL) != 0) {
  436. printk("pci_alloc_consistent: cannot occupy 0x%lx", len_total);
  437. free_pages(va, order);
  438. kfree(res);
  439. return NULL;
  440. }
  441. mmu_inval_dma_area(va, len_total);
  442. #if 1
  443. /* P3 */ printk("pci_alloc_consistent: kva %lx uncva %lx phys %lx size %xn",
  444.   (long)va, (long)res->start, (long)virt_to_phys(va), len_total);
  445. #endif
  446. {
  447. unsigned long xva, xpa;
  448. xva = res->start;
  449. xpa = virt_to_phys(va);
  450. while (len_total != 0) {
  451. len_total -= PAGE_SIZE;
  452. (*_sparc_mapioaddr)(xpa, xva, 0, 0);
  453. xva += PAGE_SIZE;
  454. xpa += PAGE_SIZE;
  455. }
  456. }
  457. *pba = virt_to_bus(va);
  458. return (void *) res->start;
  459. }
  460. /* Free and unmap a consistent DMA buffer.
  461.  * cpu_addr is what was returned from pci_alloc_consistent,
  462.  * size must be the same as what as passed into pci_alloc_consistent,
  463.  * and likewise dma_addr must be the same as what *dma_addrp was set to.
  464.  *
  465.  * References to the memory and mappings assosciated with cpu_addr/dma_addr
  466.  * past this call are illegal.
  467.  */
  468. void pci_free_consistent(struct pci_dev *pdev, size_t n, void *p, dma_addr_t ba)
  469. {
  470. struct resource *res;
  471. unsigned long pgp;
  472. if ((res = _sparc_find_resource(&_sparc_dvma,
  473.     (unsigned long)p)) == NULL) {
  474. printk("pci_free_consistent: cannot free %pn", p);
  475. return;
  476. }
  477. if (((unsigned long)p & (PAGE_SIZE-1)) != 0) {
  478. printk("pci_free_consistent: unaligned va %pn", p);
  479. return;
  480. }
  481. n = (n + PAGE_SIZE-1) & PAGE_MASK;
  482. if ((res->end-res->start)+1 != n) {
  483. printk("pci_free_consistent: region 0x%lx asked 0x%lxn",
  484.     (long)((res->end-res->start)+1), (long)n);
  485. return;
  486. }
  487. pgp = (unsigned long) bus_to_virt(ba);
  488. mmu_inval_dma_area(pgp, n);
  489. {
  490. int x;
  491. for (x = 0; x < n; x += PAGE_SIZE) {
  492. (*_sparc_unmapioaddr)((unsigned long)p + n);
  493. }
  494. }
  495. release_resource(res);
  496. kfree(res);
  497. free_pages(pgp, get_order(n));
  498. }
  499. /* Map a single buffer of the indicated size for DMA in streaming mode.
  500.  * The 32-bit bus address to use is returned.
  501.  *
  502.  * Once the device is given the dma address, the device owns this memory
  503.  * until either pci_unmap_single or pci_dma_sync_single is performed.
  504.  */
  505. dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr, size_t size,
  506.     int direction)
  507. {
  508. if (direction == PCI_DMA_NONE)
  509. BUG();
  510. /* IIep is write-through, not flushing. */
  511. return virt_to_bus(ptr);
  512. }
  513. /* Unmap a single streaming mode DMA translation.  The dma_addr and size
  514.  * must match what was provided for in a previous pci_map_single call.  All
  515.  * other usages are undefined.
  516.  *
  517.  * After this call, reads by the cpu to the buffer are guarenteed to see
  518.  * whatever the device wrote there.
  519.  */
  520. void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t ba, size_t size,
  521.     int direction)
  522. {
  523. if (direction == PCI_DMA_NONE)
  524. BUG();
  525. if (direction != PCI_DMA_TODEVICE) {
  526. mmu_inval_dma_area((unsigned long)bus_to_virt(ba),
  527.     (size + PAGE_SIZE-1) & PAGE_MASK);
  528. }
  529. }
  530. /* Map a set of buffers described by scatterlist in streaming
  531.  * mode for DMA.  This is the scather-gather version of the
  532.  * above pci_map_single interface.  Here the scatter gather list
  533.  * elements are each tagged with the appropriate dma address
  534.  * and length.  They are obtained via sg_dma_{address,length}(SG).
  535.  *
  536.  * NOTE: An implementation may be able to use a smaller number of
  537.  *       DMA address/length pairs than there are SG table elements.
  538.  *       (for example via virtual mapping capabilities)
  539.  *       The routine returns the number of addr/length pairs actually
  540.  *       used, at most nents.
  541.  *
  542.  * Device ownership issues as mentioned above for pci_map_single are
  543.  * the same here.
  544.  */
  545. int pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents,
  546.     int direction)
  547. {
  548. int n;
  549. if (direction == PCI_DMA_NONE)
  550. BUG();
  551. /* IIep is write-through, not flushing. */
  552. for (n = 0; n < nents; n++) {
  553. sg->dvma_address = virt_to_bus(sg->address);
  554. sg->dvma_length = sg->length;
  555. sg++;
  556. }
  557. return nents;
  558. }
  559. /* Unmap a set of streaming mode DMA translations.
  560.  * Again, cpu read rules concerning calls here are the same as for
  561.  * pci_unmap_single() above.
  562.  */
  563. void pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents,
  564.     int direction)
  565. {
  566. int n;
  567. if (direction == PCI_DMA_NONE)
  568. BUG();
  569. if (direction != PCI_DMA_TODEVICE) {
  570. for (n = 0; n < nents; n++) {
  571. mmu_inval_dma_area((unsigned long)sg->address,
  572.     (sg->length + PAGE_SIZE-1) & PAGE_MASK);
  573. sg++;
  574. }
  575. }
  576. }
  577. /* Make physical memory consistent for a single
  578.  * streaming mode DMA translation before or after a transfer.
  579.  *
  580.  * If you perform a pci_map_single() but wish to interrogate the
  581.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  582.  * mapping, you must call this function before doing so.  At the
  583.  * next point you give the PCI dma address back to the card, the
  584.  * device again owns the buffer.
  585.  */
  586. void pci_dma_sync_single(struct pci_dev *hwdev, dma_addr_t ba, size_t size, int direction)
  587. {
  588. if (direction == PCI_DMA_NONE)
  589. BUG();
  590. if (direction != PCI_DMA_TODEVICE) {
  591. mmu_inval_dma_area((unsigned long)bus_to_virt(ba),
  592.     (size + PAGE_SIZE-1) & PAGE_MASK);
  593. }
  594. }
  595. /* Make physical memory consistent for a set of streaming
  596.  * mode DMA translations after a transfer.
  597.  *
  598.  * The same as pci_dma_sync_single but for a scatter-gather list,
  599.  * same rules and usage.
  600.  */
  601. void pci_dma_sync_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents, int direction)
  602. {
  603. int n;
  604. if (direction == PCI_DMA_NONE)
  605. BUG();
  606. if (direction != PCI_DMA_TODEVICE) {
  607. for (n = 0; n < nents; n++) {
  608. mmu_inval_dma_area((unsigned long)sg->address,
  609.     (sg->length + PAGE_SIZE-1) & PAGE_MASK);
  610. sg++;
  611. }
  612. }
  613. }
  614. #endif /* CONFIG_PCI */
  615. #ifdef CONFIG_PROC_FS
  616. static int
  617. _sparc_io_get_info(char *buf, char **start, off_t fpos, int length, int *eof,
  618.     void *data)
  619. {
  620. char *p = buf, *e = buf + length;
  621. struct resource *r;
  622. const char *nm;
  623. for (r = ((struct resource *)data)->child; r != NULL; r = r->sibling) {
  624. if (p + 32 >= e) /* Better than nothing */
  625. break;
  626. if ((nm = r->name) == 0) nm = "???";
  627. p += sprintf(p, "%08lx-%08lx: %sn", r->start, r->end, nm);
  628. }
  629. return p-buf;
  630. }
  631. #endif /* CONFIG_PROC_FS */
  632. /*
  633.  * This is a version of find_resource and it belongs to kernel/resource.c.
  634.  * Until we have agreement with Linus and Martin, it lingers here.
  635.  *
  636.  * XXX Too slow. Can have 8192 DVMA pages on sun4m in the worst case.
  637.  * This probably warrants some sort of hashing.
  638.  */
  639. struct resource *
  640. _sparc_find_resource(struct resource *root, unsigned long hit)
  641. {
  642.         struct resource *tmp;
  643. for (tmp = root->child; tmp != 0; tmp = tmp->sibling) {
  644. if (tmp->start <= hit && tmp->end >= hit)
  645. return tmp;
  646. }
  647. return NULL;
  648. }
  649. /*
  650.  * Necessary boot time initializations.
  651.  */
  652. void ioport_init(void)
  653. {
  654. extern void sun4c_mapioaddr(unsigned long, unsigned long, int, int);
  655. extern void srmmu_mapioaddr(unsigned long, unsigned long, int, int);
  656. extern void sun4c_unmapioaddr(unsigned long);
  657. extern void srmmu_unmapioaddr(unsigned long);
  658. switch(sparc_cpu_model) {
  659. case sun4c:
  660. case sun4:
  661. case sun4e:
  662. _sparc_mapioaddr = sun4c_mapioaddr;
  663. _sparc_unmapioaddr = sun4c_unmapioaddr;
  664. break;
  665. case sun4m:
  666. case sun4d:
  667. _sparc_mapioaddr = srmmu_mapioaddr;
  668. _sparc_unmapioaddr = srmmu_unmapioaddr;
  669. break;
  670. default:
  671. printk("ioport_init: cpu type %d is unknown.n",
  672.     sparc_cpu_model);
  673. halt();
  674. };
  675. }
  676. void register_proc_sparc_ioport(void)
  677. {
  678. #ifdef CONFIG_PROC_FS
  679. create_proc_read_entry("io_map",0,0,_sparc_io_get_info,&sparc_iomap);
  680. create_proc_read_entry("dvma_map",0,0,_sparc_io_get_info,&_sparc_dvma);
  681. #endif
  682. }