File: /usr/src/linux/drivers/video/matrox/matroxfb_misc.h
1 #ifndef __MATROXFB_MISC_H__
2 #define __MATROXFB_MISC_H__
3
4 #include "matroxfb_base.h"
5
6 /* also for modules */
7 int matroxfb_PLL_calcclock(const struct matrox_pll_features* pll, unsigned int freq, unsigned int fmax,
8 unsigned int* in, unsigned int* feed, unsigned int* post);
9 static inline int PLL_calcclock(CPMINFO unsigned int freq, unsigned int fmax,
10 unsigned int* in, unsigned int* feed, unsigned int* post) {
11 return matroxfb_PLL_calcclock(&ACCESS_FBINFO(features.pll), freq, fmax, in, feed, post);
12 }
13
14 void matroxfb_createcursorshape(WPMINFO struct display* p, int vmode);
15 int matroxfb_vgaHWinit(CPMINFO struct matrox_hw_state* hw, struct my_timming* m, struct display* p);
16 void matroxfb_vgaHWrestore(WPMINFO struct matrox_hw_state* hw, struct matrox_hw_state* oldhw);
17 void matroxfb_fastfont_init(struct matrox_fb_info* minfo);
18 int matrox_text_loadfont(WPMINFO struct display* p);
19 int matroxfb_fastfont_tryset(WPMINFO struct display* p);
20
21 #endif /* __MATROXFB_MISC_H__ */
22