Home | History | Annotate | Line # | Download | only in drm
drm_print.c revision 1.11
      1  1.11  riastrad /*	$NetBSD: drm_print.c,v 1.11 2021/12/19 12:04:17 riastradh Exp $	*/
      2   1.1  riastrad 
      3   1.1  riastrad /*
      4   1.1  riastrad  * Copyright (C) 2016 Red Hat
      5   1.1  riastrad  *
      6   1.1  riastrad  * Permission is hereby granted, free of charge, to any person obtaining a
      7   1.1  riastrad  * copy of this software and associated documentation files (the "Software"),
      8   1.1  riastrad  * to deal in the Software without restriction, including without limitation
      9   1.1  riastrad  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
     10   1.1  riastrad  * and/or sell copies of the Software, and to permit persons to whom the
     11   1.1  riastrad  * Software is furnished to do so, subject to the following conditions:
     12   1.1  riastrad  *
     13   1.1  riastrad  * The above copyright notice and this permission notice shall be included in
     14   1.1  riastrad  * all copies or substantial portions of the Software.
     15   1.1  riastrad  *
     16   1.1  riastrad  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     17   1.1  riastrad  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     18   1.1  riastrad  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     19   1.1  riastrad  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
     20   1.1  riastrad  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
     21   1.1  riastrad  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
     22   1.1  riastrad  * OTHER DEALINGS IN THE SOFTWARE.
     23   1.1  riastrad  *
     24   1.1  riastrad  * Authors:
     25   1.1  riastrad  * Rob Clark <robdclark (at) gmail.com>
     26   1.1  riastrad  */
     27   1.1  riastrad 
     28   1.1  riastrad #include <sys/cdefs.h>
     29  1.11  riastrad __KERNEL_RCSID(0, "$NetBSD: drm_print.c,v 1.11 2021/12/19 12:04:17 riastradh Exp $");
     30   1.1  riastrad 
     31   1.4  riastrad #ifndef __NetBSD__		/* XXX ??? */
     32   1.1  riastrad #define DEBUG /* for pr_debug() */
     33   1.4  riastrad #endif
     34   1.1  riastrad 
     35   1.3  riastrad #ifdef __NetBSD__
     36   1.6  riastrad #include <sys/param.h>
     37   1.3  riastrad #include <sys/stdarg.h>
     38  1.10  riastrad #include <sys/cpu.h>
     39   1.6  riastrad #include <sys/device.h>
     40   1.9  riastrad #include <sys/ksyms.h>
     41   1.3  riastrad #else
     42   1.1  riastrad #include <stdarg.h>
     43   1.1  riastrad 
     44   1.1  riastrad #include <linux/io.h>
     45   1.1  riastrad #include <linux/moduleparam.h>
     46   1.3  riastrad #endif
     47   1.1  riastrad #include <linux/seq_file.h>
     48   1.1  riastrad #include <linux/slab.h>
     49   1.1  riastrad 
     50   1.1  riastrad #include <drm/drm.h>
     51   1.1  riastrad #include <drm/drm_drv.h>
     52   1.1  riastrad #include <drm/drm_print.h>
     53   1.1  riastrad 
     54   1.1  riastrad /*
     55   1.1  riastrad  * __drm_debug: Enable debug output.
     56   1.1  riastrad  * Bitmask of DRM_UT_x. See include/drm/drm_print.h for details.
     57   1.1  riastrad  */
     58   1.1  riastrad unsigned int __drm_debug;
     59   1.1  riastrad EXPORT_SYMBOL(__drm_debug);
     60   1.1  riastrad 
     61   1.7  riastrad #ifdef __linux__
     62   1.1  riastrad MODULE_PARM_DESC(debug, "Enable debug output, where each bit enables a debug category.\n"
     63   1.1  riastrad "\t\tBit 0 (0x01)  will enable CORE messages (drm core code)\n"
     64   1.1  riastrad "\t\tBit 1 (0x02)  will enable DRIVER messages (drm controller code)\n"
     65   1.1  riastrad "\t\tBit 2 (0x04)  will enable KMS messages (modesetting code)\n"
     66   1.1  riastrad "\t\tBit 3 (0x08)  will enable PRIME messages (prime code)\n"
     67   1.1  riastrad "\t\tBit 4 (0x10)  will enable ATOMIC messages (atomic code)\n"
     68   1.1  riastrad "\t\tBit 5 (0x20)  will enable VBL messages (vblank code)\n"
     69   1.1  riastrad "\t\tBit 7 (0x80)  will enable LEASE messages (leasing code)\n"
     70   1.1  riastrad "\t\tBit 8 (0x100) will enable DP messages (displayport code)");
     71   1.1  riastrad module_param_named(debug, __drm_debug, int, 0600);
     72   1.7  riastrad #endif
     73   1.1  riastrad 
     74   1.9  riastrad #ifdef __NetBSD__
     75   1.9  riastrad static void
     76   1.9  riastrad drm_symstr(vaddr_t val, char *out, size_t outsize)
     77   1.9  riastrad {
     78   1.9  riastrad 	unsigned long naddr;
     79   1.9  riastrad 	const char *mod;
     80   1.9  riastrad 	const char *sym;
     81   1.9  riastrad 
     82  1.11  riastrad 	if (curcpu()->ci_spin_locks == 0 &&
     83  1.11  riastrad 	    !cpu_intr_p() &&
     84  1.10  riastrad 	    ksyms_getname(&mod, &sym, val, KSYMS_PROC|KSYMS_CLOSEST) == 0) {
     85   1.9  riastrad 		char offset[32];
     86   1.9  riastrad 
     87   1.9  riastrad 		if (ksyms_getval(mod, sym, &naddr, KSYMS_ANY) == 0 &&
     88   1.9  riastrad 		    (val - naddr) != 0)
     89   1.9  riastrad 			snprintf(offset, sizeof offset, "+%p",
     90   1.9  riastrad 			    (void *)(val - naddr));
     91   1.9  riastrad 		else
     92   1.9  riastrad 			offset[0] = '\0';
     93   1.9  riastrad 		snprintf(out, outsize, "%s:%s%s", mod, sym, offset);
     94   1.9  riastrad 		return;
     95   1.9  riastrad 	}
     96   1.9  riastrad 	snprintf(out, outsize, "%p", (void *)val);
     97   1.9  riastrad }
     98   1.9  riastrad #endif
     99   1.9  riastrad 
    100   1.1  riastrad void __drm_puts_coredump(struct drm_printer *p, const char *str)
    101   1.1  riastrad {
    102   1.1  riastrad 	struct drm_print_iterator *iterator = p->arg;
    103   1.1  riastrad 	ssize_t len;
    104   1.1  riastrad 
    105   1.1  riastrad 	if (!iterator->remain)
    106   1.1  riastrad 		return;
    107   1.1  riastrad 
    108   1.1  riastrad 	if (iterator->offset < iterator->start) {
    109   1.1  riastrad 		ssize_t copy;
    110   1.1  riastrad 
    111   1.1  riastrad 		len = strlen(str);
    112   1.1  riastrad 
    113   1.1  riastrad 		if (iterator->offset + len <= iterator->start) {
    114   1.1  riastrad 			iterator->offset += len;
    115   1.1  riastrad 			return;
    116   1.1  riastrad 		}
    117   1.1  riastrad 
    118   1.1  riastrad 		copy = len - (iterator->start - iterator->offset);
    119   1.1  riastrad 
    120   1.1  riastrad 		if (copy > iterator->remain)
    121   1.1  riastrad 			copy = iterator->remain;
    122   1.1  riastrad 
    123   1.1  riastrad 		/* Copy out the bit of the string that we need */
    124   1.1  riastrad 		memcpy(iterator->data,
    125   1.1  riastrad 			str + (iterator->start - iterator->offset), copy);
    126   1.1  riastrad 
    127   1.1  riastrad 		iterator->offset = iterator->start + copy;
    128   1.1  riastrad 		iterator->remain -= copy;
    129   1.1  riastrad 	} else {
    130   1.1  riastrad 		ssize_t pos = iterator->offset - iterator->start;
    131   1.1  riastrad 
    132   1.1  riastrad 		len = min_t(ssize_t, strlen(str), iterator->remain);
    133   1.1  riastrad 
    134   1.4  riastrad 		memcpy((char *)iterator->data + pos, str, len);
    135   1.1  riastrad 
    136   1.1  riastrad 		iterator->offset += len;
    137   1.1  riastrad 		iterator->remain -= len;
    138   1.1  riastrad 	}
    139   1.1  riastrad }
    140   1.1  riastrad EXPORT_SYMBOL(__drm_puts_coredump);
    141   1.1  riastrad 
    142   1.1  riastrad void __drm_printfn_coredump(struct drm_printer *p, struct va_format *vaf)
    143   1.1  riastrad {
    144   1.1  riastrad 	struct drm_print_iterator *iterator = p->arg;
    145   1.1  riastrad 	size_t len;
    146   1.1  riastrad 	char *buf;
    147   1.1  riastrad 
    148   1.1  riastrad 	if (!iterator->remain)
    149   1.1  riastrad 		return;
    150   1.1  riastrad 
    151   1.1  riastrad 	/* Figure out how big the string will be */
    152   1.1  riastrad 	len = snprintf(NULL, 0, "%pV", vaf);
    153   1.1  riastrad 
    154   1.1  riastrad 	/* This is the easiest path, we've already advanced beyond the offset */
    155   1.1  riastrad 	if (iterator->offset + len <= iterator->start) {
    156   1.1  riastrad 		iterator->offset += len;
    157   1.1  riastrad 		return;
    158   1.1  riastrad 	}
    159   1.1  riastrad 
    160   1.1  riastrad 	/* Then check if we can directly copy into the target buffer */
    161   1.1  riastrad 	if ((iterator->offset >= iterator->start) && (len < iterator->remain)) {
    162   1.1  riastrad 		ssize_t pos = iterator->offset - iterator->start;
    163   1.1  riastrad 
    164   1.1  riastrad 		snprintf(((char *) iterator->data) + pos,
    165   1.1  riastrad 			iterator->remain, "%pV", vaf);
    166   1.1  riastrad 
    167   1.1  riastrad 		iterator->offset += len;
    168   1.1  riastrad 		iterator->remain -= len;
    169   1.1  riastrad 
    170   1.1  riastrad 		return;
    171   1.1  riastrad 	}
    172   1.1  riastrad 
    173   1.1  riastrad 	/*
    174   1.1  riastrad 	 * Finally, hit the slow path and make a temporary string to copy over
    175   1.1  riastrad 	 * using _drm_puts_coredump
    176   1.1  riastrad 	 */
    177   1.1  riastrad 	buf = kmalloc(len + 1, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY);
    178   1.1  riastrad 	if (!buf)
    179   1.1  riastrad 		return;
    180   1.1  riastrad 
    181   1.1  riastrad 	snprintf(buf, len + 1, "%pV", vaf);
    182   1.1  riastrad 	__drm_puts_coredump(p, (const char *) buf);
    183   1.1  riastrad 
    184   1.1  riastrad 	kfree(buf);
    185   1.1  riastrad }
    186   1.1  riastrad EXPORT_SYMBOL(__drm_printfn_coredump);
    187   1.1  riastrad 
    188   1.4  riastrad #ifndef __NetBSD__		/* XXX seq file */
    189   1.1  riastrad void __drm_puts_seq_file(struct drm_printer *p, const char *str)
    190   1.1  riastrad {
    191   1.1  riastrad 	seq_puts(p->arg, str);
    192   1.1  riastrad }
    193   1.1  riastrad EXPORT_SYMBOL(__drm_puts_seq_file);
    194   1.4  riastrad #endif
    195   1.1  riastrad 
    196   1.4  riastrad #ifndef __NetBSD__		/* XXX seq file */
    197   1.1  riastrad void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf)
    198   1.1  riastrad {
    199   1.1  riastrad 	seq_printf(p->arg, "%pV", vaf);
    200   1.1  riastrad }
    201   1.1  riastrad EXPORT_SYMBOL(__drm_printfn_seq_file);
    202   1.4  riastrad #endif
    203   1.1  riastrad 
    204   1.1  riastrad void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf)
    205   1.1  riastrad {
    206   1.9  riastrad #ifdef __NetBSD__
    207   1.9  riastrad 	dev_info(p->arg, "[" DRM_NAME "] ");
    208   1.9  riastrad 	vprintf(vaf->fmt, *vaf->va);	/* XXX */
    209   1.9  riastrad #else
    210   1.1  riastrad 	dev_info(p->arg, "[" DRM_NAME "] %pV", vaf);
    211   1.9  riastrad #endif
    212   1.1  riastrad }
    213   1.1  riastrad EXPORT_SYMBOL(__drm_printfn_info);
    214   1.1  riastrad 
    215   1.1  riastrad void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf)
    216   1.1  riastrad {
    217   1.9  riastrad #ifdef __NetBSD__
    218   1.9  riastrad 	pr_debug("%s ", p->prefix);
    219   1.9  riastrad 	vprintf(vaf->fmt, *vaf->va);	/* XXX */
    220   1.9  riastrad #else
    221   1.1  riastrad 	pr_debug("%s %pV", p->prefix, vaf);
    222   1.9  riastrad #endif
    223   1.1  riastrad }
    224   1.1  riastrad EXPORT_SYMBOL(__drm_printfn_debug);
    225   1.1  riastrad 
    226   1.1  riastrad void __drm_printfn_err(struct drm_printer *p, struct va_format *vaf)
    227   1.1  riastrad {
    228   1.9  riastrad #ifdef __NetBSD__
    229   1.9  riastrad 	pr_err("*ERROR* %s ", p->prefix);
    230   1.9  riastrad 	vprintf(vaf->fmt, *vaf->va);	/* XXX */
    231   1.9  riastrad #else
    232   1.1  riastrad 	pr_err("*ERROR* %s %pV", p->prefix, vaf);
    233   1.9  riastrad #endif
    234   1.1  riastrad }
    235   1.1  riastrad EXPORT_SYMBOL(__drm_printfn_err);
    236   1.1  riastrad 
    237   1.1  riastrad /**
    238   1.1  riastrad  * drm_puts - print a const string to a &drm_printer stream
    239   1.1  riastrad  * @p: the &drm printer
    240   1.1  riastrad  * @str: const string
    241   1.1  riastrad  *
    242   1.1  riastrad  * Allow &drm_printer types that have a constant string
    243   1.1  riastrad  * option to use it.
    244   1.1  riastrad  */
    245   1.1  riastrad void drm_puts(struct drm_printer *p, const char *str)
    246   1.1  riastrad {
    247   1.1  riastrad 	if (p->puts)
    248   1.1  riastrad 		p->puts(p, str);
    249   1.1  riastrad 	else
    250   1.1  riastrad 		drm_printf(p, "%s", str);
    251   1.1  riastrad }
    252   1.1  riastrad EXPORT_SYMBOL(drm_puts);
    253   1.1  riastrad 
    254   1.1  riastrad /**
    255   1.1  riastrad  * drm_printf - print to a &drm_printer stream
    256   1.1  riastrad  * @p: the &drm_printer
    257   1.1  riastrad  * @f: format string
    258   1.1  riastrad  */
    259   1.1  riastrad void drm_printf(struct drm_printer *p, const char *f, ...)
    260   1.1  riastrad {
    261   1.1  riastrad 	va_list args;
    262   1.1  riastrad 
    263   1.1  riastrad 	va_start(args, f);
    264   1.1  riastrad 	drm_vprintf(p, f, &args);
    265   1.1  riastrad 	va_end(args);
    266   1.1  riastrad }
    267   1.1  riastrad EXPORT_SYMBOL(drm_printf);
    268   1.1  riastrad 
    269   1.1  riastrad /**
    270   1.1  riastrad  * drm_print_bits - print bits to a &drm_printer stream
    271   1.1  riastrad  *
    272   1.1  riastrad  * Print bits (in flag fields for example) in human readable form.
    273   1.1  riastrad  *
    274   1.1  riastrad  * @p: the &drm_printer
    275   1.1  riastrad  * @value: field value.
    276   1.1  riastrad  * @bits: Array with bit names.
    277   1.1  riastrad  * @nbits: Size of bit names array.
    278   1.1  riastrad  */
    279   1.1  riastrad void drm_print_bits(struct drm_printer *p, unsigned long value,
    280   1.1  riastrad 		    const char * const bits[], unsigned int nbits)
    281   1.1  riastrad {
    282   1.1  riastrad 	bool first = true;
    283   1.1  riastrad 	unsigned int i;
    284   1.1  riastrad 
    285   1.1  riastrad 	if (WARN_ON_ONCE(nbits > BITS_PER_TYPE(value)))
    286   1.1  riastrad 		nbits = BITS_PER_TYPE(value);
    287   1.1  riastrad 
    288   1.1  riastrad 	for_each_set_bit(i, &value, nbits) {
    289   1.1  riastrad 		if (WARN_ON_ONCE(!bits[i]))
    290   1.1  riastrad 			continue;
    291   1.1  riastrad 		drm_printf(p, "%s%s", first ? "" : ",",
    292   1.1  riastrad 			   bits[i]);
    293   1.1  riastrad 		first = false;
    294   1.1  riastrad 	}
    295   1.1  riastrad 	if (first)
    296   1.1  riastrad 		drm_printf(p, "(none)");
    297   1.1  riastrad }
    298   1.1  riastrad EXPORT_SYMBOL(drm_print_bits);
    299   1.1  riastrad 
    300   1.1  riastrad void drm_dev_printk(const struct device *dev, const char *level,
    301   1.1  riastrad 		    const char *format, ...)
    302   1.1  riastrad {
    303   1.4  riastrad #ifdef __NetBSD__
    304   1.4  riastrad 	va_list va;
    305   1.9  riastrad 	char symbuf[128];
    306   1.9  riastrad 
    307   1.9  riastrad 	drm_symstr((vaddr_t)__builtin_return_address(0), symbuf, sizeof symbuf);
    308   1.9  riastrad 	if (dev)
    309   1.9  riastrad 		printf("%s [" DRM_NAME ":%s] ", device_xname(__UNCONST(dev)), symbuf);
    310   1.9  riastrad 	else
    311   1.9  riastrad 		printf("[" DRM_NAME ":%s] ", symbuf);
    312   1.4  riastrad 
    313   1.4  riastrad 	va_start(va, format);
    314   1.4  riastrad 	vprintf(format, va);
    315   1.4  riastrad 	va_end(va);
    316   1.4  riastrad #else
    317   1.1  riastrad 	struct va_format vaf;
    318   1.1  riastrad 	va_list args;
    319   1.1  riastrad 
    320   1.1  riastrad 	va_start(args, format);
    321   1.1  riastrad 	vaf.fmt = format;
    322   1.1  riastrad 	vaf.va = &args;
    323   1.1  riastrad 
    324   1.1  riastrad 	if (dev)
    325   1.1  riastrad 		dev_printk(level, dev, "[" DRM_NAME ":%ps] %pV",
    326   1.1  riastrad 			   __builtin_return_address(0), &vaf);
    327   1.1  riastrad 	else
    328   1.1  riastrad 		printk("%s" "[" DRM_NAME ":%ps] %pV",
    329   1.1  riastrad 		       level, __builtin_return_address(0), &vaf);
    330   1.1  riastrad 
    331   1.1  riastrad 	va_end(args);
    332   1.4  riastrad #endif
    333   1.1  riastrad }
    334   1.1  riastrad EXPORT_SYMBOL(drm_dev_printk);
    335   1.1  riastrad 
    336   1.1  riastrad void drm_dev_dbg(const struct device *dev, enum drm_debug_category category,
    337   1.1  riastrad 		 const char *format, ...)
    338   1.1  riastrad {
    339   1.4  riastrad #ifdef __NetBSD__
    340   1.4  riastrad 	va_list va;
    341   1.9  riastrad 	char symbuf[128];
    342   1.4  riastrad 
    343   1.8  riastrad 	if (!(__drm_debug & category))
    344   1.4  riastrad 		return;
    345   1.4  riastrad 
    346   1.9  riastrad 	drm_symstr((vaddr_t)__builtin_return_address(0), symbuf, sizeof symbuf);
    347   1.9  riastrad 	if (dev)
    348   1.9  riastrad 		printf("%s [" DRM_NAME ":%s] ", device_xname(__UNCONST(dev)), symbuf);
    349   1.9  riastrad 	else
    350   1.9  riastrad 		printf("[" DRM_NAME ":%s] ", symbuf);
    351   1.9  riastrad 
    352   1.4  riastrad 	va_start(va, format);
    353   1.4  riastrad 	vprintf(format, va);
    354   1.4  riastrad 	va_end(va);
    355   1.4  riastrad #else
    356   1.1  riastrad 	struct va_format vaf;
    357   1.1  riastrad 	va_list args;
    358   1.1  riastrad 
    359   1.1  riastrad 	if (!drm_debug_enabled(category))
    360   1.1  riastrad 		return;
    361   1.1  riastrad 
    362   1.1  riastrad 	va_start(args, format);
    363   1.1  riastrad 	vaf.fmt = format;
    364   1.1  riastrad 	vaf.va = &args;
    365   1.1  riastrad 
    366   1.1  riastrad 	if (dev)
    367   1.1  riastrad 		dev_printk(KERN_DEBUG, dev, "[" DRM_NAME ":%ps] %pV",
    368   1.1  riastrad 			   __builtin_return_address(0), &vaf);
    369   1.1  riastrad 	else
    370   1.1  riastrad 		printk(KERN_DEBUG "[" DRM_NAME ":%ps] %pV",
    371   1.1  riastrad 		       __builtin_return_address(0), &vaf);
    372   1.1  riastrad 
    373   1.1  riastrad 	va_end(args);
    374   1.4  riastrad #endif
    375   1.1  riastrad }
    376   1.1  riastrad EXPORT_SYMBOL(drm_dev_dbg);
    377   1.1  riastrad 
    378   1.1  riastrad void __drm_dbg(enum drm_debug_category category, const char *format, ...)
    379   1.1  riastrad {
    380   1.4  riastrad #ifdef __NetBSD__
    381   1.9  riastrad 	char symbuf[128];
    382   1.4  riastrad 	va_list va;
    383   1.4  riastrad 
    384   1.8  riastrad 	if (!(__drm_debug & category))
    385   1.4  riastrad 		return;
    386   1.4  riastrad 
    387   1.9  riastrad 	drm_symstr((vaddr_t)__builtin_return_address(0), symbuf, sizeof symbuf);
    388   1.9  riastrad 	printf("[" DRM_NAME ":%s] ", symbuf);
    389   1.9  riastrad 
    390   1.4  riastrad 	va_start(va, format);
    391   1.4  riastrad 	vprintf(format, va);
    392   1.4  riastrad 	va_end(va);
    393   1.4  riastrad #else
    394   1.1  riastrad 	struct va_format vaf;
    395   1.1  riastrad 	va_list args;
    396   1.1  riastrad 
    397   1.1  riastrad 	if (!drm_debug_enabled(category))
    398   1.1  riastrad 		return;
    399   1.1  riastrad 
    400   1.1  riastrad 	va_start(args, format);
    401   1.1  riastrad 	vaf.fmt = format;
    402   1.1  riastrad 	vaf.va = &args;
    403   1.1  riastrad 
    404   1.1  riastrad 	printk(KERN_DEBUG "[" DRM_NAME ":%ps] %pV",
    405   1.1  riastrad 	       __builtin_return_address(0), &vaf);
    406   1.1  riastrad 
    407   1.1  riastrad 	va_end(args);
    408   1.4  riastrad #endif
    409   1.1  riastrad }
    410   1.1  riastrad EXPORT_SYMBOL(__drm_dbg);
    411   1.1  riastrad 
    412   1.1  riastrad void __drm_err(const char *format, ...)
    413   1.1  riastrad {
    414   1.9  riastrad #ifdef __NetBSD__
    415   1.9  riastrad 	char symbuf[128];
    416   1.9  riastrad 	va_list va;
    417   1.9  riastrad 
    418   1.9  riastrad 	drm_symstr((vaddr_t)__builtin_return_address(0), symbuf, sizeof symbuf);
    419   1.9  riastrad 	printf("[" DRM_NAME ":%s] *ERROR* ", symbuf);
    420   1.9  riastrad 
    421   1.9  riastrad 	va_start(va, format);
    422   1.9  riastrad 	vprintf(format, va);
    423   1.9  riastrad 	va_end(va);
    424   1.9  riastrad #else
    425   1.1  riastrad 	struct va_format vaf;
    426   1.1  riastrad 	va_list args;
    427   1.1  riastrad 
    428   1.1  riastrad 	va_start(args, format);
    429   1.1  riastrad 	vaf.fmt = format;
    430   1.1  riastrad 	vaf.va = &args;
    431   1.1  riastrad 
    432   1.1  riastrad 	printk(KERN_ERR "[" DRM_NAME ":%ps] *ERROR* %pV",
    433   1.1  riastrad 	       __builtin_return_address(0), &vaf);
    434   1.1  riastrad 
    435   1.1  riastrad 	va_end(args);
    436   1.9  riastrad #endif
    437   1.1  riastrad }
    438   1.1  riastrad EXPORT_SYMBOL(__drm_err);
    439   1.1  riastrad 
    440   1.5  riastrad #ifndef __NetBSD__
    441   1.1  riastrad /**
    442   1.1  riastrad  * drm_print_regset32 - print the contents of registers to a
    443   1.1  riastrad  * &drm_printer stream.
    444   1.1  riastrad  *
    445   1.1  riastrad  * @p: the &drm printer
    446   1.1  riastrad  * @regset: the list of registers to print.
    447   1.1  riastrad  *
    448   1.1  riastrad  * Often in driver debug, it's useful to be able to either capture the
    449   1.1  riastrad  * contents of registers in the steady state using debugfs or at
    450   1.1  riastrad  * specific points during operation.  This lets the driver have a
    451   1.1  riastrad  * single list of registers for both.
    452   1.1  riastrad  */
    453   1.1  riastrad void drm_print_regset32(struct drm_printer *p, struct debugfs_regset32 *regset)
    454   1.1  riastrad {
    455   1.1  riastrad 	int namelen = 0;
    456   1.1  riastrad 	int i;
    457   1.1  riastrad 
    458   1.1  riastrad 	for (i = 0; i < regset->nregs; i++)
    459   1.1  riastrad 		namelen = max(namelen, (int)strlen(regset->regs[i].name));
    460   1.1  riastrad 
    461   1.1  riastrad 	for (i = 0; i < regset->nregs; i++) {
    462   1.1  riastrad 		drm_printf(p, "%*s = 0x%08x\n",
    463   1.1  riastrad 			   namelen, regset->regs[i].name,
    464   1.1  riastrad 			   readl(regset->base + regset->regs[i].offset));
    465   1.1  riastrad 	}
    466   1.1  riastrad }
    467   1.1  riastrad EXPORT_SYMBOL(drm_print_regset32);
    468   1.5  riastrad #endif
    469