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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * iSeries_dma.h
  3.  * Copyright (C) 2001  Mike Corrigan IBM Corporation
  4.  * 
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  * 
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  18.  */
  19. #ifndef _ISERIES_DMA_H
  20. #define _ISERIES_DMA_H
  21. #include <asm/types.h>
  22. #ifndef __LINUX_SPINLOCK_H
  23. #include <linux/spinlock.h>
  24. #endif
  25. // NUM_TCE_LEVELS defines the largest contiguous block
  26. // of dma (tce) space we can get.  NUM_TCE_LEVELS = 10 
  27. // allows up to 2**9 pages (512 * 4096) = 2 MB
  28. #define NUM_TCE_LEVELS 10
  29. #define NO_TCE ((dma_addr_t)-1)
  30. // Tces come in two formats, one for the virtual bus and a different
  31. // format for PCI
  32. #define TCE_VB  0
  33. #define TCE_PCI 1
  34. union Tce {
  35.     u64 wholeTce;
  36. struct {
  37. u64 cacheBits :6; /* Cache hash bits - not used */
  38. u64 rsvd :6;
  39. u64 rpn :40; /* Absolute page number */
  40. u64 valid :1; /* Tce is valid (vb only) */
  41. u64 allIo :1; /* Tce is valid for all lps (vb only) */
  42. u64 lpIndex :8; /* LpIndex for user of TCE (vb only) */
  43. u64 pciWrite :1; /* Write allowed (pci only) */
  44. u64 readWrite :1; /* Read allowed (pci), Write allowed
  45.    (vb) */
  46. } tceBits;
  47. };
  48. struct Bitmap {
  49. unsigned long numBits;
  50. unsigned long numBytes;
  51. unsigned char * map;
  52. };
  53. struct MultiLevelBitmap {
  54. unsigned long  maxLevel;
  55. struct Bitmap  level[NUM_TCE_LEVELS];
  56. };
  57. struct TceTable {
  58. u64 busNumber;
  59. u64 size;
  60. u64 startOffset;
  61. u64 index;
  62. spinlock_t lock;
  63. struct MultiLevelBitmap mlbm;
  64. };
  65. struct HvTceTableManagerCB {
  66. u64 busNumber; /* Bus number for this tce table */
  67. u64 start; /* Will be NULL for secondary */
  68. u64 totalSize; /* Size (in pages) of whole table */
  69. u64 startOffset; /* Index into real tce table of the
  70.    start of our section */
  71. u64 size; /* Size (in pages) of our section */
  72. u64 index; /* Index of this tce table (token?) */
  73. u16 maxTceTableIndex; /* Max number of tables for partition */
  74. u8 virtualBusFlag; /* Flag to indicate virtual bus */
  75. u8 rsvd[5];
  76. };
  77. extern struct TceTable virtBusTceTable; /* Tce table for virtual bus */
  78. extern struct TceTable * build_tce_table( struct HvTceTableManagerCB *,
  79.   struct TceTable *);
  80. extern void              create_virtual_bus_tce_table( void );
  81. extern void  create_pci_bus_tce_table( unsigned busNumber );
  82. #endif // _ISERIES_DMA_H