Blame view

sound/core/misc.c 4.12 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
  /*
   *  Misc and compatibility things
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
3
   *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
   *
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation; either version 2 of the License, or
   *   (at your option) any later version.
   *
   *   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, write to the Free Software
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   *
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
  #include <linux/init.h>
d81a6d717   Paul Gortmaker   sound: Add export...
22
  #include <linux/export.h>
31623caaf   Paul Gortmaker   sound: add module...
23
  #include <linux/moduleparam.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
  #include <linux/time.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
25
  #include <linux/slab.h>
b1d5776d8   Takashi Iwai   [ALSA] Remove vma...
26
  #include <linux/ioport.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
  #include <sound/core.h>
36ce99c1d   Takashi Iwai   ALSA: Add debug m...
28
29
30
31
32
33
34
35
36
37
38
39
40
  #ifdef CONFIG_SND_DEBUG
  
  #ifdef CONFIG_SND_DEBUG_VERBOSE
  #define DEFAULT_DEBUG_LEVEL	2
  #else
  #define DEFAULT_DEBUG_LEVEL	1
  #endif
  
  static int debug = DEFAULT_DEBUG_LEVEL;
  module_param(debug, int, 0644);
  MODULE_PARM_DESC(debug, "Debug level (0 = disable)");
  
  #endif /* CONFIG_SND_DEBUG */
b1d5776d8   Takashi Iwai   [ALSA] Remove vma...
41
42
43
44
  void release_and_free_resource(struct resource *res)
  {
  	if (res) {
  		release_resource(res);
e38e0cfa4   Takashi Iwai   [ALSA] Remove kma...
45
  		kfree(res);
b1d5776d8   Takashi Iwai   [ALSA] Remove vma...
46
47
  	}
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
48
  EXPORT_SYMBOL(release_and_free_resource);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
  #ifdef CONFIG_SND_VERBOSE_PRINTK
36ce99c1d   Takashi Iwai   ALSA: Add debug m...
50
  /* strip the leading path if the given path is absolute */
1b0053a0f   Takashi Iwai   ALSA: core - stri...
51
  static const char *sanity_file_name(const char *path)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
  {
1b0053a0f   Takashi Iwai   ALSA: core - stri...
53
54
55
56
57
  	if (*path == '/')
  		return strrchr(path, '/') + 1;
  	else
  		return path;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
58
  #endif
36ce99c1d   Takashi Iwai   ALSA: Add debug m...
59
60
61
  #if defined(CONFIG_SND_DEBUG) || defined(CONFIG_SND_VERBOSE_PRINTK)
  void __snd_printk(unsigned int level, const char *path, int line,
  		  const char *format, ...)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
63
  {
  	va_list args;
890ee02ac   Takashi Iwai   ALSA: Use %pV for...
64
  #ifdef CONFIG_SND_VERBOSE_PRINTK
b778b3f25   Joe Perches   sound: use printk...
65
  	int kern_level;
890ee02ac   Takashi Iwai   ALSA: Use %pV for...
66
67
  	struct va_format vaf;
  	char verbose_fmt[] = KERN_DEFAULT "ALSA %s:%d %pV";
0a4824bf8   Petr Mladek   printk/sound: han...
68
  	bool level_found = false;
890ee02ac   Takashi Iwai   ALSA: Use %pV for...
69
  #endif
7913a4996   Jeffrin Jose   ALSA: Fixed a tra...
70
  #ifdef CONFIG_SND_DEBUG
36ce99c1d   Takashi Iwai   ALSA: Add debug m...
71
72
73
  	if (debug < level)
  		return;
  #endif
890ee02ac   Takashi Iwai   ALSA: Use %pV for...
74

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
  	va_start(args, format);
890ee02ac   Takashi Iwai   ALSA: Use %pV for...
76
77
78
  #ifdef CONFIG_SND_VERBOSE_PRINTK
  	vaf.fmt = format;
  	vaf.va = &args;
b778b3f25   Joe Perches   sound: use printk...
79

0a4824bf8   Petr Mladek   printk/sound: han...
80
81
82
83
84
85
86
87
  	while ((kern_level = printk_get_level(vaf.fmt)) != 0) {
  		const char *end_of_header = printk_skip_level(vaf.fmt);
  
  		/* Ignore KERN_CONT. We print filename:line for each piece. */
  		if (kern_level >= '0' && kern_level <= '7') {
  			memcpy(verbose_fmt, vaf.fmt, end_of_header - vaf.fmt);
  			level_found = true;
  		}
b778b3f25   Joe Perches   sound: use printk...
88
  		vaf.fmt = end_of_header;
0a4824bf8   Petr Mladek   printk/sound: han...
89
90
91
  	}
  
  	if (!level_found && level)
b778b3f25   Joe Perches   sound: use printk...
92
  		memcpy(verbose_fmt, KERN_DEBUG, sizeof(KERN_DEBUG) - 1);
b778b3f25   Joe Perches   sound: use printk...
93

0a4824bf8   Petr Mladek   printk/sound: han...
94
  	printk(verbose_fmt, sanity_file_name(path), line, &vaf);
890ee02ac   Takashi Iwai   ALSA: Use %pV for...
95
  #else
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
  	vprintk(format, args);
890ee02ac   Takashi Iwai   ALSA: Use %pV for...
97
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
98
  	va_end(args);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
  }
36ce99c1d   Takashi Iwai   ALSA: Add debug m...
100
  EXPORT_SYMBOL_GPL(__snd_printk);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
  #endif
d9ea472c7   Takashi Iwai   [ALSA] Add PCI qu...
102
103
104
105
  
  #ifdef CONFIG_PCI
  #include <linux/pci.h>
  /**
d1458279b   Takashi Iwai   ALSA: Add snd_pci...
106
107
108
   * snd_pci_quirk_lookup_id - look up a PCI SSID quirk list
   * @vendor: PCI SSV id
   * @device: PCI SSD id
d9ea472c7   Takashi Iwai   [ALSA] Add PCI qu...
109
110
111
112
113
114
115
116
117
   * @list: quirk list, terminated by a null entry
   *
   * Look through the given quirk list and finds a matching entry
   * with the same PCI SSID.  When subdevice is 0, all subdevice
   * values may match.
   *
   * Returns the matched entry pointer, or NULL if nothing matched.
   */
  const struct snd_pci_quirk *
d1458279b   Takashi Iwai   ALSA: Add snd_pci...
118
119
  snd_pci_quirk_lookup_id(u16 vendor, u16 device,
  			const struct snd_pci_quirk *list)
d9ea472c7   Takashi Iwai   [ALSA] Add PCI qu...
120
121
  {
  	const struct snd_pci_quirk *q;
8bd4bb7a3   Takashi Iwai   ALSA: Add subdevi...
122
  	for (q = list; q->subvendor; q++) {
d1458279b   Takashi Iwai   ALSA: Add snd_pci...
123
  		if (q->subvendor != vendor)
8bd4bb7a3   Takashi Iwai   ALSA: Add subdevi...
124
125
  			continue;
  		if (!q->subdevice ||
d1458279b   Takashi Iwai   ALSA: Add snd_pci...
126
  		    (device & q->subdevice_mask) == q->subdevice)
d9ea472c7   Takashi Iwai   [ALSA] Add PCI qu...
127
  			return q;
8bd4bb7a3   Takashi Iwai   ALSA: Add subdevi...
128
  	}
d9ea472c7   Takashi Iwai   [ALSA] Add PCI qu...
129
130
  	return NULL;
  }
d1458279b   Takashi Iwai   ALSA: Add snd_pci...
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
  EXPORT_SYMBOL(snd_pci_quirk_lookup_id);
  
  /**
   * snd_pci_quirk_lookup - look up a PCI SSID quirk list
   * @pci: pci_dev handle
   * @list: quirk list, terminated by a null entry
   *
   * Look through the given quirk list and finds a matching entry
   * with the same PCI SSID.  When subdevice is 0, all subdevice
   * values may match.
   *
   * Returns the matched entry pointer, or NULL if nothing matched.
   */
  const struct snd_pci_quirk *
  snd_pci_quirk_lookup(struct pci_dev *pci, const struct snd_pci_quirk *list)
  {
e5b50ada7   Takashi Iwai   ALSA: Allow pass ...
147
148
  	if (!pci)
  		return NULL;
d1458279b   Takashi Iwai   ALSA: Add snd_pci...
149
150
151
152
  	return snd_pci_quirk_lookup_id(pci->subsystem_vendor,
  				       pci->subsystem_device,
  				       list);
  }
d9ea472c7   Takashi Iwai   [ALSA] Add PCI qu...
153
154
  EXPORT_SYMBOL(snd_pci_quirk_lookup);
  #endif