blob: 00bfa5a3b0d3c5d824a82e72bf96793af5d8887a [file] [log] [blame]
Mathias Agopiande586972009-05-28 17:39:03 -07001/*
2 ** Copyright 2007, The Android Open Source Project
3 **
4 ** Licensed under the Apache License, Version 2.0 (the "License");
5 ** you may not use this file except in compliance with the License.
6 ** You may obtain a copy of the License at
7 **
8 ** http://www.apache.org/licenses/LICENSE-2.0
9 **
10 ** Unless required by applicable law or agreed to in writing, software
11 ** distributed under the License is distributed on an "AS IS" BASIS,
12 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ** See the License for the specific language governing permissions and
14 ** limitations under the License.
15 */
16
17#include <ctype.h>
18#include <stdlib.h>
19#include <stdio.h>
20#include <string.h>
21#include <errno.h>
22#include <dlfcn.h>
23#include <limits.h>
24
25#include <cutils/log.h>
David 'Digit' Turner80b30c22011-08-26 17:38:47 +020026#include <cutils/properties.h>
Mathias Agopiande586972009-05-28 17:39:03 -070027
28#include <EGL/egl.h>
29
Mathias Agopian39c24a22013-04-04 23:17:56 -070030#include "../glestrace.h"
31
Mathias Agopian1cadb252011-05-23 17:26:14 -070032#include "egldefs.h"
Mathias Agopian1cadb252011-05-23 17:26:14 -070033#include "Loader.h"
Mathias Agopiande586972009-05-28 17:39:03 -070034
35// ----------------------------------------------------------------------------
36namespace android {
37// ----------------------------------------------------------------------------
38
39
40/*
41 * EGL drivers are called
42 *
43 * /system/lib/egl/lib{[EGL|GLESv1_CM|GLESv2] | GLES}_$TAG.so
44 *
45 */
46
47ANDROID_SINGLETON_STATIC_INSTANCE( Loader )
48
David 'Digit' Turner80b30c22011-08-26 17:38:47 +020049/* This function is called to check whether we run inside the emulator,
50 * and if this is the case whether GLES GPU emulation is supported.
51 *
52 * Returned values are:
53 * -1 -> not running inside the emulator
54 * 0 -> running inside the emulator, but GPU emulation not supported
55 * 1 -> running inside the emulator, GPU emulation is supported
56 * through the "emulation" config.
57 */
58static int
59checkGlesEmulationStatus(void)
60{
61 /* We're going to check for the following kernel parameters:
62 *
63 * qemu=1 -> tells us that we run inside the emulator
64 * android.qemu.gles=<number> -> tells us the GLES GPU emulation status
65 *
66 * Note that we will return <number> if we find it. This let us support
67 * more additionnal emulation modes in the future.
68 */
69 char prop[PROPERTY_VALUE_MAX];
70 int result = -1;
71
72 /* First, check for qemu=1 */
73 property_get("ro.kernel.qemu",prop,"0");
74 if (atoi(prop) != 1)
75 return -1;
76
77 /* We are in the emulator, get GPU status value */
78 property_get("ro.kernel.qemu.gles",prop,"0");
79 return atoi(prop);
80}
81
Mathias Agopiande586972009-05-28 17:39:03 -070082// ----------------------------------------------------------------------------
83
Mathias Agopiand75f84d2012-06-05 21:44:43 -070084static char const * getProcessCmdline() {
85 long pid = getpid();
86 char procPath[128];
87 snprintf(procPath, 128, "/proc/%ld/cmdline", pid);
88 FILE * file = fopen(procPath, "r");
89 if (file) {
90 static char cmdline[256];
91 char *str = fgets(cmdline, sizeof(cmdline) - 1, file);
92 fclose(file);
93 if (str) {
94 return cmdline;
95 }
96 }
97 return NULL;
98}
99
100// ----------------------------------------------------------------------------
101
Mathias Agopiande586972009-05-28 17:39:03 -0700102Loader::driver_t::driver_t(void* gles)
103{
104 dso[0] = gles;
105 for (size_t i=1 ; i<NELEM(dso) ; i++)
106 dso[i] = 0;
107}
108
109Loader::driver_t::~driver_t()
110{
111 for (size_t i=0 ; i<NELEM(dso) ; i++) {
112 if (dso[i]) {
113 dlclose(dso[i]);
114 dso[i] = 0;
115 }
116 }
117}
118
119status_t Loader::driver_t::set(void* hnd, int32_t api)
120{
121 switch (api) {
122 case EGL:
123 dso[0] = hnd;
124 break;
125 case GLESv1_CM:
126 dso[1] = hnd;
127 break;
128 case GLESv2:
129 dso[2] = hnd;
130 break;
131 default:
132 return BAD_INDEX;
133 }
134 return NO_ERROR;
135}
136
137// ----------------------------------------------------------------------------
138
Mathias Agopiande586972009-05-28 17:39:03 -0700139Loader::Loader()
140{
141 char line[256];
142 char tag[256];
David 'Digit' Turner80b30c22011-08-26 17:38:47 +0200143
144 /* Special case for GLES emulation */
145 if (checkGlesEmulationStatus() == 0) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800146 ALOGD("Emulator without GPU support detected. "
147 "Fallback to software renderer.");
148 mDriverTag.setTo("android");
David 'Digit' Turner80b30c22011-08-26 17:38:47 +0200149 return;
150 }
151
152 /* Otherwise, use egl.cfg */
Mathias Agopiande586972009-05-28 17:39:03 -0700153 FILE* cfg = fopen("/system/lib/egl/egl.cfg", "r");
154 if (cfg == NULL) {
155 // default config
Steve Block9d453682011-12-20 16:23:08 +0000156 ALOGD("egl.cfg not found, using default config");
Mathias Agopianada798b2012-02-13 17:09:30 -0800157 mDriverTag.setTo("android");
Mathias Agopiande586972009-05-28 17:39:03 -0700158 } else {
159 while (fgets(line, 256, cfg)) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800160 int dpy, impl;
Mathias Agopiande586972009-05-28 17:39:03 -0700161 if (sscanf(line, "%u %u %s", &dpy, &impl, tag) == 3) {
Steve Block9d453682011-12-20 16:23:08 +0000162 //ALOGD(">>> %u %u %s", dpy, impl, tag);
Mathias Agopianada798b2012-02-13 17:09:30 -0800163 // We only load the h/w accelerated implementation
164 if (tag != String8("android")) {
165 mDriverTag = tag;
166 }
Mathias Agopiande586972009-05-28 17:39:03 -0700167 }
168 }
169 fclose(cfg);
170 }
171}
172
173Loader::~Loader()
174{
Siva Velusamy0469dd62011-11-30 15:05:37 -0800175 GLTrace_stop();
Mathias Agopiande586972009-05-28 17:39:03 -0700176}
177
Mathias Agopianada798b2012-02-13 17:09:30 -0800178void* Loader::open(egl_connection_t* cnx)
Mathias Agopiande586972009-05-28 17:39:03 -0700179{
Mathias Agopiande586972009-05-28 17:39:03 -0700180 void* dso;
Mathias Agopiande586972009-05-28 17:39:03 -0700181 driver_t* hnd = 0;
Mathias Agopiande586972009-05-28 17:39:03 -0700182
Mathias Agopianada798b2012-02-13 17:09:30 -0800183 char const* tag = mDriverTag.string();
Mathias Agopiande586972009-05-28 17:39:03 -0700184 if (tag) {
Brian Swetland2b9e4f62010-09-20 12:58:15 -0700185 dso = load_driver("GLES", tag, cnx, EGL | GLESv1_CM | GLESv2);
Mathias Agopiande586972009-05-28 17:39:03 -0700186 if (dso) {
187 hnd = new driver_t(dso);
188 } else {
189 // Always load EGL first
Brian Swetland2b9e4f62010-09-20 12:58:15 -0700190 dso = load_driver("EGL", tag, cnx, EGL);
Mathias Agopiande586972009-05-28 17:39:03 -0700191 if (dso) {
192 hnd = new driver_t(dso);
Mathias Agopiande586972009-05-28 17:39:03 -0700193 // TODO: make this more automated
Brian Swetland2b9e4f62010-09-20 12:58:15 -0700194 hnd->set( load_driver("GLESv1_CM", tag, cnx, GLESv1_CM), GLESv1_CM );
Mathias Agopianada798b2012-02-13 17:09:30 -0800195 hnd->set( load_driver("GLESv2", tag, cnx, GLESv2), GLESv2 );
Mathias Agopiande586972009-05-28 17:39:03 -0700196 }
197 }
198 }
199
Mathias Agopianada798b2012-02-13 17:09:30 -0800200 LOG_FATAL_IF(!index && !hnd,
Mathias Agopianacdebe32009-06-03 18:26:58 -0700201 "couldn't find the default OpenGL ES implementation "
Mathias Agopiande586972009-05-28 17:39:03 -0700202 "for default display");
203
204 return (void*)hnd;
205}
206
207status_t Loader::close(void* driver)
208{
209 driver_t* hnd = (driver_t*)driver;
210 delete hnd;
211 return NO_ERROR;
212}
213
214void Loader::init_api(void* dso,
215 char const * const * api,
216 __eglMustCastToProperFunctionPointerType* curr,
217 getProcAddressType getProcAddress)
218{
Mathias Agopian7773c432012-02-13 20:06:08 -0800219 const ssize_t SIZE = 256;
Mathias Agopian0ad71a92011-05-11 20:37:47 -0700220 char scrap[SIZE];
Mathias Agopiande586972009-05-28 17:39:03 -0700221 while (*api) {
222 char const * name = *api;
223 __eglMustCastToProperFunctionPointerType f =
224 (__eglMustCastToProperFunctionPointerType)dlsym(dso, name);
225 if (f == NULL) {
226 // couldn't find the entry-point, use eglGetProcAddress()
227 f = getProcAddress(name);
228 }
229 if (f == NULL) {
230 // Try without the OES postfix
231 ssize_t index = ssize_t(strlen(name)) - 3;
Mathias Agopian0ad71a92011-05-11 20:37:47 -0700232 if ((index>0 && (index<SIZE-1)) && (!strcmp(name+index, "OES"))) {
Mathias Agopiande586972009-05-28 17:39:03 -0700233 strncpy(scrap, name, index);
234 scrap[index] = 0;
235 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
Steve Block9d453682011-12-20 16:23:08 +0000236 //ALOGD_IF(f, "found <%s> instead", scrap);
Mathias Agopiande586972009-05-28 17:39:03 -0700237 }
238 }
239 if (f == NULL) {
240 // Try with the OES postfix
Mathias Agopian0ad71a92011-05-11 20:37:47 -0700241 ssize_t index = ssize_t(strlen(name)) - 3;
242 if (index>0 && strcmp(name+index, "OES")) {
243 snprintf(scrap, SIZE, "%sOES", name);
Mathias Agopiande586972009-05-28 17:39:03 -0700244 f = (__eglMustCastToProperFunctionPointerType)dlsym(dso, scrap);
Steve Block9d453682011-12-20 16:23:08 +0000245 //ALOGD_IF(f, "found <%s> instead", scrap);
Mathias Agopiande586972009-05-28 17:39:03 -0700246 }
247 }
248 if (f == NULL) {
Steve Block9d453682011-12-20 16:23:08 +0000249 //ALOGD("%s", name);
Mathias Agopiande586972009-05-28 17:39:03 -0700250 f = (__eglMustCastToProperFunctionPointerType)gl_unimplemented;
Mathias Agopian48d438d2012-01-28 21:44:00 -0800251
252 /*
253 * GL_EXT_debug_label is special, we always report it as
254 * supported, it's handled by GLES_trace. If GLES_trace is not
255 * enabled, then these are no-ops.
256 */
257 if (!strcmp(name, "glInsertEventMarkerEXT")) {
258 f = (__eglMustCastToProperFunctionPointerType)gl_noop;
259 } else if (!strcmp(name, "glPushGroupMarkerEXT")) {
260 f = (__eglMustCastToProperFunctionPointerType)gl_noop;
261 } else if (!strcmp(name, "glPopGroupMarkerEXT")) {
262 f = (__eglMustCastToProperFunctionPointerType)gl_noop;
263 }
Mathias Agopiande586972009-05-28 17:39:03 -0700264 }
265 *curr++ = f;
266 api++;
267 }
268}
269
Brian Swetland2b9e4f62010-09-20 12:58:15 -0700270void *Loader::load_driver(const char* kind, const char *tag,
Mathias Agopian618fa102009-10-14 02:06:37 -0700271 egl_connection_t* cnx, uint32_t mask)
Mathias Agopiande586972009-05-28 17:39:03 -0700272{
Brian Swetland2b9e4f62010-09-20 12:58:15 -0700273 char driver_absolute_path[PATH_MAX];
274 const char* const search1 = "/vendor/lib/egl/lib%s_%s.so";
275 const char* const search2 = "/system/lib/egl/lib%s_%s.so";
276
277 snprintf(driver_absolute_path, PATH_MAX, search1, kind, tag);
Mathias Agopian8c173842009-09-20 16:01:02 -0700278 if (access(driver_absolute_path, R_OK)) {
Brian Swetland2b9e4f62010-09-20 12:58:15 -0700279 snprintf(driver_absolute_path, PATH_MAX, search2, kind, tag);
280 if (access(driver_absolute_path, R_OK)) {
281 // this happens often, we don't want to log an error
282 return 0;
283 }
Mathias Agopian8c173842009-09-20 16:01:02 -0700284 }
Mathias Agopiande586972009-05-28 17:39:03 -0700285
Mathias Agopian8c173842009-09-20 16:01:02 -0700286 void* dso = dlopen(driver_absolute_path, RTLD_NOW | RTLD_LOCAL);
287 if (dso == 0) {
288 const char* err = dlerror();
Steve Blocke6f43dd2012-01-06 19:20:56 +0000289 ALOGE("load_driver(%s): %s", driver_absolute_path, err?err:"unknown");
Mathias Agopian8c173842009-09-20 16:01:02 -0700290 return 0;
291 }
292
Steve Block9d453682011-12-20 16:23:08 +0000293 ALOGD("loaded %s", driver_absolute_path);
Mathias Agopianbaca89c2009-08-20 19:09:34 -0700294
Mathias Agopiande586972009-05-28 17:39:03 -0700295 if (mask & EGL) {
296 getProcAddress = (getProcAddressType)dlsym(dso, "eglGetProcAddress");
297
Steve Blocke6f43dd2012-01-06 19:20:56 +0000298 ALOGE_IF(!getProcAddress,
Mathias Agopian8c173842009-09-20 16:01:02 -0700299 "can't find eglGetProcAddress() in %s", driver_absolute_path);
Mathias Agopiande586972009-05-28 17:39:03 -0700300
Mathias Agopiand75f84d2012-06-05 21:44:43 -0700301#ifdef SYSTEMUI_PBSIZE_HACK
302#warning "SYSTEMUI_PBSIZE_HACK enabled"
303 /*
304 * TODO: replace SYSTEMUI_PBSIZE_HACK by something less hackish
305 *
306 * Here we adjust the PB size from its default value to 512KB which
307 * is the minimum acceptable for the systemui process.
308 * We do this on low-end devices only because it allows us to enable
309 * h/w acceleration in the systemui process while keeping the
310 * memory usage down.
311 *
312 * Obviously, this is the wrong place and wrong way to make this
313 * adjustment, but at the time of this writing this was the safest
314 * solution.
315 */
316 const char *cmdline = getProcessCmdline();
317 if (strstr(cmdline, "systemui")) {
318 void *imgegl = dlopen("/vendor/lib/libIMGegl.so", RTLD_LAZY);
319 if (imgegl) {
320 unsigned int *PVRDefaultPBS =
321 (unsigned int *)dlsym(imgegl, "PVRDefaultPBS");
322 if (PVRDefaultPBS) {
323 ALOGD("setting default PBS to 512KB, was %d KB", *PVRDefaultPBS / 1024);
324 *PVRDefaultPBS = 512*1024;
325 }
326 }
327 }
328#endif
329
Mathias Agopian618fa102009-10-14 02:06:37 -0700330 egl_t* egl = &cnx->egl;
Mathias Agopiande586972009-05-28 17:39:03 -0700331 __eglMustCastToProperFunctionPointerType* curr =
332 (__eglMustCastToProperFunctionPointerType*)egl;
333 char const * const * api = egl_names;
334 while (*api) {
335 char const * name = *api;
336 __eglMustCastToProperFunctionPointerType f =
337 (__eglMustCastToProperFunctionPointerType)dlsym(dso, name);
338 if (f == NULL) {
339 // couldn't find the entry-point, use eglGetProcAddress()
340 f = getProcAddress(name);
341 if (f == NULL) {
342 f = (__eglMustCastToProperFunctionPointerType)0;
343 }
344 }
345 *curr++ = f;
346 api++;
347 }
348 }
349
350 if (mask & GLESv1_CM) {
Mathias Agopian618fa102009-10-14 02:06:37 -0700351 init_api(dso, gl_names,
352 (__eglMustCastToProperFunctionPointerType*)
Mathias Agopian7773c432012-02-13 20:06:08 -0800353 &cnx->hooks[egl_connection_t::GLESv1_INDEX]->gl,
Mathias Agopian618fa102009-10-14 02:06:37 -0700354 getProcAddress);
Mathias Agopiande586972009-05-28 17:39:03 -0700355 }
356
357 if (mask & GLESv2) {
Mathias Agopian618fa102009-10-14 02:06:37 -0700358 init_api(dso, gl_names,
359 (__eglMustCastToProperFunctionPointerType*)
Mathias Agopian7773c432012-02-13 20:06:08 -0800360 &cnx->hooks[egl_connection_t::GLESv2_INDEX]->gl,
Mathias Agopiande586972009-05-28 17:39:03 -0700361 getProcAddress);
362 }
363
364 return dso;
365}
366
367// ----------------------------------------------------------------------------
368}; // namespace android
369// ----------------------------------------------------------------------------