blob: b46004576fb2424acfc4b37fe1f9afcb6c155a28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __MATROXFB_MISC_H__
2#define __MATROXFB_MISC_H__
3
4#include "matroxfb_base.h"
5
6/* also for modules */
7int 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);
9static inline int PLL_calcclock(CPMINFO unsigned int freq, unsigned int fmax,
10 unsigned int* in, unsigned int* feed, unsigned int* post) {
Jean Delvarefc2d10d2009-09-22 16:47:48 -070011 return matroxfb_PLL_calcclock(&minfo->features.pll, freq, fmax, in, feed, post);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012}
13
14int matroxfb_vgaHWinit(WPMINFO struct my_timming* m);
15void matroxfb_vgaHWrestore(WPMINFO2);
16void matroxfb_read_pins(WPMINFO2);
17
18#endif /* __MATROXFB_MISC_H__ */