Release 4.7 drivers/gpu/drm/nouveau/nouveau_vga.c
#include <linux/vgaarb.h>
#include <linux/vga_switcheroo.h>
#include <drm/drmP.h>
#include <drm/drm_crtc_helper.h>
#include "nouveau_drv.h"
#include "nouveau_acpi.h"
#include "nouveau_fbcon.h"
#include "nouveau_vga.h"
static unsigned int
nouveau_vga_set_decode(void *priv, bool state)
{
struct nouveau_drm *drm = nouveau_drm(priv);
struct nvif_object *device = &drm->device.object;
if (drm->device.info.family == NV_DEVICE_INFO_V0_CURIE &&
drm->device.info.chipset >= 0x4c)
nvif_wr32(device, 0x088060, state);
else
if (drm->device.info.chipset >= 0x40)
nvif_wr32(device, 0x088054, state);
else
nvif_wr32(device, 0x001854, state);
if (state)
return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
else
return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ben skeggs | ben skeggs | 99 | 83.90% | 4 | 80.00% |
ilia mirkin | ilia mirkin | 19 | 16.10% | 1 | 20.00% |
| Total | 118 | 100.00% | 5 | 100.00% |
static void
nouveau_switcheroo_set_state(struct pci_dev *pdev,
enum vga_switcheroo_state state)
{
struct drm_device *dev = pci_get_drvdata(pdev);
if ((nouveau_is_optimus() || nouveau_is_v1_dsm()) && state == VGA_SWITCHEROO_OFF)
return;
if (state == VGA_SWITCHEROO_ON) {
printk(KERN_ERR "VGA switcheroo: switched nouveau on\n");
dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
nouveau_pmops_resume(&pdev->dev);
drm_kms_helper_poll_enable(dev);
dev->switch_power_state = DRM_SWITCH_POWER_ON;
} else {
printk(KERN_ERR "VGA switcheroo: switched nouveau off\n");
dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
drm_kms_helper_poll_disable(dev);
nouveau_switcheroo_optimus_dsm();
nouveau_pmops_suspend(&pdev->dev);
dev->switch_power_state = DRM_SWITCH_POWER_OFF;
}
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ben skeggs | ben skeggs | 93 | 80.17% | 1 | 33.33% |
dave airlie | dave airlie | 23 | 19.83% | 2 | 66.67% |
| Total | 116 | 100.00% | 3 | 100.00% |
static void
nouveau_switcheroo_reprobe(struct pci_dev *pdev)
{
struct drm_device *dev = pci_get_drvdata(pdev);
nouveau_fbcon_output_poll_changed(dev);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ben skeggs | ben skeggs | 26 | 100.00% | 1 | 100.00% |
| Total | 26 | 100.00% | 1 | 100.00% |
static bool
nouveau_switcheroo_can_switch(struct pci_dev *pdev)
{
struct drm_device *dev = pci_get_drvdata(pdev);
/*
* FIXME: open_count is protected by drm_global_mutex but that would lead to
* locking inversion with the driver load path. And the access here is
* completely racy anyway. So don't bother with locking for now.
*/
return dev->open_count == 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ben skeggs | ben skeggs | 27 | 93.10% | 1 | 50.00% |
daniel vetter | daniel vetter | 2 | 6.90% | 1 | 50.00% |
| Total | 29 | 100.00% | 2 | 100.00% |
static const struct vga_switcheroo_client_ops
nouveau_switcheroo_ops = {
.set_gpu_state = nouveau_switcheroo_set_state,
.reprobe = nouveau_switcheroo_reprobe,
.can_switch = nouveau_switcheroo_can_switch,
};
void
nouveau_vga_init(struct nouveau_drm *drm)
{
struct drm_device *dev = drm->dev;
bool runtime = false;
/* only relevant for PCI devices */
if (!dev->pdev)
return;
vga_client_register(dev->pdev, dev, NULL, nouveau_vga_set_decode);
if (nouveau_runtime_pm == 1)
runtime = true;
if ((nouveau_runtime_pm == -1) && (nouveau_is_optimus() || nouveau_is_v1_dsm()))
runtime = true;
vga_switcheroo_register_client(dev->pdev, &nouveau_switcheroo_ops, runtime);
if (runtime && nouveau_is_v1_dsm() && !nouveau_is_optimus())
vga_switcheroo_init_domain_pm_ops(drm->dev->dev, &drm->vga_pm_domain);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
dave airlie | dave airlie | 63 | 55.26% | 2 | 50.00% |
ben skeggs | ben skeggs | 42 | 36.84% | 1 | 25.00% |
alexandre courbot | alexandre courbot | 9 | 7.89% | 1 | 25.00% |
| Total | 114 | 100.00% | 4 | 100.00% |
void
nouveau_vga_fini(struct nouveau_drm *drm)
{
struct drm_device *dev = drm->dev;
bool runtime = false;
if (nouveau_runtime_pm == 1)
runtime = true;
if ((nouveau_runtime_pm == -1) && (nouveau_is_optimus() || nouveau_is_v1_dsm()))
runtime = true;
vga_switcheroo_unregister_client(dev->pdev);
if (runtime && nouveau_is_v1_dsm() && !nouveau_is_optimus())
vga_switcheroo_fini_domain_pm_ops(drm->dev->dev);
vga_client_register(dev->pdev, NULL, NULL, NULL);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alex deucher | alex deucher | 56 | 58.95% | 1 | 50.00% |
ben skeggs | ben skeggs | 39 | 41.05% | 1 | 50.00% |
| Total | 95 | 100.00% | 2 | 100.00% |
void
nouveau_vga_lastclose(struct drm_device *dev)
{
vga_switcheroo_process_delayed_switch();
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ben skeggs | ben skeggs | 13 | 100.00% | 1 | 100.00% |
| Total | 13 | 100.00% | 1 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ben skeggs | ben skeggs | 381 | 68.28% | 5 | 35.71% |
dave airlie | dave airlie | 86 | 15.41% | 3 | 21.43% |
alex deucher | alex deucher | 56 | 10.04% | 1 | 7.14% |
ilia mirkin | ilia mirkin | 19 | 3.41% | 1 | 7.14% |
alexandre courbot | alexandre courbot | 9 | 1.61% | 1 | 7.14% |
marcin slusarz | marcin slusarz | 3 | 0.54% | 1 | 7.14% |
linus torvalds | linus torvalds | 2 | 0.36% | 1 | 7.14% |
daniel vetter | daniel vetter | 2 | 0.36% | 1 | 7.14% |
| Total | 558 | 100.00% | 14 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.