2 * ATI Frame Buffer Device Driver Core Definitions
5 #include <linux/config.h>
6 #include <linux/spinlock.h>
7 #include <linux/wait.h>
9 * Elements of the hardware specific atyfb_par structure
25 u32 dp_pix_width
; /* acceleration */
26 u32 dp_chain_mask
; /* acceleration */
27 #ifdef CONFIG_FB_ATY_GENERIC_LCD
31 u32 shadow_h_tot_disp
;
32 u32 shadow_h_sync_strt_wid
;
33 u32 shadow_v_tot_disp
;
34 u32 shadow_v_sync_strt_wid
;
41 struct aty_interrupt
{
42 wait_queue_head_t wait
;
50 int sclk
, mclk
, mclk_pm
, xclk
;
67 } __attribute__ ((packed
)) PLL_BLOCK_MACH64
;
85 u8 mclk_fb_mult
; /* 2 ro 4 */
93 u32 dsp_config
; /* Mach64 GTB DSP */
94 u32 dsp_on_off
; /* Mach64 GTB DSP */
97 u32 xclkpagefaultdelay
;
101 u8 mclk_post_div_real
;
102 u8 xclk_post_div_real
;
103 u8 vclk_post_div_real
;
105 #ifdef CONFIG_FB_ATY_GENERIC_LCD
106 u32 xres
; /* use for LCD stretching/scaling */
113 #define DONT_USE_SPLL 0x1
114 #define DONT_USE_XDLL 0x2
115 #define USE_CPUCLK 0x4
116 #define POWERDOWN_PLL 0x8
120 struct pll_514 ibm514
;
121 struct pll_18818 ics2595
;
125 * The hardware parameters for each card
129 struct aty_cmap_regs __iomem
*aty_cmap_regs
;
130 struct { u8 red
, green
, blue
; } palette
[256];
131 const struct aty_dac_ops
*dac_ops
;
132 const struct aty_pll_ops
*pll_ops
;
133 void __iomem
*ati_regbase
;
134 unsigned long clk_wr_offset
; /* meaning overloaded, clock id by CT */
137 struct pll_info pll_limits
;
148 int blitter_may_be_busy
;
151 unsigned long res_start
;
152 unsigned long res_size
;
154 struct pci_mmap_map
*mmap_map
;
158 #ifdef CONFIG_FB_ATY_GENERIC_LCD
159 unsigned long bios_base_phys
;
160 unsigned long bios_base
;
161 unsigned long lcd_table
;
173 u16 lcd_right_margin
;
174 u16 lcd_lower_margin
;
178 unsigned long aux_start
; /* auxiliary aperture */
179 unsigned long aux_size
;
180 struct aty_interrupt vblank
;
181 unsigned long irq_flags
;
191 * ATI Mach64 features
194 #define M64_HAS(feature) ((par)->features & (M64F_##feature))
196 #define M64F_RESET_3D 0x00000001
197 #define M64F_MAGIC_FIFO 0x00000002
198 #define M64F_GTB_DSP 0x00000004
199 #define M64F_FIFO_32 0x00000008
200 #define M64F_SDRAM_MAGIC_PLL 0x00000010
201 #define M64F_MAGIC_POSTDIV 0x00000020
202 #define M64F_INTEGRATED 0x00000040
203 #define M64F_CT_BUS 0x00000080
204 #define M64F_VT_BUS 0x00000100
205 #define M64F_MOBIL_BUS 0x00000200
206 #define M64F_GX 0x00000400
207 #define M64F_CT 0x00000800
208 #define M64F_VT 0x00001000
209 #define M64F_GT 0x00002000
210 #define M64F_MAGIC_VRAM_SIZE 0x00004000
211 #define M64F_G3_PB_1_1 0x00008000
212 #define M64F_G3_PB_1024x768 0x00010000
213 #define M64F_EXTRA_BRIGHT 0x00020000
214 #define M64F_LT_LCD_REGS 0x00040000
215 #define M64F_XL_DLL 0x00080000
216 #define M64F_MFB_FORCE_4 0x00100000
217 #define M64F_HW_TRIPLE 0x00200000
222 static inline u32
aty_ld_le32(int regindex
, const struct atyfb_par
*par
)
224 /* Hack for bloc 1, should be cleanly optimized by compiler */
225 if (regindex
>= 0x400)
229 return in_le32((volatile u32
*)(par
->ati_regbase
+ regindex
));
231 return readl(par
->ati_regbase
+ regindex
);
235 static inline void aty_st_le32(int regindex
, u32 val
, const struct atyfb_par
*par
)
237 /* Hack for bloc 1, should be cleanly optimized by compiler */
238 if (regindex
>= 0x400)
242 out_le32((volatile u32
*)(par
->ati_regbase
+ regindex
), val
);
244 writel(val
, par
->ati_regbase
+ regindex
);
248 static inline void aty_st_le16(int regindex
, u16 val
,
249 const struct atyfb_par
*par
)
251 /* Hack for bloc 1, should be cleanly optimized by compiler */
252 if (regindex
>= 0x400)
255 out_le16((volatile u16
*)(par
->ati_regbase
+ regindex
), val
);
257 writel(val
, par
->ati_regbase
+ regindex
);
261 static inline u8
aty_ld_8(int regindex
, const struct atyfb_par
*par
)
263 /* Hack for bloc 1, should be cleanly optimized by compiler */
264 if (regindex
>= 0x400)
267 return in_8(par
->ati_regbase
+ regindex
);
269 return readb(par
->ati_regbase
+ regindex
);
273 static inline void aty_st_8(int regindex
, u8 val
, const struct atyfb_par
*par
)
275 /* Hack for bloc 1, should be cleanly optimized by compiler */
276 if (regindex
>= 0x400)
280 out_8(par
->ati_regbase
+ regindex
, val
);
282 writeb(val
, par
->ati_regbase
+ regindex
);
286 #if defined(CONFIG_PM) || defined(CONFIG_PMAC_BACKLIGHT) || defined (CONFIG_FB_ATY_GENERIC_LCD)
287 extern void aty_st_lcd(int index
, u32 val
, const struct atyfb_par
*par
);
288 extern u32
aty_ld_lcd(int index
, const struct atyfb_par
*par
);
296 int (*set_dac
) (const struct fb_info
* info
,
297 const union aty_pll
* pll
, u32 bpp
, u32 accel
);
300 extern const struct aty_dac_ops aty_dac_ibm514
; /* IBM RGB514 */
301 extern const struct aty_dac_ops aty_dac_ati68860b
; /* ATI 68860-B */
302 extern const struct aty_dac_ops aty_dac_att21c498
; /* AT&T 21C498 */
303 extern const struct aty_dac_ops aty_dac_unsupported
; /* unsupported */
304 extern const struct aty_dac_ops aty_dac_ct
; /* Integrated */
312 int (*var_to_pll
) (const struct fb_info
* info
, u32 vclk_per
, u32 bpp
, union aty_pll
* pll
);
313 u32 (*pll_to_var
) (const struct fb_info
* info
, const union aty_pll
* pll
);
314 void (*set_pll
) (const struct fb_info
* info
, const union aty_pll
* pll
);
315 void (*get_pll
) (const struct fb_info
*info
, union aty_pll
* pll
);
316 int (*init_pll
) (const struct fb_info
* info
, union aty_pll
* pll
);
319 extern const struct aty_pll_ops aty_pll_ati18818_1
; /* ATI 18818 */
320 extern const struct aty_pll_ops aty_pll_stg1703
; /* STG 1703 */
321 extern const struct aty_pll_ops aty_pll_ch8398
; /* Chrontel 8398 */
322 extern const struct aty_pll_ops aty_pll_att20c408
; /* AT&T 20C408 */
323 extern const struct aty_pll_ops aty_pll_ibm514
; /* IBM RGB514 */
324 extern const struct aty_pll_ops aty_pll_unsupported
; /* unsupported */
325 extern const struct aty_pll_ops aty_pll_ct
; /* Integrated */
328 extern void aty_set_pll_ct(const struct fb_info
*info
, const union aty_pll
*pll
);
329 extern u8
aty_ld_pll_ct(int offset
, const struct atyfb_par
*par
);
333 * Hardware cursor support
336 extern int aty_init_cursor(struct fb_info
*info
);
339 * Hardware acceleration
342 static inline void wait_for_fifo(u16 entries
, const struct atyfb_par
*par
)
344 while ((aty_ld_le32(FIFO_STAT
, par
) & 0xffff) >
345 ((u32
) (0x8000 >> entries
)));
348 static inline void wait_for_idle(struct atyfb_par
*par
)
350 wait_for_fifo(16, par
);
351 while ((aty_ld_le32(GUI_STAT
, par
) & 1) != 0);
352 par
->blitter_may_be_busy
= 0;
355 extern void aty_reset_engine(const struct atyfb_par
*par
);
356 extern void aty_init_engine(struct atyfb_par
*par
, struct fb_info
*info
);
357 extern int atyfb_xl_init(struct fb_info
*info
);
358 extern void aty_st_pll_ct(int offset
, u8 val
, const struct atyfb_par
*par
);
359 extern u8
aty_ld_pll_ct(int offset
, const struct atyfb_par
*par
);