Displaying 6 results from an estimated 6 matches for "id_device".
Did you mean:
ib_device
2013 Oct 27
3
[PATCH] drm/nouveau/agp: add a quirk list to limit agp modes
...eau_drm *drm, unsigned long mode)
mode &= ~PCI_AGP_COMMAND_FW;
/*
+ * Go through the quirks list and adjust the agpmode accordingly.
+ */
+ while (agpmode == -1 && quirk->hostbridge_vendor) {
+ if (info->id_vendor == quirk->hostbridge_vendor &&
+ info->id_device == quirk->hostbridge_device &&
+ device->pdev->vendor == quirk->chip_vendor &&
+ device->pdev->device == quirk->chip_device) {
+ agpmode = quirk->mode;
+ nv_info(device, "Forcing agp mode to %dX. Use agpmode to override.\n",
+ agpmo...
2013 Oct 28
0
[PATCH] drm/nouveau/agp: add a quirk list to limit agp modes
...mode &= ~PCI_AGP_COMMAND_FW;
>
> /*
> + * Go through the quirks list and adjust the agpmode accordingly.
> + */
> + while (agpmode == -1 && quirk->hostbridge_vendor) {
> + if (info->id_vendor == quirk->hostbridge_vendor &&
> + info->id_device == quirk->hostbridge_device &&
> + device->pdev->vendor == quirk->chip_vendor &&
> + device->pdev->device == quirk->chip_device) {
> + agpmode = quirk->mode;
> + nv_info(device, "Forcing agp mode to %dX. Use agpmode to override....
2020 May 12
1
[PATCH 1/3] drm/radeon: remove AGP support
...tatus & RADEON_AGP_2X_MODE) {
> - default_mode = 2;
> - } else {
> - default_mode = 1;
> - }
> - }
> -
> - /* Apply AGPMode Quirks */
> - while (p && p->chip_device != 0) {
> - if (info.id_vendor == p->hostbridge_vendor &&
> - info.id_device == p->hostbridge_device &&
> - rdev->pdev->vendor == p->chip_vendor &&
> - rdev->pdev->device == p->chip_device &&
> - rdev->pdev->subsystem_vendor == p->subsys_vendor &&
> - rdev->pdev->subsystem_de...
2020 May 11
0
[PATCH 1/3] drm/radeon: remove AGP support
..._MODE) {
- default_mode = 4;
- } else if (agp_status & RADEON_AGP_2X_MODE) {
- default_mode = 2;
- } else {
- default_mode = 1;
- }
- }
-
- /* Apply AGPMode Quirks */
- while (p && p->chip_device != 0) {
- if (info.id_vendor == p->hostbridge_vendor &&
- info.id_device == p->hostbridge_device &&
- rdev->pdev->vendor == p->chip_vendor &&
- rdev->pdev->device == p->chip_device &&
- rdev->pdev->subsystem_vendor == p->subsys_vendor &&
- rdev->pdev->subsystem_device == p->subsys...
2020 May 11
2
[PATCH 1/3] drm/radeon: remove AGP support
...> - default_mode = 1;
> - }
> - }
> -
> - /* Apply AGPMode Quirks */
> - while (p && p->chip_device != 0) {
> - if (info.id_vendor == p->hostbridge_vendor &&
> - info.id_device == p->hostbridge_device &&
> - rdev->pdev->vendor == p->chip_vendor &&
> - rdev->pdev->device == p->chip_device &&
> - rdev->pdev->subsystem_vendor == p->subsys_vendor &&
>...
2020 May 11
10
[RFC] Remove AGP support from Radeon/Nouveau/TTM
Hi guys,
Well let's face it AGP is a total headache to maintain and dead for at least 10+ years.
We have a lot of x86 specific stuff in the architecture independent graphics memory management to get the caching right, abusing the DMA API on multiple occasions, need to distinct between AGP and driver specific page tables etc etc...
So the idea here is to just go ahead and remove the support