via-core.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * Copyright 1998-2009 VIA Technologies, Inc. All Rights Reserved.
  3. * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
  4. * Copyright 2009 Jonathan Corbet <corbet@lwn.net>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public
  8. * License as published by the Free Software Foundation;
  9. * either version 2, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even
  13. * the implied warranty of MERCHANTABILITY or FITNESS FOR
  14. * A PARTICULAR PURPOSE.See the GNU General Public License
  15. * for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc.,
  20. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. #ifndef __VIA_CORE_H__
  23. #define __VIA_CORE_H__
  24. #include <linux/spinlock.h>
  25. #include <linux/pci.h>
  26. /*
  27. * A description of each known serial I2C/GPIO port.
  28. */
  29. enum via_port_type {
  30. VIA_PORT_NONE = 0,
  31. VIA_PORT_I2C,
  32. VIA_PORT_GPIO,
  33. };
  34. enum via_port_mode {
  35. VIA_MODE_OFF = 0,
  36. VIA_MODE_I2C, /* Used as I2C port */
  37. VIA_MODE_GPIO, /* Two GPIO ports */
  38. };
  39. enum viafb_i2c_adap {
  40. VIA_PORT_26 = 0,
  41. VIA_PORT_31,
  42. VIA_PORT_25,
  43. VIA_PORT_2C,
  44. VIA_PORT_3D,
  45. };
  46. #define VIAFB_NUM_PORTS 5
  47. struct via_port_cfg {
  48. enum via_port_type type;
  49. enum via_port_mode mode;
  50. u16 io_port;
  51. u8 ioport_index;
  52. };
  53. /*
  54. * This is the global viafb "device" containing stuff needed by
  55. * all subdevs.
  56. */
  57. struct viafb_dev {
  58. struct pci_dev *pdev;
  59. int chip_type;
  60. struct via_port_cfg *port_cfg;
  61. /*
  62. * Spinlock for access to device registers. Not yet
  63. * globally used.
  64. */
  65. spinlock_t reg_lock;
  66. /*
  67. * The framebuffer MMIO region. Little, if anything, touches
  68. * this memory directly, and certainly nothing outside of the
  69. * framebuffer device itself. We *do* have to be able to allocate
  70. * chunks of this memory for other devices, though.
  71. */
  72. unsigned long fbmem_start;
  73. long fbmem_len;
  74. void __iomem *fbmem;
  75. #if defined(CONFIG_FB_VIA_CAMERA) || defined(CONFIG_FB_VIA_CAMERA_MODULE)
  76. long camera_fbmem_offset;
  77. long camera_fbmem_size;
  78. #endif
  79. /*
  80. * The MMIO region for device registers.
  81. */
  82. unsigned long engine_start;
  83. unsigned long engine_len;
  84. void __iomem *engine_mmio;
  85. };
  86. /*
  87. * Interrupt management.
  88. */
  89. void viafb_irq_enable(u32 mask);
  90. void viafb_irq_disable(u32 mask);
  91. /*
  92. * The global interrupt control register and its bits.
  93. */
  94. #define VDE_INTERRUPT 0x200 /* Video interrupt flags/masks */
  95. #define VDE_I_DVISENSE 0x00000001 /* DVI sense int status */
  96. #define VDE_I_VBLANK 0x00000002 /* Vertical blank status */
  97. #define VDE_I_MCCFI 0x00000004 /* MCE compl. frame int status */
  98. #define VDE_I_VSYNC 0x00000008 /* VGA VSYNC int status */
  99. #define VDE_I_DMA0DDONE 0x00000010 /* DMA 0 descr done */
  100. #define VDE_I_DMA0TDONE 0x00000020 /* DMA 0 transfer done */
  101. #define VDE_I_DMA1DDONE 0x00000040 /* DMA 1 descr done */
  102. #define VDE_I_DMA1TDONE 0x00000080 /* DMA 1 transfer done */
  103. #define VDE_I_C1AV 0x00000100 /* Cap Eng 1 act vid end */
  104. #define VDE_I_HQV0 0x00000200 /* First HQV engine */
  105. #define VDE_I_HQV1 0x00000400 /* Second HQV engine */
  106. #define VDE_I_HQV1EN 0x00000800 /* Second HQV engine enable */
  107. #define VDE_I_C0AV 0x00001000 /* Cap Eng 0 act vid end */
  108. #define VDE_I_C0VBI 0x00002000 /* Cap Eng 0 VBI end */
  109. #define VDE_I_C1VBI 0x00004000 /* Cap Eng 1 VBI end */
  110. #define VDE_I_VSYNC2 0x00008000 /* Sec. Disp. VSYNC */
  111. #define VDE_I_DVISNSEN 0x00010000 /* DVI sense enable */
  112. #define VDE_I_VSYNC2EN 0x00020000 /* Sec Disp VSYNC enable */
  113. #define VDE_I_MCCFIEN 0x00040000 /* MC comp frame int mask enable */
  114. #define VDE_I_VSYNCEN 0x00080000 /* VSYNC enable */
  115. #define VDE_I_DMA0DDEN 0x00100000 /* DMA 0 descr done enable */
  116. #define VDE_I_DMA0TDEN 0x00200000 /* DMA 0 trans done enable */
  117. #define VDE_I_DMA1DDEN 0x00400000 /* DMA 1 descr done enable */
  118. #define VDE_I_DMA1TDEN 0x00800000 /* DMA 1 trans done enable */
  119. #define VDE_I_C1AVEN 0x01000000 /* cap 1 act vid end enable */
  120. #define VDE_I_HQV0EN 0x02000000 /* First hqv engine enable */
  121. #define VDE_I_C1VBIEN 0x04000000 /* Cap 1 VBI end enable */
  122. #define VDE_I_LVDSSI 0x08000000 /* LVDS sense interrupt */
  123. #define VDE_I_C0AVEN 0x10000000 /* Cap 0 act vid end enable */
  124. #define VDE_I_C0VBIEN 0x20000000 /* Cap 0 VBI end enable */
  125. #define VDE_I_LVDSSIEN 0x40000000 /* LVDS Sense enable */
  126. #define VDE_I_ENABLE 0x80000000 /* Global interrupt enable */
  127. /*
  128. * DMA management.
  129. */
  130. int viafb_request_dma(void);
  131. void viafb_release_dma(void);
  132. /* void viafb_dma_copy_out(unsigned int offset, dma_addr_t paddr, int len); */
  133. int viafb_dma_copy_out_sg(unsigned int offset, struct scatterlist *sg, int nsg);
  134. /*
  135. * DMA Controller registers.
  136. */
  137. #define VDMA_MR0 0xe00 /* Mod reg 0 */
  138. #define VDMA_MR_CHAIN 0x01 /* Chaining mode */
  139. #define VDMA_MR_TDIE 0x02 /* Transfer done int enable */
  140. #define VDMA_CSR0 0xe04 /* Control/status */
  141. #define VDMA_C_ENABLE 0x01 /* DMA Enable */
  142. #define VDMA_C_START 0x02 /* Start a transfer */
  143. #define VDMA_C_ABORT 0x04 /* Abort a transfer */
  144. #define VDMA_C_DONE 0x08 /* Transfer is done */
  145. #define VDMA_MARL0 0xe20 /* Mem addr low */
  146. #define VDMA_MARH0 0xe24 /* Mem addr high */
  147. #define VDMA_DAR0 0xe28 /* Device address */
  148. #define VDMA_DQWCR0 0xe2c /* Count (16-byte) */
  149. #define VDMA_TMR0 0xe30 /* Tile mode reg */
  150. #define VDMA_DPRL0 0xe34 /* Not sure */
  151. #define VDMA_DPR_IN 0x08 /* Inbound transfer to FB */
  152. #define VDMA_DPRH0 0xe38
  153. #define VDMA_PMR0 (0xe00 + 0x134) /* Pitch mode */
  154. /*
  155. * Useful stuff that probably belongs somewhere global.
  156. */
  157. #define VGA_WIDTH 640
  158. #define VGA_HEIGHT 480
  159. #endif /* __VIA_CORE_H__ */