Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
printk.c
Go to the documentation of this file.
1 /*
2  * Copyright 2012 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24 
25 #include <core/object.h>
26 #include <core/client.h>
27 #include <core/subdev.h>
28 #include <core/printk.h>
29 
30 void
31 nv_printk_(struct nouveau_object *object, const char *pfx, int level,
32  const char *fmt, ...)
33 {
34  static const char name[] = { '!', 'E', 'W', ' ', 'D', 'T', 'P', 'S' };
35  char mfmt[256];
36  va_list args;
37 
38  if (object && !nv_iclass(object, NV_CLIENT_CLASS)) {
39  struct nouveau_object *device = object;
40  struct nouveau_object *subdev = object;
41  char obuf[64], *ofmt = "";
42 
43  if (object->engine) {
44  snprintf(obuf, sizeof(obuf), "[0x%08x][%p]",
45  nv_hclass(object), object);
46  ofmt = obuf;
47  subdev = object->engine;
48  device = object->engine;
49  }
50 
51  if (subdev->parent)
52  device = subdev->parent;
53 
54  if (level > nv_subdev(subdev)->debug)
55  return;
56 
57  snprintf(mfmt, sizeof(mfmt), "%snouveau %c[%8s][%s]%s %s", pfx,
58  name[level], nv_subdev(subdev)->name,
59  nv_device(device)->name, ofmt, fmt);
60  } else
61  if (object && nv_iclass(object, NV_CLIENT_CLASS)) {
62  if (level > nv_client(object)->debug)
63  return;
64 
65  snprintf(mfmt, sizeof(mfmt), "%snouveau %c[%8s] %s", pfx,
66  name[level], nv_client(object)->name, fmt);
67  } else {
68  snprintf(mfmt, sizeof(mfmt), "%snouveau: %s", pfx, fmt);
69  }
70 
71  va_start(args, fmt);
72  vprintk(mfmt, args);
73  va_end(args);
74 }