gpu_neon: flush cmd buffer before blit too
[pcsx_rearmed.git] / frontend / plat_omap.c
1 /*
2  * (C) notaz, 2010
3  *
4  * This work is licensed under the terms of the GNU GPLv2 or later.
5  * See the COPYING file in the top-level directory.
6  */
7
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <sys/types.h>
11 #include <sys/stat.h>
12 #include <fcntl.h>
13 #include <sys/ioctl.h>
14 #include <unistd.h>
15 #include <linux/omapfb.h>
16
17 #include "common/menu.h"
18 #include "linux/fbdev.h"
19 #include "linux/oshide.h"
20 #include "plugin_lib.h"
21 #include "pl_gun_ts.h"
22 #include "omap.h"
23 #include "plat.h"
24
25
26 static struct vout_fbdev *main_fb;
27 int g_layer_x = 80, g_layer_y = 0;
28 int g_layer_w = 640, g_layer_h = 480;
29
30 struct vout_fbdev *layer_fb;
31
32 static int omap_setup_layer_(int fd, int enabled, int x, int y, int w, int h)
33 {
34         struct omapfb_plane_info pi = { 0, };
35         struct omapfb_mem_info mi = { 0, };
36         int ret;
37
38         ret = ioctl(fd, OMAPFB_QUERY_PLANE, &pi);
39         if (ret != 0) {
40                 perror("QUERY_PLANE");
41                 return -1;
42         }
43
44         ret = ioctl(fd, OMAPFB_QUERY_MEM, &mi);
45         if (ret != 0) {
46                 perror("QUERY_MEM");
47                 return -1;
48         }
49
50         /* must disable when changing stuff */
51         if (pi.enabled) {
52                 pi.enabled = 0;
53                 ret = ioctl(fd, OMAPFB_SETUP_PLANE, &pi);
54                 if (ret != 0)
55                         perror("SETUP_PLANE");
56         }
57
58         if (mi.size < 640*512*3*3) {
59                 mi.size = 640*512*3*3;
60                 ret = ioctl(fd, OMAPFB_SETUP_MEM, &mi);
61                 if (ret != 0) {
62                         perror("SETUP_MEM");
63                         return -1;
64                 }
65         }
66
67         pi.pos_x = x;
68         pi.pos_y = y;
69         pi.out_width = w;
70         pi.out_height = h;
71         pi.enabled = enabled;
72
73         ret = ioctl(fd, OMAPFB_SETUP_PLANE, &pi);
74         if (ret != 0) {
75                 perror("SETUP_PLANE");
76                 return -1;
77         }
78
79         return 0;
80 }
81
82 int omap_enable_layer(int enabled)
83 {
84         if (enabled)
85                 pl_set_gun_rect(g_layer_x, g_layer_y, g_layer_w, g_layer_h);
86
87         return omap_setup_layer_(vout_fbdev_get_fd(layer_fb), enabled,
88                 g_layer_x, g_layer_y, g_layer_w, g_layer_h);
89 }
90
91 void plat_video_menu_enter(int is_rom_loaded)
92 {
93         g_menuscreen_ptr = vout_fbdev_resize(main_fb,
94                 g_menuscreen_w, g_menuscreen_h, 16, 0, 0, 0, 0, 3);
95         if (g_menuscreen_ptr == NULL)
96                 fprintf(stderr, "warning: vout_fbdev_resize failed\n");
97 }
98
99 void plat_video_menu_begin(void)
100 {
101 }
102
103 void plat_video_menu_end(void)
104 {
105         g_menuscreen_ptr = vout_fbdev_flip(main_fb);
106 }
107
108 void plat_video_menu_leave(void)
109 {
110         /* have to get rid of panning so that plugins that
111          * use fb0 and don't ever pan can work. */
112         vout_fbdev_clear(main_fb);
113         g_menuscreen_ptr = vout_fbdev_resize(main_fb,
114                 g_menuscreen_w, g_menuscreen_h, 16, 0, 0, 0, 0, 1);
115         if (g_menuscreen_ptr == NULL)
116                 fprintf(stderr, "warning: vout_fbdev_resize failed\n");
117 }
118
119 void plat_step_volume(int is_up)
120 {
121 }
122
123 void plat_trigger_vibrate(void)
124 {
125 }
126
127 void plat_init(void)
128 {
129         const char *main_fb_name, *layer_fb_name;
130         void *temp_frame;
131         int fd, ret, w, h;
132
133         main_fb_name = getenv("FBDEV_MAIN");
134         if (main_fb_name == NULL)
135                 main_fb_name = "/dev/fb0";
136
137         layer_fb_name = getenv("FBDEV_LAYER");
138         if (layer_fb_name == NULL)
139                 layer_fb_name = "/dev/fb1";
140
141         // must set the layer up first to be able to use it
142         fd = open(layer_fb_name, O_RDWR);
143         if (fd == -1) {
144                 fprintf(stderr, "%s: ", layer_fb_name);
145                 perror("open");
146                 exit(1);
147         }
148
149         ret = omap_setup_layer_(fd, 0, g_layer_x, g_layer_y, g_layer_w, g_layer_h);
150         close(fd);
151         if (ret != 0) {
152                 fprintf(stderr, "failed to set up layer, exiting.\n");
153                 exit(1);
154         }
155
156         oshide_init();
157
158         w = h = 0;
159         main_fb = vout_fbdev_init(main_fb_name, &w, &h, 16, 2);
160         if (main_fb == NULL) {
161                 fprintf(stderr, "couldn't init fb: %s\n", main_fb_name);
162                 exit(1);
163         }
164
165         g_menuscreen_w = w;
166         g_menuscreen_h = h;
167         g_menuscreen_ptr = vout_fbdev_flip(main_fb);
168
169         w = 640;
170         h = 512; // ??
171         layer_fb = vout_fbdev_init(layer_fb_name, &w, &h, 16, 3);
172         if (layer_fb == NULL) {
173                 fprintf(stderr, "couldn't init fb: %s\n", layer_fb_name);
174                 goto fail0;
175         }
176
177         temp_frame = calloc(g_menuscreen_w * g_menuscreen_h * 2, 1);
178         if (temp_frame == NULL) {
179                 fprintf(stderr, "OOM\n");
180                 goto fail1;
181         }
182         g_menubg_ptr = temp_frame;
183
184         plat_pandora_init(); // XXX
185
186         return;
187
188 fail1:
189         vout_fbdev_finish(layer_fb);
190 fail0:
191         vout_fbdev_finish(main_fb);
192         exit(1);
193
194 }
195
196 void plat_finish(void)
197 {
198         omap_enable_layer(0);
199         vout_fbdev_finish(layer_fb);
200         vout_fbdev_finish(main_fb);
201         oshide_finish();
202 }
203