gl: clear w, h on reinit
[libpicofe.git] / plat.h
CommitLineData
2d3fa877 1#ifndef LIBPICOFE_PLAT_H
2#define LIBPICOFE_PLAT_H
3
e22d791c 4#include <stdlib.h>
5
24b24674 6#ifdef __cplusplus
7extern "C" {
8#endif
9
2d3fa877 10/* target device, everything is optional */
11struct plat_target {
12 int (*cpu_clock_get)(void);
13 int (*cpu_clock_set)(int clock);
a1b30e1a 14 int (*bat_capacity_get)(void);
15 int (*hwfilter_set)(int which);
16 int (*lcdrate_set)(int is_pal);
17 int (*gamma_set)(int val, int black_level);
7ceadd99 18 int (*step_volume)(int *volume, int diff);
1bc471eb 19 int (*switch_layer)(int which, int enable);
e81b987f 20 const char **vout_methods;
21 int vout_method;
22 int vout_fullscreen;
23 const char **hwfilters;
24 int hwfilter;
2d3fa877 25};
b5bfb864 26
2d3fa877 27extern struct plat_target plat_target;
28int plat_target_init(void);
29void plat_target_finish(void);
30void plat_target_setup_input(void);
93c18cb4 31
a1b30e1a 32/* CPU clock in MHz */
33static __inline int plat_target_cpu_clock_get(void)
2d3fa877 34{
a1b30e1a 35 if (plat_target.cpu_clock_get)
36 return plat_target.cpu_clock_get();
37 return -1;
2d3fa877 38}
d572cbad 39
a1b30e1a 40static __inline int plat_target_cpu_clock_set(int mhz)
2d3fa877 41{
a1b30e1a 42 if (plat_target.cpu_clock_set)
43 return plat_target.cpu_clock_set(mhz);
44 return -1;
45}
46
47/* battery capacity (0-100) */
48static __inline int plat_target_bat_capacity_get(void)
49{
50 if (plat_target.bat_capacity_get)
51 return plat_target.bat_capacity_get();
52 return -1;
53}
54
55/* set some hardware-specific video filter, 0 for none */
56static __inline int plat_target_hwfilter_set(int which)
57{
58 if (plat_target.hwfilter_set)
59 return plat_target.hwfilter_set(which);
60 return -1;
61}
62
63/* set device LCD rate, is_pal 0 for NTSC, 1 for PAL compatible */
64static __inline int plat_target_lcdrate_set(int is_pal)
65{
66 if (plat_target.lcdrate_set)
67 return plat_target.lcdrate_set(is_pal);
68 return -1;
69}
70
71/* set device LCD rate, is_pal 0 for NTSC, 1 for PAL compatible */
72static __inline int plat_target_gamma_set(int val, int black_level)
73{
74 if (plat_target.gamma_set)
75 return plat_target.gamma_set(val, black_level);
76 return -1;
77}
78
79/* step sound volume up or down */
7ceadd99 80static __inline int plat_target_step_volume(int *volume, int diff)
a1b30e1a 81{
82 if (plat_target.step_volume)
7ceadd99 83 return plat_target.step_volume(volume, diff);
a1b30e1a 84 return -1;
2d3fa877 85}
388947f3 86
1bc471eb 87/* switch device graphics layers/overlays */
88static __inline int plat_target_switch_layer(int which, int enable)
89{
90 if (plat_target.switch_layer)
91 return plat_target.switch_layer(which, enable);
92 return -1;
93}
94
24b24674 95/* menu: enter (switch bpp, etc), begin/end drawing */
96void plat_video_menu_enter(int is_rom_loaded);
97void plat_video_menu_begin(void);
98void plat_video_menu_end(void);
95a2ec38 99void plat_video_menu_leave(void);
24b24674 100
b188c2b6 101void plat_video_flip(void);
b5bfb864 102void plat_video_wait_vsync(void);
b188c2b6 103
2d3fa877 104/* return the dir/ where configs, saves, bios, etc. are found */
105int plat_get_root_dir(char *dst, int len);
fa8d1331 106
c52e6628
PC
107/* return the dir/ where skin files are found */
108int plat_get_skin_dir(char *dst, int len);
109
a23a278d 110/* return the top level dir for image files */
111int plat_get_data_dir(char *dst, int len);
112
049a6b3e 113int plat_is_dir(const char *path);
4ab30ad4 114int plat_wait_event(int *fds_hnds, int count, int timeout_ms);
115void plat_sleep_ms(int ms);
049a6b3e 116
5e417de5 117void *plat_mmap(unsigned long addr, size_t size, int need_exec, int is_fixed);
118void *plat_mremap(void *ptr, size_t oldsize, size_t newsize);
119void plat_munmap(void *ptr, size_t size);
6282e17e 120int plat_mem_set_exec(void *ptr, size_t size);
5e417de5 121
8ced8d2b 122/* timers, to be used for time diff and must refer to the same clock */
b5bfb864 123unsigned int plat_get_ticks_ms(void);
124unsigned int plat_get_ticks_us(void);
125void plat_wait_till_us(unsigned int us);
4ab30ad4 126
93c18cb4 127void plat_debug_cat(char *str);
049a6b3e 128
24b24674 129#ifdef __cplusplus
130} // extern "C"
131#endif
132
2d3fa877 133#endif /* LIBPICOFE_PLAT_H */