cregit-Linux how code gets into the kernel

Release 4.17 drivers/gpu/drm/nouveau/nouveau_vga.c

// SPDX-License-Identifier: GPL-2.0
#include <linux/vgaarb.h>
#include <linux/vga_switcheroo.h>

#include <drm/drmP.h>
#include <drm/drm_crtc_helper.h>
#include <drm/drm_fb_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->client.device.object; if (drm->client.device.info.family == NV_DEVICE_INFO_V0_CURIE && drm->client.device.info.chipset >= 0x4c) nvif_wr32(device, 0x088060, state); else if (drm->client.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

PersonTokensPropCommitsCommitProp
Ben Skeggs10784.92%583.33%
Ilia Mirkin1915.08%116.67%
Total126100.00%6100.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) { pr_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 { pr_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

PersonTokensPropCommitsCommitProp
Ben Skeggs8978.07%125.00%
Dave Airlie2320.18%250.00%
Joe Perches21.75%125.00%
Total114100.00%4100.00%


static void nouveau_switcheroo_reprobe(struct pci_dev *pdev) { struct drm_device *dev = pci_get_drvdata(pdev); drm_fb_helper_output_poll_changed(dev); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs2596.15%150.00%
Noralf Trönnes13.85%150.00%
Total26100.00%2100.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

PersonTokensPropCommitsCommitProp
Ben Skeggs2793.10%150.00%
Daniel Vetter26.90%150.00%
Total29100.00%2100.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 = nouveau_pmops_runtime(); /* only relevant for PCI devices */ if (!dev->pdev) return; vga_client_register(dev->pdev, dev, NULL, nouveau_vga_set_decode); /* don't register Thunderbolt eGPU with vga_switcheroo */ if (pci_is_thunderbolt_attached(dev->pdev)) return; 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

PersonTokensPropCommitsCommitProp
Ben Skeggs4446.32%233.33%
Dave Airlie3132.63%233.33%
Lukas Wunner1111.58%116.67%
Alexandre Courbot99.47%116.67%
Total95100.00%6100.00%


void nouveau_vga_fini(struct nouveau_drm *drm) { struct drm_device *dev = drm->dev; bool runtime = nouveau_pmops_runtime(); /* only relevant for PCI devices */ if (!dev->pdev) return; vga_client_register(dev->pdev, NULL, NULL, NULL); if (pci_is_thunderbolt_attached(dev->pdev)) return; vga_switcheroo_unregister_client(dev->pdev); if (runtime && nouveau_is_v1_dsm() && !nouveau_is_optimus()) vga_switcheroo_fini_domain_pm_ops(drm->dev->dev); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs2833.33%240.00%
Alex Deucher2428.57%120.00%
Lukas Wunner2327.38%120.00%
Mikko Perttunen910.71%120.00%
Total84100.00%5100.00%


void nouveau_vga_lastclose(struct drm_device *dev) { vga_switcheroo_process_delayed_switch(); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs13100.00%1100.00%
Total13100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ben Skeggs37569.70%733.33%
Dave Airlie5410.04%314.29%
Lukas Wunner346.32%14.76%
Alex Deucher244.46%14.76%
Ilia Mirkin193.53%14.76%
Alexandre Courbot91.67%14.76%
Mikko Perttunen91.67%14.76%
Noralf Trönnes40.74%14.76%
Marcin Ślusarz30.56%14.76%
Joe Perches20.37%14.76%
Daniel Vetter20.37%14.76%
Linus Torvalds20.37%14.76%
Greg Kroah-Hartman10.19%14.76%
Total538100.00%21100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.