piSmasher Configuration Libraries
piSmasher peripheral device configuration libraries
clk_wiz.h
Go to the documentation of this file.
1 
46 #ifndef __CLK_WIZ_H
47 #define __CLK_WIZ_H
48 
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52 
57 };
58 
59 struct clk_wiz_dev {
60  void *base;
61  int fd;
62 };
63 
64 int clk_wiz_init(struct clk_wiz_dev *dev, const char *devname);
65 int clk_wiz_config(struct clk_wiz_dev *dev, enum clk_wiz_mode mode);
66 
67 #ifdef __cplusplus
68 }
69 #endif
70 
71 #endif /* __CLK_WIZ_H */
Definition: clk_wiz.h:55
Definition: clk_wiz.h:58
Definition: clk_wiz.h:53
clk_wiz_mode
Definition: clk_wiz.h:52
int clk_wiz_init(struct clk_wiz_dev *dev, const char *devname)
Video Timing Controller Initialization.
Definition: clk_wiz.c:176
Definition: clk_wiz.h:54