1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
/*
* test_output - Test KMS/DRI output
*
* Copyright (c) 2011-2012 David Herrmann <dh.herrmann@googlemail.com>
* Copyright (c) 2011 University of Tuebingen
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* Test KMS/DRI output subsystem
* This is an example how to use the output subsystem. Invoked without
* arguments it prints a list of all connected outputs and their modes.
* If you pass any argument it will enable all outputs for 5seconds.
*
* This lists all outputs:
* $ ./test_output
*
* This would show a test screen:
* $ ./test_output something
*/
static void print_help();
#include <errno.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "eloop.h"
#include "shl_log.h"
#include "test_include.h"
#include "uterm_video.h"
/* eloop object */
static struct ev_eloop *eloop;
struct {
bool fbdev;
bool test;
char *dev;
unsigned int desired_width;
unsigned int desired_height;
} output_conf;
static int blit_outputs(struct uterm_video *video)
{
struct uterm_display *iter;
int j, ret;
j = 0;
iter = uterm_video_get_displays(video);
for (; iter; iter = uterm_display_next(iter)) {
log_notice("Activating display %d %p...", j, iter);
ret = uterm_display_set_dpms(iter, UTERM_DPMS_ON);
if (ret)
log_err("Cannot set DPMS to ON: %d", ret);
++j;
}
iter = uterm_video_get_displays(video);
for (; iter; iter = uterm_display_next(iter)) {
if (uterm_display_get_state(iter) != UTERM_DISPLAY_ACTIVE)
continue;
ret = uterm_display_fill(iter, 0xff, 0xff, 0xff, 0, 0,
uterm_display_get_width(iter),
uterm_display_get_height(iter));
if (ret) {
log_err("cannot fill framebuffer");
continue;
}
ret = uterm_display_swap(iter);
if (ret) {
log_err("Cannot swap screen: %d", ret);
continue;
}
log_notice("Successfully set screen on display %p", iter);
}
log_notice("Waiting 5 seconds...");
ev_eloop_run(eloop, 5000);
log_notice("Exiting...");
return 0;
}
static int list_outputs(struct uterm_video *video)
{
struct uterm_display *iter;
int i;
log_notice("List of Outputs:");
i = 0;
iter = uterm_video_get_displays(video);
for (; iter; iter = uterm_display_next(iter)) {
log_notice("Output %d:", i++);
log_notice(" active: %d", uterm_display_get_state(iter));
}
log_notice("End of Output list");
return 0;
}
static void print_help()
{
/*
* Usage/Help information
* This should be scaled to a maximum of 80 characters per line:
*
* 80 char line:
* | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 |
* "12345678901234567890123456789012345678901234567890123456789012345678901234567890\n"
* 80 char line starting with tab:
* |10| 20 | 30 | 40 | 50 | 60 | 70 | 80 |
* "\t901234567890123456789012345678901234567890123456789012345678901234567890\n"
*/
fprintf(stderr,
"Usage:\n"
"\t%1$s [options]\n"
"\t%1$s -h [options]\n"
"\n"
"You can prefix boolean options with \"no-\" to negate it. If an argument is\n"
"given multiple times, only the last argument matters if not otherwise stated.\n"
"\n"
"General Options:\n" TEST_HELP "\n"
"Video Options:\n"
"\t --fbdev [off] Use fbdev instead of DRM\n"
"\t --test [off] Try displaying content instead of listing "
"devices\n"
"\t --dev [/dev/dri/card0 | /dev/fb0] Use the given device\n",
"test_input");
/*
* 80 char line:
* | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 |
* "12345678901234567890123456789012345678901234567890123456789012345678901234567890\n"
* 80 char line starting with tab:
* |10| 20 | 30 | 40 | 50 | 60 | 70 | 80 |
* "\t901234567890123456789012345678901234567890123456789012345678901234567890\n"
*/
}
struct conf_option options[] = {
TEST_OPTIONS,
CONF_OPTION_BOOL(0, "fbdev", &output_conf.fbdev, false),
CONF_OPTION_BOOL(0, "test", &output_conf.test, false),
CONF_OPTION_STRING(0, "dev", &output_conf.dev, NULL),
CONF_OPTION_UINT(0, "desired-width", &output_conf.desired_width, 0),
CONF_OPTION_UINT(0, "desired-height", &output_conf.desired_height, 0),
};
int main(int argc, char **argv)
{
struct uterm_video *video;
int ret;
const char *node;
const char *mode;
size_t onum;
onum = sizeof(options) / sizeof(*options);
ret = test_prepare(options, onum, argc, argv, &eloop);
if (ret)
goto err_fail;
if (output_conf.fbdev) {
mode = "fbdev";
node = "/dev/fb0";
} else {
mode = "drm3d";
node = "/dev/dri/card0";
}
if (output_conf.dev)
node = output_conf.dev;
log_notice("Creating video object using %s...", node);
ret = uterm_video_new(&video, eloop, node, mode, output_conf.desired_width,
output_conf.desired_height, false);
if (ret) {
if (!output_conf.fbdev) {
log_notice("cannot create drm device; trying drm2d mode");
ret = uterm_video_new(&video, eloop, node, "drm2d",
output_conf.desired_width, output_conf.desired_height,
false);
if (ret)
goto err_exit;
} else {
goto err_exit;
}
}
log_notice("Wakeing up video object...");
ret = uterm_video_wake_up(video);
if (ret < 0)
goto err_unref;
if (!output_conf.test) {
ret = list_outputs(video);
if (ret) {
log_err("Cannot list outputs: %d", ret);
goto err_unref;
}
} else {
ret = blit_outputs(video);
if (ret) {
log_err("Cannot set outputs: %d", ret);
goto err_unref;
}
}
err_unref:
uterm_video_unref(video);
err_exit:
test_exit(options, onum, eloop);
err_fail:
if (ret != -ECANCELED)
test_fail(ret);
return abs(ret);
}
|