diff options
author | Dave Airlie <airlied@redhat.com> | 2010-12-06 17:57:57 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-01-04 22:44:07 -0500 |
commit | 8d608aa6295242fe4c4b6105b8c59c6a5b232d89 (patch) | |
tree | 89205a1d839b0b002ec58d7988c2bebea7d8efc8 /drivers/gpu/vga/vga_switcheroo.c | |
parent | d1fbd923da0f982f12b61a44e74c2e1f74c6ef56 (diff) |
vga_switcheroo: add reprobe hook for fbcon to recheck connected outputs.
This adds a hook after the mux is switched for the driver to reprobe
the connected outputs.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/vga/vga_switcheroo.c')
-rw-r--r-- | drivers/gpu/vga/vga_switcheroo.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/vga/vga_switcheroo.c b/drivers/gpu/vga/vga_switcheroo.c index 463691a1650e..2b8e1d25e8d0 100644 --- a/drivers/gpu/vga/vga_switcheroo.c +++ b/drivers/gpu/vga/vga_switcheroo.c | |||
@@ -33,6 +33,7 @@ struct vga_switcheroo_client { | |||
33 | struct fb_info *fb_info; | 33 | struct fb_info *fb_info; |
34 | int pwr_state; | 34 | int pwr_state; |
35 | void (*set_gpu_state)(struct pci_dev *pdev, enum vga_switcheroo_state); | 35 | void (*set_gpu_state)(struct pci_dev *pdev, enum vga_switcheroo_state); |
36 | void (*reprobe)(struct pci_dev *pdev); | ||
36 | bool (*can_switch)(struct pci_dev *pdev); | 37 | bool (*can_switch)(struct pci_dev *pdev); |
37 | int id; | 38 | int id; |
38 | bool active; | 39 | bool active; |
@@ -103,6 +104,7 @@ static void vga_switcheroo_enable(void) | |||
103 | 104 | ||
104 | int vga_switcheroo_register_client(struct pci_dev *pdev, | 105 | int vga_switcheroo_register_client(struct pci_dev *pdev, |
105 | void (*set_gpu_state)(struct pci_dev *pdev, enum vga_switcheroo_state), | 106 | void (*set_gpu_state)(struct pci_dev *pdev, enum vga_switcheroo_state), |
107 | void (*reprobe)(struct pci_dev *pdev), | ||
106 | bool (*can_switch)(struct pci_dev *pdev)) | 108 | bool (*can_switch)(struct pci_dev *pdev)) |
107 | { | 109 | { |
108 | int index; | 110 | int index; |
@@ -117,6 +119,7 @@ int vga_switcheroo_register_client(struct pci_dev *pdev, | |||
117 | vgasr_priv.clients[index].pwr_state = VGA_SWITCHEROO_ON; | 119 | vgasr_priv.clients[index].pwr_state = VGA_SWITCHEROO_ON; |
118 | vgasr_priv.clients[index].pdev = pdev; | 120 | vgasr_priv.clients[index].pdev = pdev; |
119 | vgasr_priv.clients[index].set_gpu_state = set_gpu_state; | 121 | vgasr_priv.clients[index].set_gpu_state = set_gpu_state; |
122 | vgasr_priv.clients[index].reprobe = reprobe; | ||
120 | vgasr_priv.clients[index].can_switch = can_switch; | 123 | vgasr_priv.clients[index].can_switch = can_switch; |
121 | vgasr_priv.clients[index].id = -1; | 124 | vgasr_priv.clients[index].id = -1; |
122 | if (pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW) | 125 | if (pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW) |
@@ -251,6 +254,9 @@ static int vga_switchto(struct vga_switcheroo_client *new_client) | |||
251 | if (ret) | 254 | if (ret) |
252 | return ret; | 255 | return ret; |
253 | 256 | ||
257 | if (new_client->reprobe) | ||
258 | new_client->reprobe(new_client->pdev); | ||
259 | |||
254 | if (active->pwr_state == VGA_SWITCHEROO_ON) | 260 | if (active->pwr_state == VGA_SWITCHEROO_ON) |
255 | vga_switchoff(active); | 261 | vga_switchoff(active); |
256 | 262 | ||