Linux Audio

Check our new training course

Loading...
v3.1
 
  1#ifndef _TDFX_H
  2#define _TDFX_H
  3
  4#include <linux/i2c.h>
  5#include <linux/i2c-algo-bit.h>
  6
  7/* membase0 register offsets */
  8#define STATUS		0x00
  9#define PCIINIT0	0x04
 10#define SIPMONITOR	0x08
 11#define LFBMEMORYCONFIG	0x0c
 12#define MISCINIT0	0x10
 13#define MISCINIT1	0x14
 14#define DRAMINIT0	0x18
 15#define DRAMINIT1	0x1c
 16#define AGPINIT		0x20
 17#define TMUGBEINIT	0x24
 18#define VGAINIT0	0x28
 19#define VGAINIT1	0x2c
 20#define DRAMCOMMAND	0x30
 21#define DRAMDATA	0x34
 22/* reserved	0x38 */
 23/* reserved	0x3c */
 24#define PLLCTRL0	0x40
 25#define PLLCTRL1	0x44
 26#define PLLCTRL2	0x48
 27#define DACMODE		0x4c
 28#define DACADDR		0x50
 29#define DACDATA		0x54
 30#define RGBMAXDELTA	0x58
 31#define VIDPROCCFG	0x5c
 32#define HWCURPATADDR	0x60
 33#define HWCURLOC	0x64
 34#define HWCURC0		0x68
 35#define HWCURC1		0x6c
 36#define VIDINFORMAT	0x70
 37#define VIDINSTATUS	0x74
 38#define VIDSERPARPORT	0x78
 39#define VIDINXDELTA	0x7c
 40#define VIDININITERR	0x80
 41#define VIDINYDELTA	0x84
 42#define VIDPIXBUFTHOLD	0x88
 43#define VIDCHRMIN	0x8c
 44#define VIDCHRMAX	0x90
 45#define VIDCURLIN	0x94
 46#define VIDSCREENSIZE	0x98
 47#define VIDOVRSTARTCRD	0x9c
 48#define VIDOVRENDCRD	0xa0
 49#define VIDOVRDUDX	0xa4
 50#define VIDOVRDUDXOFF	0xa8
 51#define VIDOVRDVDY	0xac
 52/* ... */
 53#define VIDOVRDVDYOFF	0xe0
 54#define VIDDESKSTART	0xe4
 55#define VIDDESKSTRIDE	0xe8
 56#define VIDINADDR0	0xec
 57#define VIDINADDR1	0xf0
 58#define VIDINADDR2	0xf4
 59#define VIDINSTRIDE	0xf8
 60#define VIDCUROVRSTART	0xfc
 61
 62#define INTCTRL		(0x00100000 + 0x04)
 63#define CLIP0MIN	(0x00100000 + 0x08)
 64#define CLIP0MAX	(0x00100000 + 0x0c)
 65#define DSTBASE		(0x00100000 + 0x10)
 66#define DSTFORMAT	(0x00100000 + 0x14)
 67#define SRCBASE		(0x00100000 + 0x34)
 68#define COMMANDEXTRA_2D	(0x00100000 + 0x38)
 69#define CLIP1MIN	(0x00100000 + 0x4c)
 70#define CLIP1MAX	(0x00100000 + 0x50)
 71#define SRCFORMAT	(0x00100000 + 0x54)
 72#define SRCSIZE		(0x00100000 + 0x58)
 73#define SRCXY		(0x00100000 + 0x5c)
 74#define COLORBACK	(0x00100000 + 0x60)
 75#define COLORFORE	(0x00100000 + 0x64)
 76#define DSTSIZE		(0x00100000 + 0x68)
 77#define DSTXY		(0x00100000 + 0x6c)
 78#define COMMAND_2D	(0x00100000 + 0x70)
 79#define LAUNCH_2D	(0x00100000 + 0x80)
 80
 81#define COMMAND_3D	(0x00200000 + 0x120)
 82
 83/* register bitfields (not all, only as needed) */
 84
 85/* COMMAND_2D reg. values */
 86#define TDFX_ROP_COPY		0xcc	/* src */
 87#define TDFX_ROP_INVERT		0x55	/* NOT dst */
 88#define TDFX_ROP_XOR		0x66	/* src XOR dst */
 89
 90#define AUTOINC_DSTX			BIT(10)
 91#define AUTOINC_DSTY			BIT(11)
 92#define COMMAND_2D_FILLRECT		0x05
 93#define COMMAND_2D_S2S_BITBLT		0x01	/* screen to screen */
 94#define COMMAND_2D_H2S_BITBLT		0x03	/* host to screen */
 95
 96#define COMMAND_3D_NOP			0x00
 97#define STATUS_RETRACE			BIT(6)
 98#define STATUS_BUSY			BIT(9)
 99#define MISCINIT1_CLUT_INV		BIT(0)
100#define MISCINIT1_2DBLOCK_DIS		BIT(15)
101#define DRAMINIT0_SGRAM_NUM		BIT(26)
102#define DRAMINIT0_SGRAM_TYPE		BIT(27)
103#define DRAMINIT0_SGRAM_TYPE_MASK       (BIT(27) | BIT(28) | BIT(29))
104#define DRAMINIT0_SGRAM_TYPE_SHIFT      27
105#define DRAMINIT1_MEM_SDRAM		BIT(30)
106#define VGAINIT0_VGA_DISABLE		BIT(0)
107#define VGAINIT0_EXT_TIMING		BIT(1)
108#define VGAINIT0_8BIT_DAC		BIT(2)
109#define VGAINIT0_EXT_ENABLE		BIT(6)
110#define VGAINIT0_WAKEUP_3C3		BIT(8)
111#define VGAINIT0_LEGACY_DISABLE		BIT(9)
112#define VGAINIT0_ALT_READBACK		BIT(10)
113#define VGAINIT0_FAST_BLINK		BIT(11)
114#define VGAINIT0_EXTSHIFTOUT		BIT(12)
115#define VGAINIT0_DECODE_3C6		BIT(13)
116#define VGAINIT0_SGRAM_HBLANK_DISABLE	BIT(22)
117#define VGAINIT1_MASK			0x1fffff
118#define VIDCFG_VIDPROC_ENABLE		BIT(0)
119#define VIDCFG_CURS_X11			BIT(1)
120#define VIDCFG_INTERLACE		BIT(3)
121#define VIDCFG_HALF_MODE		BIT(4)
122#define VIDCFG_DESK_ENABLE		BIT(7)
123#define VIDCFG_CLUT_BYPASS		BIT(10)
124#define VIDCFG_2X			BIT(26)
125#define VIDCFG_HWCURSOR_ENABLE		BIT(27)
126#define VIDCFG_PIXFMT_SHIFT             18
127#define DACMODE_2X			BIT(0)
128
129/* I2C bit locations in the VIDSERPARPORT register */
130#define DDC_ENAB	0x00040000
131#define DDC_SCL_OUT	0x00080000
132#define DDC_SDA_OUT	0x00100000
133#define DDC_SCL_IN	0x00200000
134#define DDC_SDA_IN	0x00400000
135#define I2C_ENAB	0x00800000
136#define I2C_SCL_OUT	0x01000000
137#define I2C_SDA_OUT	0x02000000
138#define I2C_SCL_IN	0x04000000
139#define I2C_SDA_IN	0x08000000
140
141/* VGA rubbish, need to change this for multihead support */
142#define MISC_W		0x3c2
143#define MISC_R		0x3cc
144#define SEQ_I		0x3c4
145#define SEQ_D		0x3c5
146#define CRT_I		0x3d4
147#define CRT_D		0x3d5
148#define ATT_IW		0x3c0
149#define IS1_R		0x3da
150#define GRA_I		0x3ce
151#define GRA_D		0x3cf
152
153#ifdef __KERNEL__
154
155struct banshee_reg {
156	/* VGA rubbish */
157	unsigned char att[21];
158	unsigned char crt[25];
159	unsigned char gra[9];
160	unsigned char misc[1];
161	unsigned char seq[5];
162
163	/* Banshee extensions */
164	unsigned char ext[2];
165	unsigned long vidcfg;
166	unsigned long vidpll;
167	unsigned long mempll;
168	unsigned long gfxpll;
169	unsigned long dacmode;
170	unsigned long vgainit0;
171	unsigned long vgainit1;
172	unsigned long screensize;
173	unsigned long stride;
174	unsigned long cursloc;
175	unsigned long curspataddr;
176	unsigned long cursc0;
177	unsigned long cursc1;
178	unsigned long startaddr;
179	unsigned long clip0min;
180	unsigned long clip0max;
181	unsigned long clip1min;
182	unsigned long clip1max;
183	unsigned long miscinit0;
184};
185
186struct tdfx_par;
187
188struct tdfxfb_i2c_chan {
189	struct tdfx_par *par;
190	struct i2c_adapter adapter;
191	struct i2c_algo_bit_data algo;
192};
193
194struct tdfx_par {
195	u32 max_pixclock;
196	u32 palette[16];
197	void __iomem *regbase_virt;
198	unsigned long iobase;
199	int mtrr_handle;
200#ifdef CONFIG_FB_3DFX_I2C
201	struct tdfxfb_i2c_chan chan[2];
202#endif
203};
204
205#endif	/* __KERNEL__ */
206
207#endif	/* _TDFX_H */
208
v6.2
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef _TDFX_H
  3#define _TDFX_H
  4
  5#include <linux/i2c.h>
  6#include <linux/i2c-algo-bit.h>
  7
  8/* membase0 register offsets */
  9#define STATUS		0x00
 10#define PCIINIT0	0x04
 11#define SIPMONITOR	0x08
 12#define LFBMEMORYCONFIG	0x0c
 13#define MISCINIT0	0x10
 14#define MISCINIT1	0x14
 15#define DRAMINIT0	0x18
 16#define DRAMINIT1	0x1c
 17#define AGPINIT		0x20
 18#define TMUGBEINIT	0x24
 19#define VGAINIT0	0x28
 20#define VGAINIT1	0x2c
 21#define DRAMCOMMAND	0x30
 22#define DRAMDATA	0x34
 23/* reserved	0x38 */
 24/* reserved	0x3c */
 25#define PLLCTRL0	0x40
 26#define PLLCTRL1	0x44
 27#define PLLCTRL2	0x48
 28#define DACMODE		0x4c
 29#define DACADDR		0x50
 30#define DACDATA		0x54
 31#define RGBMAXDELTA	0x58
 32#define VIDPROCCFG	0x5c
 33#define HWCURPATADDR	0x60
 34#define HWCURLOC	0x64
 35#define HWCURC0		0x68
 36#define HWCURC1		0x6c
 37#define VIDINFORMAT	0x70
 38#define VIDINSTATUS	0x74
 39#define VIDSERPARPORT	0x78
 40#define VIDINXDELTA	0x7c
 41#define VIDININITERR	0x80
 42#define VIDINYDELTA	0x84
 43#define VIDPIXBUFTHOLD	0x88
 44#define VIDCHRMIN	0x8c
 45#define VIDCHRMAX	0x90
 46#define VIDCURLIN	0x94
 47#define VIDSCREENSIZE	0x98
 48#define VIDOVRSTARTCRD	0x9c
 49#define VIDOVRENDCRD	0xa0
 50#define VIDOVRDUDX	0xa4
 51#define VIDOVRDUDXOFF	0xa8
 52#define VIDOVRDVDY	0xac
 53/* ... */
 54#define VIDOVRDVDYOFF	0xe0
 55#define VIDDESKSTART	0xe4
 56#define VIDDESKSTRIDE	0xe8
 57#define VIDINADDR0	0xec
 58#define VIDINADDR1	0xf0
 59#define VIDINADDR2	0xf4
 60#define VIDINSTRIDE	0xf8
 61#define VIDCUROVRSTART	0xfc
 62
 63#define INTCTRL		(0x00100000 + 0x04)
 64#define CLIP0MIN	(0x00100000 + 0x08)
 65#define CLIP0MAX	(0x00100000 + 0x0c)
 66#define DSTBASE		(0x00100000 + 0x10)
 67#define DSTFORMAT	(0x00100000 + 0x14)
 68#define SRCBASE		(0x00100000 + 0x34)
 69#define COMMANDEXTRA_2D	(0x00100000 + 0x38)
 70#define CLIP1MIN	(0x00100000 + 0x4c)
 71#define CLIP1MAX	(0x00100000 + 0x50)
 72#define SRCFORMAT	(0x00100000 + 0x54)
 73#define SRCSIZE		(0x00100000 + 0x58)
 74#define SRCXY		(0x00100000 + 0x5c)
 75#define COLORBACK	(0x00100000 + 0x60)
 76#define COLORFORE	(0x00100000 + 0x64)
 77#define DSTSIZE		(0x00100000 + 0x68)
 78#define DSTXY		(0x00100000 + 0x6c)
 79#define COMMAND_2D	(0x00100000 + 0x70)
 80#define LAUNCH_2D	(0x00100000 + 0x80)
 81
 82#define COMMAND_3D	(0x00200000 + 0x120)
 83
 84/* register bitfields (not all, only as needed) */
 85
 86/* COMMAND_2D reg. values */
 87#define TDFX_ROP_COPY		0xcc	/* src */
 88#define TDFX_ROP_INVERT		0x55	/* NOT dst */
 89#define TDFX_ROP_XOR		0x66	/* src XOR dst */
 90
 91#define AUTOINC_DSTX			BIT(10)
 92#define AUTOINC_DSTY			BIT(11)
 93#define COMMAND_2D_FILLRECT		0x05
 94#define COMMAND_2D_S2S_BITBLT		0x01	/* screen to screen */
 95#define COMMAND_2D_H2S_BITBLT		0x03	/* host to screen */
 96
 97#define COMMAND_3D_NOP			0x00
 98#define STATUS_RETRACE			BIT(6)
 99#define STATUS_BUSY			BIT(9)
100#define MISCINIT1_CLUT_INV		BIT(0)
101#define MISCINIT1_2DBLOCK_DIS		BIT(15)
102#define DRAMINIT0_SGRAM_NUM		BIT(26)
103#define DRAMINIT0_SGRAM_TYPE		BIT(27)
104#define DRAMINIT0_SGRAM_TYPE_MASK       (BIT(27) | BIT(28) | BIT(29))
105#define DRAMINIT0_SGRAM_TYPE_SHIFT      27
106#define DRAMINIT1_MEM_SDRAM		BIT(30)
107#define VGAINIT0_VGA_DISABLE		BIT(0)
108#define VGAINIT0_EXT_TIMING		BIT(1)
109#define VGAINIT0_8BIT_DAC		BIT(2)
110#define VGAINIT0_EXT_ENABLE		BIT(6)
111#define VGAINIT0_WAKEUP_3C3		BIT(8)
112#define VGAINIT0_LEGACY_DISABLE		BIT(9)
113#define VGAINIT0_ALT_READBACK		BIT(10)
114#define VGAINIT0_FAST_BLINK		BIT(11)
115#define VGAINIT0_EXTSHIFTOUT		BIT(12)
116#define VGAINIT0_DECODE_3C6		BIT(13)
117#define VGAINIT0_SGRAM_HBLANK_DISABLE	BIT(22)
118#define VGAINIT1_MASK			0x1fffff
119#define VIDCFG_VIDPROC_ENABLE		BIT(0)
120#define VIDCFG_CURS_X11			BIT(1)
121#define VIDCFG_INTERLACE		BIT(3)
122#define VIDCFG_HALF_MODE		BIT(4)
123#define VIDCFG_DESK_ENABLE		BIT(7)
124#define VIDCFG_CLUT_BYPASS		BIT(10)
125#define VIDCFG_2X			BIT(26)
126#define VIDCFG_HWCURSOR_ENABLE		BIT(27)
127#define VIDCFG_PIXFMT_SHIFT             18
128#define DACMODE_2X			BIT(0)
129
130/* I2C bit locations in the VIDSERPARPORT register */
131#define DDC_ENAB	0x00040000
132#define DDC_SCL_OUT	0x00080000
133#define DDC_SDA_OUT	0x00100000
134#define DDC_SCL_IN	0x00200000
135#define DDC_SDA_IN	0x00400000
136#define I2C_ENAB	0x00800000
137#define I2C_SCL_OUT	0x01000000
138#define I2C_SDA_OUT	0x02000000
139#define I2C_SCL_IN	0x04000000
140#define I2C_SDA_IN	0x08000000
141
142/* VGA rubbish, need to change this for multihead support */
143#define MISC_W		0x3c2
144#define MISC_R		0x3cc
145#define SEQ_I		0x3c4
146#define SEQ_D		0x3c5
147#define CRT_I		0x3d4
148#define CRT_D		0x3d5
149#define ATT_IW		0x3c0
150#define IS1_R		0x3da
151#define GRA_I		0x3ce
152#define GRA_D		0x3cf
153
154#ifdef __KERNEL__
155
156struct banshee_reg {
157	/* VGA rubbish */
158	unsigned char att[21];
159	unsigned char crt[25];
160	unsigned char gra[9];
161	unsigned char misc[1];
162	unsigned char seq[5];
163
164	/* Banshee extensions */
165	unsigned char ext[2];
166	unsigned long vidcfg;
167	unsigned long vidpll;
168	unsigned long mempll;
169	unsigned long gfxpll;
170	unsigned long dacmode;
171	unsigned long vgainit0;
172	unsigned long vgainit1;
173	unsigned long screensize;
174	unsigned long stride;
175	unsigned long cursloc;
176	unsigned long curspataddr;
177	unsigned long cursc0;
178	unsigned long cursc1;
179	unsigned long startaddr;
180	unsigned long clip0min;
181	unsigned long clip0max;
182	unsigned long clip1min;
183	unsigned long clip1max;
184	unsigned long miscinit0;
185};
186
187struct tdfx_par;
188
189struct tdfxfb_i2c_chan {
190	struct tdfx_par *par;
191	struct i2c_adapter adapter;
192	struct i2c_algo_bit_data algo;
193};
194
195struct tdfx_par {
196	u32 max_pixclock;
197	u32 palette[16];
198	void __iomem *regbase_virt;
199	unsigned long iobase;
200	int wc_cookie;
201#ifdef CONFIG_FB_3DFX_I2C
202	struct tdfxfb_i2c_chan chan[2];
203#endif
204};
205
206#endif	/* __KERNEL__ */
207
208#endif	/* _TDFX_H */
209