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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
/*
* nvidia-xconfig: A tool for manipulating X config files,
* specifically for use by the NVIDIA Linux graphics driver.
*
* Copyright (C) 2005 NVIDIA Corporation
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses>.
*
*
* make_usable.c
*/
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include "nvidia-xconfig.h"
#include "xf86Parser.h"
#include "configProcs.h"
static void ensure_module_loaded(XConfigPtr config, char *name);
static int update_device(Options *op, XConfigPtr config, XConfigDevicePtr device);
static void update_depth(Options *op, XConfigScreenPtr screen);
static void update_display(Options *op, XConfigScreenPtr screen);
/*
* ensure_module_loaded() - make sure the given module is present
*/
static void ensure_module_loaded(XConfigPtr config, char *name) {
XConfigLoadPtr load;
int found = FALSE;
for (load = config->modules->loads; load && !found; load = load->next) {
if (xconfigNameCompare(name, load->name) == 0) found = TRUE;
}
if (!found) {
xconfigAddNewLoadDirective(&config->modules->loads,
name, XCONFIG_LOAD_MODULE,
NULL, FALSE);
}
} /* ensure_module_loaded */
/*
* update_modules() - make sure the glx module is present, and remove
* the GLcore and dri modules if they are present.
*/
int update_modules(XConfigPtr config)
{
XConfigLoadPtr load, next;
/*
* Return early if the original X configuration file lacked a
* "Module" section, and rely on the server's builtin list
* of modules to load, instead. We can safely do this if the
* X server is an X.Org server or XFree86 release >= 4.4.0. On
* installations with older XFree86 servers, the vendor's X
* configuration utility should have added a "Module" section
* we can extend, if necessary.
*/
if (config->modules == NULL)
return FALSE;
/* make sure all our required modules are loaded */
ensure_module_loaded(config, "glx");
#if defined(NV_SUNOS)
ensure_module_loaded(config, "xtsol");
#endif // defined(NV_SUNOS)
/* make sure GLcore and dri are not loaded */
load = config->modules->loads;
while (load) {
next = load->next;
if (xconfigNameCompare("GLcore", load->name) == 0) {
xconfigRemoveLoadDirective(&config->modules->loads, load);
} else if (xconfigNameCompare("dri", load->name) == 0) {
xconfigRemoveLoadDirective(&config->modules->loads, load);
}
load = next;
}
return TRUE;
} /* update_modules() */
/*
* update_screen() - apply any requested updates to the given screen
*/
int update_screen(Options *op, XConfigPtr config, XConfigScreenPtr screen)
{
/* migrate any options from device to screen to avoid conflicts */
screen->options = xconfigOptionListMerge(screen->options,
screen->device->options);
screen->device->options = NULL;
update_display(op, screen);
update_depth(op, screen);
update_device(op, config, screen->device);
update_options(op, screen);
return TRUE;
} /* update_screen() */
/*
* get_layout() - get the right layout from the config that we should
* edit
*/
XConfigLayoutPtr get_layout(Options *op, XConfigPtr config)
{
XConfigLayoutPtr layout;
/* select a screenLayout to use */
if (op->layout) {
/* if a layout was specified on the commandline, use that */
layout = xconfigFindLayout(op->layout, config->layouts);
if (!layout) {
fmterr("Unable to find layout \"%s\".\n", op->layout);
return NULL;
}
} else {
/* otherwise, use the first layout in the config file */
if (!config->layouts) {
fmterr("unable to select ScreenLayout to use.\n");
return NULL;
}
layout = config->layouts;
}
return layout;
} /* get_layout() */
/*
* update_extensions() - apply any requested updates to the Extensions
* section; currently, this only applies to the Composite option.
*/
int update_extensions(Options *op, XConfigPtr config)
{
char *value;
/* validate the composite option against any other options specified */
validate_composite(op, config);
if (GET_BOOL_OPTION(op->boolean_options, COMPOSITE_BOOL_OPTION)) {
/* if we don't already have the Extensions section, create it now */
if (!config->extensions) {
config->extensions = calloc(1, sizeof(XConfigExtensionsRec));
}
/* remove any existing composite extension option */
xconfigRemoveNamedOption(&(config->extensions->options), "Composite",
NULL);
/* determine the value to set for the Composite option */
value = GET_BOOL_OPTION(op->boolean_option_values,
COMPOSITE_BOOL_OPTION) ?
"Enable" : "Disable";
/* add the option */
xconfigAddNewOption(&config->extensions->options, "Composite", value);
}
return TRUE;
} /* update_extensions() */
/*
* update_server_flags() - update the server flags section with any
* server flag options; the only option so far is "HandleSpecialKeys"
*/
int update_server_flags(Options *op, XConfigPtr config)
{
if (!op->handle_special_keys) return TRUE;
if (!config->flags) {
config->flags = nvalloc(sizeof(XConfigFlagsRec));
if ( !config->flags ) {
return FALSE;
}
}
if (config->flags->options) {
xconfigRemoveNamedOption(&(config->flags->options),
"HandleSpecialKeys", NULL);
}
if (op->handle_special_keys != NV_DISABLE_STRING_OPTION) {
xconfigAddNewOption(&config->flags->options, "HandleSpecialKeys",
op->handle_special_keys);
}
return TRUE;
} /* update_server_flags() */
/*
* update_device() - update the device; there is a lot of information
* in the device that is not relevant to the NVIDIA X driver. In
* fact, some options, like "Chipset" can actually prevent XFree86
* from using the NVIDIA driver. The simplest solution is to zero out
* the device, and only retain the few fields that are meaningful for
* the NVIDIA X driver.
*/
static int update_device(Options *op, XConfigPtr config, XConfigDevicePtr device)
{
char *identifier, *vendor, *comment, *board, *busid, *driver;
int screen;
XConfigDevicePtr next;
XConfigOptionPtr options;
next = device->next;
options = device->options;
identifier = device->identifier;
vendor = device->vendor;
comment = device->comment;
screen = device->screen;
board = device->board;
busid = device->busid;
driver = device->driver;
memset(device, 0, sizeof(XConfigDeviceRec));
device->next = next;
device->options = options;
device->identifier = identifier;
device->vendor = vendor;
device->comment = comment;
device->screen = screen;
device->board = board;
/*
* Considering four conditions, in order, while populating busid field
* 1. If the user specified "--no-busid", obey that
* 2. If we want to write busid with option --busid
* 3. If we want to preserve existing bus id
* 4. If there are multiple screens
*/
if (op->busid == NV_DISABLE_STRING_OPTION) {
device->busid = NULL;
} else if (op->busid) {
device->busid = op->busid;
} else if (GET_BOOL_OPTION(op->boolean_options,
PRESERVE_BUSID_BOOL_OPTION)) {
if (GET_BOOL_OPTION(op->boolean_option_values,
PRESERVE_BUSID_BOOL_OPTION)) {
device->busid = busid;
} else {
device->busid = NULL;
}
} else if (config->screens->next) {
device->busid = busid;
}
device->chipid = -1;
device->chiprev = -1;
device->irq = -1;
if (op->preserve_driver) {
device->driver = driver;
} else {
device->driver = "nvidia";
}
return TRUE;
} /* update_device() */
/*
* update_depth() - make sure there is a display section with the
* default depth, and possibly update the default depth
*/
static void update_depth(Options *op, XConfigScreenPtr screen)
{
XConfigDisplayPtr display;
int found;
/* update the depth */
if ((op->depth == 8) || (op->depth == 15) ||
(op->depth == 16) || (op->depth == 24) ||
(op->depth == 30)) {
screen->defaultdepth = op->depth;
} else {
/* read the default depth to SVC and set it as the default depth */
int scf_depth;
if (read_scf_depth(&scf_depth) && scf_depth != screen->defaultdepth) {
fmtwarn("The default depth of %d read from "
"the Solaris Management Facility is set as the default "
"depth for screen \"%s\"", scf_depth, screen->identifier);
screen->defaultdepth = scf_depth;
}
}
/*
* if there is no display at the default depth, force the first
* display section to that depth
*/
found = FALSE;
for (display = screen->displays; display; display = display->next) {
if (display->depth == screen->defaultdepth) {
found = TRUE;
break;
}
}
if (!found) {
screen->displays->depth = screen->defaultdepth;
}
} /* update_depth() */
/*
* update_display() - if there are no display subsections, create one
*/
static void update_display(Options *op, XConfigScreenPtr screen)
{
if (!screen->displays) {
XConfigDisplayPtr display;
XConfigModePtr mode = NULL;
xconfigAddMode(&mode, "nvidia-auto-select");
display = nvalloc(sizeof(XConfigDisplayRec));
display->depth = screen->defaultdepth;
display->modes = mode;
display->frameX0 = -1;
display->frameY0 = -1;
display->black.red = -1;
display->white.red = -1;
screen->displays = display;
}
} /* update_display() */
|