init.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* init.c -- Setup/Cleanup for DRM -*- linux-c -*-
  2.  * Created: Mon Jan  4 08:58:31 1999 by faith@precisioninsight.com
  3.  *
  4.  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  5.  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  6.  * All Rights Reserved.
  7.  *
  8.  * Permission is hereby granted, free of charge, to any person obtaining a
  9.  * copy of this software and associated documentation files (the "Software"),
  10.  * to deal in the Software without restriction, including without limitation
  11.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  12.  * and/or sell copies of the Software, and to permit persons to whom the
  13.  * Software is furnished to do so, subject to the following conditions:
  14.  * 
  15.  * The above copyright notice and this permission notice (including the next
  16.  * paragraph) shall be included in all copies or substantial portions of the
  17.  * Software.
  18.  * 
  19.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  22.  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  23.  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  24.  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  25.  * DEALINGS IN THE SOFTWARE.
  26.  * 
  27.  * Authors:
  28.  *    Rickard E. (Rik) Faith <faith@valinux.com>
  29.  *
  30.  */
  31. #define __NO_VERSION__
  32. #include "drmP.h"
  33. int       drm_flags = 0;
  34. /* drm_parse_option parses a single option.  See description for
  35.    drm_parse_options for details. */
  36. static void drm_parse_option(char *s)
  37. {
  38. char *c, *r;
  39. DRM_DEBUG(""%s"n", s);
  40. if (!s || !*s) return;
  41. for (c = s; *c && *c != ':'; c++); /* find : or  */
  42. if (*c) r = c + 1; else r = NULL;  /* remember remainder */
  43. *c = '';    /* terminate */
  44. if (!strcmp(s, "noctx")) {
  45. drm_flags |= DRM_FLAG_NOCTX;
  46. DRM_INFO("Server-mediated context switching OFFn");
  47. return;
  48. }
  49. if (!strcmp(s, "debug")) {
  50. drm_flags |= DRM_FLAG_DEBUG;
  51. DRM_INFO("Debug messages ONn");
  52. return;
  53. }
  54. DRM_ERROR(""%s" is not a valid optionn", s);
  55. return;
  56. }
  57. /* drm_parse_options parse the insmod "drm=" options, or the command-line
  58.  * options passed to the kernel via LILO.  The grammar of the format is as
  59.  * follows:
  60.  *
  61.  * drm ::= 'drm=' option_list
  62.  * option_list ::= option [ ';' option_list ]
  63.  * option ::= 'device:' major
  64.  * |   'debug' 
  65.  * |   'noctx'
  66.  * major ::= INTEGER
  67.  *
  68.  * Note that 's' contains option_list without the 'drm=' part.
  69.  *
  70.  * device=major,minor specifies the device number used for /dev/drm
  71.  *   if major == 0 then the misc device is used
  72.  *   if major == 0 and minor == 0 then dynamic misc allocation is used
  73.  * debug=on specifies that debugging messages will be printk'd
  74.  * debug=trace specifies that each function call will be logged via printk
  75.  * debug=off turns off all debugging options
  76.  *
  77.  */
  78. void drm_parse_options(char *s)
  79. {
  80. char *h, *t, *n;
  81. DRM_DEBUG(""%s"n", s ?: "");
  82. if (!s || !*s) return;
  83. for (h = t = n = s; h && *h; h = n) {
  84. for (; *t && *t != ';'; t++);        /* find ; or  */
  85. if (*t) n = t + 1; else n = NULL;      /* remember next */
  86. *t = '';        /* terminate */
  87. drm_parse_option(h);        /* parse */
  88. }
  89. }
  90. /* drm_cpu_valid returns non-zero if the DRI will run on this CPU, and 0
  91.  * otherwise. */
  92. int drm_cpu_valid(void)
  93. {
  94. #if defined(__i386__)
  95. if (boot_cpu_data.x86 == 3) return 0; /* No cmpxchg on a 386 */
  96. #endif
  97. #if defined(__sparc__) && !defined(__sparc_v9__)
  98. if (1)
  99. return 0; /* No cmpxchg before v9 sparc. */
  100. #endif
  101. return 1;
  102. }