Merge tag 'topic/drm-misc-2015-10-19' of git://anongit.freedesktop.org/drm-intel into drm-next
More drm-misc for 4.4. - fb refcount fix in atomic fbdev - various locking reworks to reduce drm_global_mutex and dev->struct_mutex - rename docbook to gpu.tmpl and include vga_switcheroo stuff, plus more vga_switcheroo (Lukas Wunner) - viewport check fixes for atomic drivers from Ville - DRM_DEBUG_VBL from Ville - non-contentious header fixes from Mikko Rapeli - small things all over * tag 'topic/drm-misc-2015-10-19' of git://anongit.freedesktop.org/drm-intel: (31 commits) drm/fb-helper: Fix fb refcounting in pan_display_atomic drm/fb-helper: Set plane rotation directly drm: fix mutex leak in drm_dp_get_mst_branch_device drm: Check plane src coordinates correctly during page flip for atomic drivers drm: Check crtc viewport correctly with rotated primary plane on atomic drivers drm: Refactor plane src coordinate checks drm: Swap w/h when converting the mode to src coordidates for a rotated primary plane drm: Don't leak fb when plane crtc coodinates are bad ALSA: hda - Spell vga_switcheroo consistently drm/gem: Use kref_get_unless_zero for the weak mmap references drm/vgem: Drop vgem_drm_gem_mmap drm: Fix return value of drm_framebuffer_init() drm/gem: Use container_of in drm_gem_object_free drm/gem: Check locking in drm_gem_object_unreference drm/gem: Drop struct_mutex requirement from drm_gem_mmap_obj drm/i810_drm.h: include drm/drm.h r128_drm.h: include drm/drm.h savage_drm.h: include <drm/drm.h> gpu/doc: Convert to markdown harder gpu/doc: Add vga_switcheroo documentation ...
此提交包含在:
@@ -153,7 +153,7 @@ struct azx {
|
||||
unsigned int snoop:1;
|
||||
unsigned int align_buffer_size:1;
|
||||
unsigned int region_requested:1;
|
||||
unsigned int disabled:1; /* disabled by VGA-switcher */
|
||||
unsigned int disabled:1; /* disabled by vga_switcheroo */
|
||||
|
||||
#ifdef CONFIG_SND_HDA_DSP_LOADER
|
||||
struct azx_dev saved_azx_dev;
|
||||
|
@@ -337,7 +337,7 @@ enum {
|
||||
AZX_DCAPS_4K_BDLE_BOUNDARY | AZX_DCAPS_SNOOP_OFF)
|
||||
|
||||
/*
|
||||
* VGA-switcher support
|
||||
* vga_switcheroo support
|
||||
*/
|
||||
#ifdef SUPPORT_VGA_SWITCHEROO
|
||||
#define use_vga_switcheroo(chip) ((chip)->use_vga_switcheroo)
|
||||
@@ -1076,12 +1076,12 @@ static void azx_vs_set_state(struct pci_dev *pci,
|
||||
}
|
||||
}
|
||||
} else {
|
||||
dev_info(chip->card->dev, "%s via VGA-switcheroo\n",
|
||||
dev_info(chip->card->dev, "%s via vga_switcheroo\n",
|
||||
disabled ? "Disabling" : "Enabling");
|
||||
if (disabled) {
|
||||
pm_runtime_put_sync_suspend(card->dev);
|
||||
azx_suspend(card->dev);
|
||||
/* when we get suspended by vga switcheroo we end up in D3cold,
|
||||
/* when we get suspended by vga_switcheroo we end up in D3cold,
|
||||
* however we have no ACPI handle, so pci/acpi can't put us there,
|
||||
* put ourselves there */
|
||||
pci->current_state = PCI_D3cold;
|
||||
@@ -1121,7 +1121,7 @@ static void init_vga_switcheroo(struct azx *chip)
|
||||
struct pci_dev *p = get_bound_vga(chip->pci);
|
||||
if (p) {
|
||||
dev_info(chip->card->dev,
|
||||
"Handle VGA-switcheroo audio client\n");
|
||||
"Handle vga_switcheroo audio client\n");
|
||||
hda->use_vga_switcheroo = 1;
|
||||
pci_dev_put(p);
|
||||
}
|
||||
@@ -1232,7 +1232,7 @@ static int azx_dev_free(struct snd_device *device)
|
||||
|
||||
#ifdef SUPPORT_VGA_SWITCHEROO
|
||||
/*
|
||||
* Check of disabled HDMI controller by vga-switcheroo
|
||||
* Check of disabled HDMI controller by vga_switcheroo
|
||||
*/
|
||||
static struct pci_dev *get_bound_vga(struct pci_dev *pci)
|
||||
{
|
||||
@@ -1917,7 +1917,7 @@ static int azx_probe(struct pci_dev *pci,
|
||||
|
||||
err = register_vga_switcheroo(chip);
|
||||
if (err < 0) {
|
||||
dev_err(card->dev, "Error registering VGA-switcheroo client\n");
|
||||
dev_err(card->dev, "Error registering vga_switcheroo client\n");
|
||||
goto out_free;
|
||||
}
|
||||
|
||||
|
@@ -35,7 +35,7 @@ struct hda_intel {
|
||||
unsigned int irq_pending_warned:1;
|
||||
unsigned int probe_continued:1;
|
||||
|
||||
/* VGA-switcheroo setup */
|
||||
/* vga_switcheroo setup */
|
||||
unsigned int use_vga_switcheroo:1;
|
||||
unsigned int vga_switcheroo_registered:1;
|
||||
unsigned int init_failed:1; /* delayed init failed */
|
||||
|
新增問題並參考
封鎖使用者