commit_title stringlengths 13 124 | commit_body stringlengths 0 1.9k | release_summary stringclasses 52
values | changes_summary stringlengths 1 758 | release_affected_domains stringclasses 33
values | release_affected_drivers stringclasses 51
values | domain_of_changes stringlengths 2 571 | language_set stringclasses 983
values | diffstat_files int64 1 300 | diffstat_insertions int64 0 309k | diffstat_deletions int64 0 168k | commit_diff stringlengths 92 23.4M | category stringclasses 108
values | commit_hash stringlengths 34 40 | related_people stringlengths 0 370 | domain stringclasses 21
values | subdomain stringclasses 241
values | leaf_module stringlengths 0 912 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
drm/amdgpu: rename amdgpu_device_is_px to amdgpu_device_supports_boco (v2) | baco - bus active, chip off boco - bus off, chip off | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use baco for runtime pm power save | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['h', 'c'] | 4 | 12 | 12 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h -bool amdgpu_device_is_px(struct drm_device *dev); +bool amdgpu_device_supports_boco(struct drm_device *dev); diff --git a/drivers/gpu/drm/amd/am... | Graphics | 31af062acfbd5db8b0b99d0ad418b33d4458e206 | alex deucher | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: add additional boco checks to runtime suspend/resume (v2) | baco - bus active, chip off boco - bus off, chip off | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use baco for runtime pm power save | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 26 | 21 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c - drm_dev->switch_power_state = drm_switch_power_changing; + if (amdgpu_device_supports_boco(drm_dev)) + drm_dev->switch_power_st... | Graphics | b97e9d47e549caacea9504822301c34d447c5fcf | alex deucher | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: split swsmu baco_reset into enter and exit | baco - bus active, chip off | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use baco for runtime pm power save | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c', 'h'] | 9 | 51 | 13 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c --- a/drivers/gpu/drm/amd/amdgpu/nv.c +++ b/drivers/gpu/drm/amd/amdgpu/nv.c - ret = smu_baco_reset(smu); + ret = smu_baco_enter(smu); + if (ret) + return ret; + ret = smu_baco_exit(smu); + if (ret) + return ret; diff --git a/drivers/gpu/... | Graphics | 11520f27085bbab7dcb2b5998dec7e7abe3a5bd1 | alex deucher | drivers | gpu | amd, amdgpu, drm, inc, powerplay |
drm/amdgpu: add helpers for baco entry and exit | baco - bus active, chip off | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use baco for runtime pm power save | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['h', 'c'] | 2 | 63 | 0 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h +int amdgpu_device_baco_enter(struct drm_device *dev); +int amdgpu_device_baco_exit(struct drm_device *dev); diff --git a/drivers/gpu/drm/amd/amd... | Graphics | 361dbd01a1de8bdd6bdf9a879ae23a121b8f7266 | alex deucher | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: add baco support to runtime suspend/resume | baco - bus active, chip off | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use baco for runtime pm power save | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 6 | 1 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c - if (amdgpu_device_supports_boco(drm_dev)) { + if (amdgpu_device_supports_boco(drm_dev) || + amdgpu_device_supports_baco(drm_dev... | Graphics | 191343172809aba0047c2eb03249cb704ad65658 | alex deucher | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: start to disentangle boco from runtime pm | baco - bus active, chip off boco - bus off, chip off | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use baco for runtime pm power save | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['h', 'c'] | 3 | 16 | 8 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h + /* enable runtime pm on the device */ + bool runpm; diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_dr... | Graphics | 6ae6c7d404ec3e7595c2c6bee8df211a34da5c64 | alex deucher | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: disentangle runtime pm and vga_switcheroo | originally we only supported runtime pm on px/hg laptops so vga_switcheroo and runtime pm are sort of entangled. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use baco for runtime pm power save | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 14 | 8 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c - bool runtime = false; + bool boco = false; - runtime = true; - if (!pci_is_thunderbolt_attached(adev->pdev)) + boco... | Graphics | 3840c5bcc2456381ca53f3f9604915aa36249faf | alex deucher | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: enable runtime pm on baco capable boards if runpm=1 | baco - bus active, chip off | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use baco for runtime pm power save | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 7 | 4 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c - if ((amdgpu_runtime_pm != 0) && - (flags & amd_is_px)) - adev->runpm = true; - + if (amdgpu_device_supports_boco(dev) && + (amd... | Graphics | 72f058b7237ede2be2d98c70bdabbe7c3e587ae9 | alex deucher | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: enable gfxoff feature for navi10 asic | enable gfxoff feature for some navi10 asics | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | gfxoff on navi10 and raven1 refresh | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 19 | 1 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c --- a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c +static bool gfx_v10_0_navi10_gfxoff_should_enable(struct amdgpu_device *adev) +{ + bool ret = false; + + switch (adev->pdev->revisio... | Graphics | d549991ce5d5194d89eafe16085603b38e7cf989 | kevin wang feifei xu feifei xu amd com | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: enable gfxoff for raven1 refresh | when smu version is larger than 0x41e2b, it will load raven_kicker_rlc.bin.to enable gfxoff for raven_kicker_rlc.bin,it needs to avoid adev->pm.pp_feature &= ~pp_gfxoff_mask when it loads raven_kicker_rlc.bin. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | gfxoff on navi10 and raven1 refresh | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 4 | 11 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c - /* disable gfxoff on original raven. there are combinations - * of sbios and platforms that are not stable. - */ - if (!(adev->rev_id >... | Graphics | aaff8b448d2ab8c0ccc8591c997663c54b074293 | changzhu alex deucher alexander deucher amd com huang rui ray huang amd com | drivers | gpu | amd, amdgpu, drm |
amdgpu: enable initial dcn support on power | dcn requires floating point support to operate. add the appropriate x86/ppc64 guards and fpu / altivec / vsx context switches to dcn. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | dcn support on power | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c', 'kconfig', 'makefile', 'h'] | 8 | 73 | 1 | --- diff --git a/drivers/gpu/drm/amd/display/kconfig b/drivers/gpu/drm/amd/display/kconfig --- a/drivers/gpu/drm/amd/display/kconfig +++ b/drivers/gpu/drm/amd/display/kconfig - select drm_amd_dc_dcn if x86 && !(kcov_instrument_all && kcov_enable_comparisons) + select drm_amd_dc_dcn if (x86 || ppc64) && !(kcov_instrumen... | Graphics | 16a9dea110a67d62401ffeac4828cabdedec7548 | timothy pearson | drivers | gpu | amd, calcs, dc, dcn20, dcn21, display, dml, drm, dsc |
amdgpu: enable kfd on power systems | kfd has been verified to function on power systems (talos ii / vega 64). it should be available as a kernel configuration option on these systems. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | dcn support on power | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['kconfig'] | 1 | 1 | 1 | --- diff --git a/drivers/gpu/drm/amd/amdkfd/kconfig b/drivers/gpu/drm/amd/amdkfd/kconfig --- a/drivers/gpu/drm/amd/amdkfd/kconfig +++ b/drivers/gpu/drm/amd/amdkfd/kconfig - depends on drm_amdgpu && (x86_64 || arm64) + depends on drm_amdgpu && (x86_64 || arm64 || ppc64) | Graphics | 70ebe8a48216ae2fda862cae47ff0b8af5b279b9 | timothy pearson | drivers | gpu | amd, amdkfd, drm |
drm/amd/powerplay: support custom power profile setting | support custom power profile mode settings on arcturus. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | support custom power profile setting | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu ', 'powerplay'] | ['c', 'h'] | 2 | 128 | 10 | --- diff --git a/drivers/gpu/drm/amd/powerplay/arcturus_ppt.c b/drivers/gpu/drm/amd/powerplay/arcturus_ppt.c --- a/drivers/gpu/drm/amd/powerplay/arcturus_ppt.c +++ b/drivers/gpu/drm/amd/powerplay/arcturus_ppt.c + tab_map(activity_monitor_coeff), + smu_table_init(tables, smu_table_activity_monitor_coeff, + sizeof(dpmact... | Graphics | 18d7ab9899d34e6a7f8cb4d17368b7db398323e4 | evan quan alex deucher alexander deucher amd com | drivers | gpu | amd, drm, inc, powerplay |
drm/amdgpu: enable gpu reset by default on navi | has been working fine for a while. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable gpu reset by default on navi | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 3 | 0 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c + case chip_navi10: + case chip_navi14: + case chip_navi12: | Graphics | 658c663947b04b1f8a2fd061a3ef767983c880e5 | alex deucher andrey grodzovsky andrey grodzovsky amd com | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: enable gpu reset by default on renoir | everything is in place. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable gpu reset by default on navi | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 1 | 0 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c + case chip_renoir: | Graphics | 2cb44fb09305e23fe60dbfcccad3f8c4028749f1 | alex deucher andrey grodzovsky andrey grodzovsky amd com | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: refine the security check for ras functions | to avoid calling ras related functions when ras feature isn't supported in hardware. change to check supported features, instead of checking asic type. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable ras feature for the gc of arcturus | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 2 | 2 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c - if (adev->asic_type != chip_vega20) + if (!amdgpu_ras_is_supported(adev, amdgpu_ras_block__gfx)) - if (adev->asic_type != chip_vega20) ... | Graphics | 5e66403e4d709decacf2b53e55deb55d8f6e6982 | dennis li | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: abstract edc counter clear to a separated function | 1. add ip prefix for the ip related codes. 2. refactor the code to clear edc counter. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable ras feature for the gc of arcturus | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c'] | 1 | 77 | 35 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +static void gfx_v9_0_clear_ras_edc_counter(struct amdgpu_device *adev); -static const struct soc15_reg_entry sec_ded_counter_registers[]... | Graphics | 504c5e72d781e48946c32bf427c665ed15d532d0 | dennis li guchun chen guchun chen amd com tao zhou tao zhou amd com hawking zhang hawking zhang amd com | drivers | gpu | amd, amdgpu, drm |
drm/amdgpu: add edc counter registers of gc for arcturus | add reg headers to gc includes | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable ras feature for the gc of arcturus | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['h'] | 2 | 1,012 | 0 | --- diff --git a/drivers/gpu/drm/amd/include/asic_reg/gc/gc_9_4_1_offset.h b/drivers/gpu/drm/amd/include/asic_reg/gc/gc_9_4_1_offset.h --- /dev/null +++ b/drivers/gpu/drm/amd/include/asic_reg/gc/gc_9_4_1_offset.h +/* + * copyright (c) 2020 advanced micro devices, inc. + * + * permission is hereby granted, free of charg... | Graphics | 19cf0dd4b9d2771015fc9d74ec1b0b9203cf8c5a | dennis li | drivers | gpu | amd, asic_reg, drm, gc, include |
drm/amdgpu: add ras support for the gfx block of arcturus | implement functions to do the ras error injection and query edc counter. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable ras feature for the gc of arcturus | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['amdgpu '] | ['c', 'makefile', 'h'] | 4 | 1,039 | 1 | --- diff --git a/drivers/gpu/drm/amd/amdgpu/makefile b/drivers/gpu/drm/amd/amdgpu/makefile --- a/drivers/gpu/drm/amd/amdgpu/makefile +++ b/drivers/gpu/drm/amd/amdgpu/makefile + gfx_v9_4.o \ diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9... | Graphics | 4c461d89db4f8f40509b044b0daf3ac6edf4fbd7 | dennis li guchun chen guchun chen amd com tao zhou tao zhou amd com hawking zhang hawking zhang amd com | drivers | gpu | amd, amdgpu, drm |
drm/i915/bios: pass devdata to parse_ddi_port | allow accessing the parent structure later on. drop const for allowing future modification as well. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 4 | 3 | --- diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c --- a/drivers/gpu/drm/i915/display/intel_bios.c +++ b/drivers/gpu/drm/i915/display/intel_bios.c - const struct child_device_config *child, + struct display_device_data *devdata, + const struct child_device_config *chi... | Graphics | d1dad6f43334f8ea93b76953cef0703f8bf9d42e | jani nikula vandita kulkarni vandita kulkarni intel com | drivers | gpu | display, drm, i915 |
drm/i915/bios: parse compression parameters block | check for child devices that specify compression, and store the device specific compression parameters in the display device data struct for later use. warn if compression is requested but not available. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 2 | 60 | 3 | --- diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c --- a/drivers/gpu/drm/i915/display/intel_bios.c +++ b/drivers/gpu/drm/i915/display/intel_bios.c + struct dsc_compression_parameters_entry *dsc; +static void +parse_compression_parameters(struct drm_i915_private *i915,... | Graphics | 6e0d46e91efd4440e00a1c5380bf9a2f933529b8 | jani nikula | drivers | gpu | display, drm, i915 |
drm/i915/bios: add support for querying dsc details for encoder | add function for retrieving the dsc data for an encoder. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 2 | 104 | 0 | - use crtc_state instead of pipe_config - return true by default from intel_bios_get_dsc_params() - expand the comment about rc_buffer_block_size and rc_buffer_size - make more robust, debug log errors better --- diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c --- a/dr... | Graphics | 1bf2f3bf29a97037e695cc3e8695746fd8d2cde0 | jani nikula | drivers | gpu | display, drm, i915 |
drm/i915/dsc: move dp specific compute params to intel_dp.c | turns out future dsi specific parameters aren't workable with the approach of having the encoder specific functions in intel_vdsc.c. make intel_dsc_compute_params() a helper that does the encoder independent parts, and have encoder code call it. move intel_dsc_dp_compute_params() to intel_dp.c as intel_dp_dsc_compute_p... | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 2 | 47 | 48 | --- diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c --- a/drivers/gpu/drm/i915/display/intel_dp.c +++ b/drivers/gpu/drm/i915/display/intel_dp.c +#define dsc_supported_version_min 1 + +static int intel_dp_dsc_compute_params(struct intel_encoder *encoder, + struct intel_crtc... | Graphics | 7a7b5be96fb66febb50ef001c0e5d20d55c0c34b | jani nikula | drivers | gpu | display, drm, i915 |
drm/i915/dsc: move slice height calculation to encoder | turns out this isn't compatible with dsi, where we use the value from vbt. no functional changes. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 2 | 12 | 11 | --- diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c --- a/drivers/gpu/drm/i915/display/intel_dp.c +++ b/drivers/gpu/drm/i915/display/intel_dp.c + /* + * slice height of 8 works for all currently available panels. so start + * with that if pic_height is an integral multiple... | Graphics | c42c38ec307b6fb81c5cb213a8f082e03ffbe166 | jani nikula vandita kulkarni vandita kulkarni intel com | drivers | gpu | display, drm, i915 |
drm/i915/dsc: add support for computing and writing pps for dsi encoders | add dsi specific computation and transmission to display of pps. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 24 | 1 | --- diff --git a/drivers/gpu/drm/i915/display/intel_vdsc.c b/drivers/gpu/drm/i915/display/intel_vdsc.c --- a/drivers/gpu/drm/i915/display/intel_vdsc.c +++ b/drivers/gpu/drm/i915/display/intel_vdsc.c +#include "intel_dsi.h" +static void intel_dsc_dsi_pps_write(struct intel_encoder *encoder, + const struct intel_crtc_sta... | Graphics | 2d15f3925a4b508b6ad10078bd324da1e95960a7 | jani nikula | drivers | gpu | display, drm, i915 |
drm/i915/dsc: make dsc source support helper generic | move intel_dp_source_supports_dsc() from intel_dp.c as intel_dsc_source_support() in intel_vdsc.c. the dsc source support is more about dsc than about dp, and will be needed for dp independent code. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 3 | 28 | 22 | --- diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c --- a/drivers/gpu/drm/i915/display/intel_dp.c +++ b/drivers/gpu/drm/i915/display/intel_dp.c -static bool intel_dp_source_supports_dsc(struct intel_dp *intel_dp, - const struct intel_crtc_state *pipe_config) -{ - struct dr... | Graphics | deaaff49198d04c197a95bceac95efc8534f6c04 | jani nikula manasi navare manasi d navare intel com | drivers | gpu | display, drm, i915 |
drm/i915/dsc: add basic hardware state readout support | add basic hardware state readout for dsc, and check the most relevant details in the state checker. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 4 | 57 | 0 | - check for dsc power before reading its state - check if source supports dsc at all --- diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c --- a/drivers/gpu/drm/i915/display/intel_ddi.c +++ b/drivers/gpu/drm/i915/display/intel_ddi.c + intel_dsc_get_config(encoder, pipe_con... | Graphics | fbacb15ea814e7badb57ebc4015d6542290d0ff8 | jani nikula | drivers | gpu | display, drm, i915 |
drm/i915/dsi: set pipe_bpp on icl configure config | the icl dsi pipe_bpp currently comes from compute_baseline_pipe_bpp(). fix it. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 5 | 0 | --- diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c --- a/drivers/gpu/drm/i915/display/icl_dsi.c +++ b/drivers/gpu/drm/i915/display/icl_dsi.c + if (intel_dsi->pixel_format == mipi_dsi_fmt_rgb888) + pipe_config->pipe_bpp = 24; + else + pipe_config->pipe_bpp = 18; + | Graphics | 50003bf50d32f3ff8ead40d6d68ee5e91a693e20 | jani nikula vandita kulkarni vandita kulkarni intel com | drivers | gpu | display, drm, i915 |
drm/i915/dsi: abstract afe_clk calculation | we'll make more use of it in the future. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 13 | 5 | --- diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c --- a/drivers/gpu/drm/i915/display/icl_dsi.c +++ b/drivers/gpu/drm/i915/display/icl_dsi.c +/* aka dsi 8x clock */ +static int afe_clk(struct intel_encoder *encoder) +{ + struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encod... | Graphics | 54ed6902cabc58ae58643b7d06cafa4ed5540e6d | jani nikula vandita kulkarni vandita kulkarni intel com | drivers | gpu | display, drm, i915 |
drm/i915/dsi: use afe_clk() instead of intel_dsi_bitrate() | we'll be expanding afe_clk() to take dsc into account. switch to using it where dsc matters. which is really everywhere that intel_dsi_bitrate() is currently used in icl dsi code. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 4 | 4 | --- diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c --- a/drivers/gpu/drm/i915/display/icl_dsi.c +++ b/drivers/gpu/drm/i915/display/icl_dsi.c - if (intel_dsi_bitrate(intel_dsi) <= 800000) { + if (afe_clk(encoder) <= 800000) { - if (intel_dsi_bitrate(intel_dsi) >= 1500 * 1000... | Graphics | adf1bd3dfbaedf7100b542b92fb085f89222a349 | jani nikula | drivers | gpu | display, drm, i915 |
drm/i915/dsi: take compression into account in afe_clk() | pass crtc_state to afe_clk() to be able to take compression into account in the computation. once we enable compression, that is. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 24 | 16 | --- diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c --- a/drivers/gpu/drm/i915/display/icl_dsi.c +++ b/drivers/gpu/drm/i915/display/icl_dsi.c -static int afe_clk(struct intel_encoder *encoder) +static int afe_clk(struct intel_encoder *encoder, + const struct intel_crtc_state... | Graphics | 0486513935ef95a3ce429323cac8148d58057913 | jani nikula vandita kulkarni vandita kulkarni intel com | drivers | gpu | display, drm, i915 |
drm/i915/dsi: use compressed pixel format with dsc | when compression is enabled, configure the dsi transcoder to use compressed format. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 20 | 16 | --- diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c --- a/drivers/gpu/drm/i915/display/icl_dsi.c +++ b/drivers/gpu/drm/i915/display/icl_dsi.c - switch (intel_dsi->pixel_format) { - default: - missing_case(intel_dsi->pixel_format); - /* fallthrough */ - case mipi_dsi_fmt_rgb5... | Graphics | 38b898810ae92b2e78b47f513fe66bdd5687ed54 | jani nikula vandita kulkarni vandita kulkarni intel com vandita kulkarni vandita kulkarni intel com | drivers | gpu | display, drm, i915 |
drm/i915/dsi: account for dsc in horizontal timings | when dsc is enabled, we need to adjust the horizontal timings to account for the compressed (and therefore reduced) link speed. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 19 | 5 | --- diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c --- a/drivers/gpu/drm/i915/display/icl_dsi.c +++ b/drivers/gpu/drm/i915/display/icl_dsi.c - const struct intel_crtc_state *pipe_config) + const struct intel_crtc_state *crtc_state) - &pipe_config->hw.adjusted_mode; + &crtc_... | Graphics | 53693f02d80e0a909e76c2a25f8aac8515f959db | jani nikula | drivers | gpu | display, drm, i915 |
drm/i915/dsi: fix state mismatch warns for horizontal timings with dsc | when dsc is enabled consider the compression ratio that was used during horizontal timing calculations. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 12 | 0 | - rebase on top of the more generic dsc state readout --- diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c --- a/drivers/gpu/drm/i915/display/icl_dsi.c +++ b/drivers/gpu/drm/i915/display/icl_dsi.c + if (pipe_config->dsc.compressed_bpp) { + int div = pipe_config->dsc.compresse... | Graphics | c2bb35e99f4b426efdd28011655bd67ca86749b5 | vandita kulkarni | drivers | gpu | display, drm, i915 |
drm/i915/dsi: add support for dsc | enable dsc for dsi, if specified in vbt. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | enable dsc | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 66 | 3 | - add dsc get config call - convert_rgb = true (vandita) - ignore max cdclock check (vandita) - rename pipe_config to crtc_state - take compressed bpp into account - nuke conn_state->max_requested_bpc, it's not used on dsi --- diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c ... | Graphics | 2b68392e638dfa5cf4f7b558f62e3ea4def2e605 | jani nikula | drivers | gpu | display, drm, i915 |
drm/i915: coffeelake supports hdcp2.2 | this includes other platforms that utilize the same gen graphics as cfl: aml, whl and cml. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | hdcp 2.2 for cfl | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 1 | 1 | --- diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c --- a/drivers/gpu/drm/i915/display/intel_hdcp.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c - is_kabylake(dev_priv)); + is_kabylake(dev_priv) || is_coffeelake(dev_priv)); | Graphics | 6025ba1204713a3d9667cc1a278ed180c5aa367c | juston li ramalingam c ramalingam c intel com | drivers | gpu | display, drm, i915 |
drm/i915/lmem: debugfs for lmem details | debugfs i915_gem_object is extended to enable the igts to detect the lmem's availability and the total size of lmem. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | lmem debugfs support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 6 | 36 | 2 | --- diff --git a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c --- a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c + intel_memory_region_set_name(mem, "system"); + diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c b/drivers/gpu/dr... | Graphics | 38f1cb68582cee59c819864affeb70752eda3f04 | lukasz fiedorowicz | drivers | gpu | drm, gem, i915 |
drm/i915/gem: support discontiguous lmem object maps | create a vmap for discontinguous lmem objects to support i915_gem_object_pin_map(). | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | lmem discontiguous object maps | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 5 | 78 | 123 | --- diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c --- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c -/* xxx: time to vfunc your life up? */ -void __iomem * -i915_gem_object_lmem_io_map_page(struct drm_i915_gem_object *obj, - ... | Graphics | 6056e50033d9f840bc1e35cac794b13144710a25 | chris wilson | drivers | gpu | drm, gem, i915, selftests |
drm/i915: create dumb buffer from lmem | when lmem is supported, dumb buffer preferred to be created from lmem. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | use lmem for dumb buffers if possible | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 22 | 7 | --- diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c +#include "gem/i915_gem_region.h" - struct drm_i915_private *dev_priv, + struct intel_memory_region *mr, - size = round_up(*size_p, page_size); + gem_bug_on(!is_... | Graphics | 05e8a5f51eb5863d8c316c68091500511770bff7 | ramalingam c | drivers | gpu | drm, i915 |
drm/i915/gem: extend mmap support for lmem | local memory objects are similar to our usual scatterlist, but instead of using the struct page stored therein, we need to use the sg->dma_address. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add lmem mmap support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 3 | 39 | 22 | --- diff --git a/drivers/gpu/drm/i915/gem/i915_gem_mman.c b/drivers/gpu/drm/i915/gem/i915_gem_mman.c --- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c + case -enxio: /* unable to access backing store (on device) */ + resource_size_t iomap; - if (unlikely(!i915_gem_object_has_... | Graphics | 4e598fad226be0d044d318b6c49cec2ec2b72be3 | abdiel janulgue chris wilson chris chris wilson co uk | drivers | gpu | drm, gem, i915 |
drm/i915/tgl: add second tgl pch id | another tgp id has shown up, so let's add it to avoid south display breakage on systems that have this id. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add second tgl pch id | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 2 | 2 | 0 | --- diff --git a/drivers/gpu/drm/i915/intel_pch.c b/drivers/gpu/drm/i915/intel_pch.c --- a/drivers/gpu/drm/i915/intel_pch.c +++ b/drivers/gpu/drm/i915/intel_pch.c + case intel_pch_tgp2_device_id_type: diff --git a/drivers/gpu/drm/i915/intel_pch.h b/drivers/gpu/drm/i915/intel_pch.h --- a/drivers/gpu/drm/i915/intel_pch.h... | Graphics | 6cf6e590ea2e45db1fcf3ef006d5adbd7f7c06ab | james ausmus jos roberto de souza jose souza intel com | drivers | gpu | drm, i915 |
drm/i915: add 10bpc formats with alpha for icl+ | icl+ again supports alpha blending with 10bpc pixel formats. expose them. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add 10bpc formats with alpha for icl+ | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 2 | 25 | 4 | --- diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c - if (rgb_order) - return drm_format_xbgr2101010; - else - return drm_format_xrgb2101010; + if (rgb_order) { ... | Graphics | f9c43a313f5128a977a5f699a805c155990671fc | ville syrj l | drivers | gpu | display, drm, i915 |
drm/i915: add new ehl/jsl pci ids | adding the recently added ehl/jsl pci ids. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add new ehl/jsl pci ids | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['h'] | 1 | 5 | 2 | --- diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h --- a/include/drm/i915_pciids.h +++ b/include/drm/i915_pciids.h -/* ehl */ +/* ehl/jsl */ - intel_vga_device(0x4541, info) + intel_vga_device(0x4541, info), \ + intel_vga_device(0x4e71, info), \ + intel_vga_device(0x4e61, info), \ + intel_vga_device... | Graphics | 651cc835d5f6855e8bca6d5d3587234d74e82864 | jos roberto de souza matt roper matthew d roper intel com | include | drm | |
drm/i915: expose 10:10:10 xrgb formats on snb-bdw sprites | snb-bdw support 10:10:10 formats on the sprite planes. let's expose them. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | expose more formats | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 16 | 0 | --- diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c --- a/drivers/gpu/drm/i915/display/intel_sprite.c +++ b/drivers/gpu/drm/i915/display/intel_sprite.c + case drm_format_xbgr2101010: + sprctl |= sprite_format_rgbx101010 | sprite_rgb_order_rgbx; + break; + case drm_... | Graphics | ffe0fd2404f794ad24f8a68b6778036a7f4309c1 | ville syrj l | drivers | gpu | display, drm, i915 |
drm/i915: expose alpha formats on vlv/chv primary planes | currently we expose vlv/chv alpha blending only on the sprite planes, but the primary planes can do it as well. let's flip it on. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | expose more formats | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 2 | 60 | 3 | --- diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c +/* primary plane formats for vlv/chv */ +static const u32 vlv_primary_formats[] = { + drm_format_c8, + drm_f... | Graphics | 73263cb6e2fe77681e872f94999458db27d8d7bc | ville syrj l | drivers | gpu | display, drm, i915 |
drm/i915: add missing 10bpc formats for pipe b sprites on chv | chv pipe b sprites gained support for the 10bpc x/argb pixel formats. on vlv and chv pipe a/c these are only supported by the primary plane. add the require bits to expose the new formats. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | expose more formats | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 2 | 39 | 8 | --- diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c --- a/drivers/gpu/drm/i915/display/intel_sprite.c +++ b/drivers/gpu/drm/i915/display/intel_sprite.c + case drm_format_xrgb2101010: + sprctl |= sp_format_bgrx1010102; + break; + case drm_format_argb2101010: + sprct... | Graphics | d8aa1a487b3201a1586739d3e8a1aeceaf9111f7 | ville syrj l | drivers | gpu | display, drm, i915 |
drm/i915: expose c8 on vlv/chv sprite planes | vlv/chv sprite planes also support the c8 format. let's expose that. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | expose more formats | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 2 | 7 | 0 | --- diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c --- a/drivers/gpu/drm/i915/display/intel_sprite.c +++ b/drivers/gpu/drm/i915/display/intel_sprite.c + case drm_format_c8: + sprctl |= sp_format_8bpp; + break; + drm_format_c8, + drm_format_c8, + case drm_format_c8... | Graphics | ed94034f3d6dc8c9fa1dae59f6058bbd06a97034 | ville syrj l uma shankar uma shankar intel com | drivers | gpu | display, drm, i915 |
drm/i915: sort format arrays consistently | let's try to keep the pixel format arrays somewhat sorted: 1. rgb before yuv 2. smaller bpp before larger bpp 3. x before a 4. rgb before bgr | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | expose more formats | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 2 | 4 | 4 | --- diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c - drm_format_rgb565, + drm_format_rgb565, diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/... | Graphics | 12fef149d755e33230108b923fcb6216a8e1e2de | ville syrj l juha pekka heikkila juhapekka heikkila gmail com uma shankar uma shankar intel com | drivers | gpu | display, drm, i915 |
drm/i915: eliminate redundancy in intel_primary_plane_create() | lots of redundant assignments inside intel_primary_plane_create(). get rid of them. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | expose more formats | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c'] | 1 | 22 | 38 | --- diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c - const u64 *modifiers; - modifiers = i9xx_format_modifiers; - - plane->max_stride = i9xx_plane_max_stride; -... | Graphics | dbb1a6fbbb809fe364f51293026616c58916f330 | ville syrj l | drivers | gpu | display, drm, i915 |
drm/i915: introduce drm_i915_gem_mmap_offset | this is really just an alias of mmap_gtt. the 'mmap offset' nomenclature comes from the value returned by this ioctl which is the offset into the device fd which userpace uses with mmap(2). | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | introduce | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['intel '] | ['c', 'h'] | 18 | 574 | 142 | --- diff --git a/drivers/gpu/drm/i915/gem/i915_gem_domain.c b/drivers/gpu/drm/i915/gem/i915_gem_domain.c --- a/drivers/gpu/drm/i915/gem/i915_gem_domain.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_domain.c +#include "i915_gem_mman.h" diff --git a/drivers/gpu/drm/i915/gem/i915_gem_ioctls.h b/drivers/gpu/drm/i915/gem/i915_g... | Graphics | cc662126b4134e25fcfb6cad480de0fa95a4d3d8 | abdiel janulgue | include | uapi | drm, gem, gt, i915, selftests |
drm/panel: simple: add logic pd type 28 display support | previously, there was an omap panel-dpi driver that would read generic timings from the device tree and set the display timing accordingly. this driver was removed so the screen no longer functions. this patch modifies the panel-simple file to setup the timings to the same values previously used. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | logic pd type 28 panel support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['c'] | 1 | 37 | 0 | --- diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c +static const struct drm_display_mode logicpd_type_28_mode = { + .clock = 9000, + .hdisplay = 480, + .hsync_start = 480 + 3, + .hsync_end = 4... | Graphics | 0d35408afbeb603bc9972ae91e4dd2638bcffe52 | adam ford | drivers | gpu | drm, panel |
gpu/drm: ingenic: add support for the jz4770 | the lcd controller in the jz4770 supports up to 720p. while there has been many new features added since the old jz4740, which are not yet handled here, this driver still works fine. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add support for the jz4770 | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel ', 'ingenic'] | ['c'] | 1 | 7 | 0 | --- diff --git a/drivers/gpu/drm/ingenic/ingenic-drm.c b/drivers/gpu/drm/ingenic/ingenic-drm.c --- a/drivers/gpu/drm/ingenic/ingenic-drm.c +++ b/drivers/gpu/drm/ingenic/ingenic-drm.c +static const struct jz_soc_info jz4770_soc_info = { + .needs_dev_clk = false, + .max_width = 1280, + .max_height = 720, +}; + + { .compa... | Graphics | d4e6a62d3769ef09bfe116b261a61ef871dea4f9 | paul cercueil | drivers | gpu | drm, ingenic |
drm/panel: add driver for sony acx424akp panel | the sony acx424akp is a command/videomode dsi panel for mobile devices. it is used on the st-ericsson href520 reference design. we support video mode by default, but it is possible to switch the panel into command mode by using the bool property "dsi-command-mode". | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add driver for sony acx424akp panel | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['c', 'kconfig', 'makefile', 'maintainers'] | 4 | 568 | 0 | --- diff --git a/maintainers b/maintainers --- a/maintainers +++ b/maintainers +drm driver for sony acx424akp panels +m: linus walleij <linus.walleij@linaro.org> +t: git git://anongit.freedesktop.org/drm/drm-misc +s: maintained +f: drivers/gpu/drm/panel/panel-sony-acx424akp.c + diff --git a/drivers/gpu/drm/panel/kconfi... | Graphics | 8152c2bfd780398773435bf6eb1e3841f83de209 | linus walleij | drivers | gpu | drm, panel |
drm/panel: add panel driver for leadtek ltk500hd1829 | the ltk500hd1829 is 5.5" dsi display. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add panel driver for leadtek ltk500hd1829 | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['c', 'kconfig', 'makefile'] | 3 | 543 | 0 | - fix some trivial checkpatch warnings while applying (sam) - drop error message if backlight not found, no other panel - drop one more overlooked panel->drm access --- diff --git a/drivers/gpu/drm/panel/kconfig b/drivers/gpu/drm/panel/kconfig --- a/drivers/gpu/drm/panel/kconfig +++ b/drivers/gpu/drm/panel/kconfig +con... | Graphics | e98910bee6097b7c0f7beb76ab1d70ee52931d40 | heiko stuebner | drivers | gpu | drm, panel |
drm/panel: add panel driver for xinpeng xpp055c272 panels | base on the somewhat similar rocktech driver but adapted for panel-specific init of the xpp055c272. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | xinpeng xpp055c272 | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['c', 'kconfig', 'makefile'] | 3 | 409 | 0 | - drop error message when backlight not found, no other panel - remove wrong negative sync flags from display-mode to fix a display - move to drm-panel-internal backlight handling (sam) - adapt to changes that happened to drm_panel structs+functions (sam) - sort includes (sam) - drop unnecessary drv_name constant (sam)... | Graphics | d1479d028af2e7e7b7a7ebb393a7e88763cd4587 | heiko stuebner | drivers | gpu | drm, panel |
drm/panel: add support for auo b116xak01 panel | signed-off-by: rob clark <robdclark@chromium.org> signed-off-by: sam ravnborg <sam@ravnborg.org> link: https://patchwork.freedesktop.org/patch/msgid/20200108235356.918189-2-robdclark@gmail.com | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add support for auo b116xak01 panel | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['c'] | 1 | 32 | 0 | --- diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c +static const struct drm_display_mode auo_b116xak01_mode = { + .clock = 69300, + .hdisplay = 1366, + .hsync_start = 1366 + 48, + .hsync_end =... | Graphics | da458286a5e288ad18500f89ae28cbbc7512b3e1 | rob clark | drivers | gpu | drm, panel |
drm/panel: add support for boe nv140fhm-n49 panel to panel-simple | this patch adds support for the boe nv140fhm-n49 panel to the panel-simple driver. the panel is used by the pine64 pinebook pro. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add support for boe nv140fhm-n49 panel to panel-simple | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['c'] | 1 | 35 | 0 | --- diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c +static const struct drm_display_mode boe_nv140fhmn49_modes[] = { + { + .clock = 148500, + .hdisplay = 1920, + .hsync_start = 1920 + 48, + .h... | Graphics | a511981847ce8bb8d189f218fc4daa6c137abfc0 | tobias schramm | drivers | gpu | drm, panel |
drm/panel: simple: add satoz sat050at40h12r2 panel support | add support for the satoz sat050at40h12r2 panel. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add satoz sat050at40h12r2 panel support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel ', 'simple'] | ['c'] | 1 | 27 | 0 | --- diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c +static const struct display_timing satoz_sat050at40h12r2_timing = { + .pixelclock = {33300000, 33300000, 50000000}, + .hactive = {800, 800, ... | Graphics | 44c58c520ffc4b1f75241e5029c5ae6b223d0623 | miquel raynal | drivers | gpu | drm, panel |
dt-bindings: panel-simple: add compatible for giantplus gpm940b0 | add a compatible string for the giantplus gpm740b0 3" qvga tft lcd panel, and remove the old giantplus,gpm740b0.txt documentation which is now obsolete. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add compatible for giantplus gpm940b0 | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel ', 'simple'] | ['yaml', 'txt'] | 2 | 2 | 12 | --- diff --git a/documentation/devicetree/bindings/display/panel/giantplus,gpm940b0.txt b/documentation/devicetree/bindings/display/panel/giantplus,gpm940b0.txt --- a/documentation/devicetree/bindings/display/panel/giantplus,gpm940b0.txt +++ /dev/null -giantplus 3.0" (320x240 pixels) 24-bit tft lcd panel - -required pr... | Graphics | 2ae4829d222e9ad066b1bcbdabefc3e5d039d46c | paul cercueil | documentation | devicetree | bindings, display, panel |
dt-bindings: panel-simple: add compatible for sharp ls020b1dd01d | add a compatible string for the sharp ls020b1dd01d 2" hqvga tft lcd panel, and remove the old sharp,ls020b1dd01d.txt documentation which is now obsolete. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | sharp ls020b1dd01d panels | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['yaml', 'txt'] | 2 | 2 | 12 | --- diff --git a/documentation/devicetree/bindings/display/panel/panel-simple.yaml b/documentation/devicetree/bindings/display/panel/panel-simple.yaml --- a/documentation/devicetree/bindings/display/panel/panel-simple.yaml +++ b/documentation/devicetree/bindings/display/panel/panel-simple.yaml - auo,b116xa01 - giantplu... | Graphics | 240a25720925b5033a27863fb051a2c384a4dd64 | paul cercueil | documentation | devicetree | bindings, display, panel |
drm/panel: add boe himax8279d mipi-dsi lcd panel | support boe himax8279d 8.0" 1200x1920 tft lcd panel, it is a mipi dsi panel. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add boe himax8279d mipi-dsi lcd panel | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['c', 'kconfig', 'makefile', 'maintainers'] | 4 | 996 | 0 | - use the backlight support in drm_panel to simplify the driver (sam) - adjust init code, make the format more concise (emil) - kill off default_off_cmds (emil) - use mipi_dsi_dcs_set_display_{on,off} in their enable/disable - adjusting the delay function (emil) - modify parenthesis_alignment format (sam) - use gpios a... | Graphics | 4b6dd3cae3cb53a2c45e5238d7c1af7c39cd4685 | jerry han | drivers | gpu | drm, panel |
drm/panel: add backlight support | panels often support backlight as specified in a device tree. update the drm_panel infrastructure to support this to simplify the drivers. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add backlight support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['panel '] | ['c', 'h'] | 2 | 85 | 2 | - improve comments, fix grammar (laurent) - do not fail in drm_panel_of_backlight() if no dt support (laurent) - log if backlight_(enable|disable) fails (laurent) - improve drm_panel_of_backlight() docs - updated changelog with backlight analysis (triggered by laurent) - drop test of config_drm_panel in header-file (la... | Graphics | 152dbdeab1b2571c107357a7bd59f5cd5be52e30 | sam ravnborg | include | drm | drm |
drm/nouveau/acr/tu10x: initial support | signed-off-by: ben skeggs <bskeggs@redhat.com> | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | tu10x graphics engine support (tu11x pending) | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['nouveau '] | ['h', 'kbuild', 'c'] | 6 | 229 | 0 | --- diff --git a/drivers/gpu/drm/nouveau/include/nvkm/subdev/acr.h b/drivers/gpu/drm/nouveau/include/nvkm/subdev/acr.h --- a/drivers/gpu/drm/nouveau/include/nvkm/subdev/acr.h +++ b/drivers/gpu/drm/nouveau/include/nvkm/subdev/acr.h +int tu102_acr_new(struct nvkm_device *, int, struct nvkm_acr **); diff --git a/drivers/g... | Graphics | 3fa8fe1572bc708596318280a22669dfc9eaf805 | ben skeggs | drivers | gpu | acr, device, drm, engine, fb, include, nouveau, nvkm, subdev |
drm/nouveau/acr/tu11x: initial support | signed-off-by: ben skeggs <bskeggs@redhat.com> | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | tu10x graphics engine support (tu11x pending) | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['nouveau '] | ['c'] | 3 | 18 | 0 | --- diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c --- a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c + .acr = tu102_acr_new, + .acr = tu102_acr_new, diff --git a/drivers/gpu/drm/nouveau/nvkm... | Graphics | 072663f86d62571fe540d9e1d24eb873a1b1182f | ben skeggs | drivers | gpu | acr, device, drm, engine, fb, nouveau, nvkm, subdev |
drm/nouveau/gr/tu10x: initial support | signed-off-by: ben skeggs <bskeggs@redhat.com> | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | tu10x graphics engine support (tu11x pending) | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['nouveau '] | ['h', 'kbuild', 'c'] | 12 | 313 | 11 | --- diff --git a/drivers/gpu/drm/nouveau/include/nvif/class.h b/drivers/gpu/drm/nouveau/include/nvif/class.h --- a/drivers/gpu/drm/nouveau/include/nvif/class.h +++ b/drivers/gpu/drm/nouveau/include/nvif/class.h +#define turing_a /* cl9097.h */ 0x0000c597 + +#define turing_compute_a 0x0000c5c0 diff --git a/drivers/gpu/d... | Graphics | afa3b96b058d87c2c44d1c83dadb2ba6998d03ce | ben skeggs | drivers | gpu | device, drm, engine, gr, include, nouveau, nvif, nvkm |
drm/nouveau/gr/tu11x: initial support | signed-off-by: ben skeggs <bskeggs@redhat.com> | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | tu10x graphics engine support (tu11x pending) | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['nouveau '] | ['c'] | 2 | 28 | 0 | --- diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c --- a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c + .gr = tu102_gr_new, + .gr = tu102_gr_new, diff --git a/drivers/gpu/drm/nouveau/nvkm/eng... | Graphics | b99ef12b80cfe48a14e7918c2f799c37d2195aca | ben skeggs | drivers | gpu | device, drm, engine, gr, nouveau, nvkm |
drm/rockchip: dsi: add px30 support | add the compatible and grf definitions for the px30 soc. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | dsi/px30 support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rockchip '] | ['c'] | 1 | 27 | 0 | - rebased on top of 5.5-rc1 - merged with dsi timing change to prevent ordering conflicts --- diff --git a/drivers/gpu/drm/rockchip/dw-mipi-dsi-rockchip.c b/drivers/gpu/drm/rockchip/dw-mipi-dsi-rockchip.c --- a/drivers/gpu/drm/rockchip/dw-mipi-dsi-rockchip.c +++ b/drivers/gpu/drm/rockchip/dw-mipi-dsi-rockchip.c +#defin... | Graphics | 49a37dc393d774b7f7b8ba3944b75c7f8673b43a | heiko stuebner | drivers | gpu | drm, rockchip |
drm/rockchip: lvds: add px30 support | introduce px30 lvds support. this means adding the relevant helper functions, a specific probe and also the initialization of a specific phy. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | dsi/px30 support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rockchip '] | ['c', 'h'] | 2 | 157 | 0 | --- diff --git a/drivers/gpu/drm/rockchip/rockchip_lvds.c b/drivers/gpu/drm/rockchip/rockchip_lvds.c --- a/drivers/gpu/drm/rockchip/rockchip_lvds.c +++ b/drivers/gpu/drm/rockchip/rockchip_lvds.c +#include <linux/phy/phy.h> + struct phy *dphy; +static int px30_lvds_poweron(struct rockchip_lvds *lvds) +{ + int ret; + + r... | Graphics | cca1705c3d895fcb67892fc8710005afd6d38541 | miquel raynal | drivers | gpu | drm, rockchip |
drm/virtio: use damage info for display updates. | v2: remove shift by src_{x,y}, drm_atomic_helper_damage_merged() handles that for us (chia-i wu). | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | fb damage support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['virtio-gpu '] | ['c'] | 1 | 24 | 17 | --- diff --git a/drivers/gpu/drm/virtio/virtgpu_plane.c b/drivers/gpu/drm/virtio/virtgpu_plane.c --- a/drivers/gpu/drm/virtio/virtgpu_plane.c +++ b/drivers/gpu/drm/virtio/virtgpu_plane.c +#include <drm/drm_damage_helper.h> - struct virtio_gpu_object *bo, - struct drm_plane_state *state) + struct drm_plane_state *state,... | Graphics | c096761718de0a6ac3205d80b12292c943235c4b | gerd hoffmann chia i wu olvaffe gmail com | drivers | gpu | drm, virtio |
dt-bindings: msm:disp: add sc7180 dpu variant | add a compatible string to support sc7180 dpu version. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add support for sc7180 display | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['txt'] | 1 | 2 | 2 | --- diff --git a/documentation/devicetree/bindings/display/msm/dpu.txt b/documentation/devicetree/bindings/display/msm/dpu.txt --- a/documentation/devicetree/bindings/display/msm/dpu.txt +++ b/documentation/devicetree/bindings/display/msm/dpu.txt -- compatible: "qcom,sdm845-mdss" +- compatible: "qcom,sdm845-mdss", "qco... | Graphics | 854f94226a91010e81e09d79ba7ea253e64e6091 | kalyan thota rob herring robh kernel org | documentation | devicetree | bindings, display, msm |
msm:disp:dpu1: add support for display for sc7180 target | add display hw catalog changes for sc7180 target. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add support for sc7180 display | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c', 'h'] | 5 | 188 | 13 | - configure register offsets and capabilities for the - mdss_irq data type has changed in the dependent - add co-developed-by tags in the commit msg (stephen boyd). - fix kernel checkpatch errors in v2 - move documentation into seperate patch (rob herring). --- diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.... | Graphics | 7bdc0c4b812602fb5678dcc477fe03679721e892 | kalyan thota | drivers | gpu | disp, dpu1, drm, msm |
msm:disp:dpu1: setup display datapath for sc7180 target | add changes to setup display datapath on sc7180 target. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add support for sc7180 display | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c', 'h'] | 6 | 159 | 5 | - add changes to support ctl_active on sc7180 target. - while selecting the number of mixers in the topology - spawn topology mixer selection into separate patch (rob clark). - add co-developed-by tags in the commit msg (stephen boyd). - fix kernel checkpatch errors in v2. --- diff --git a/drivers/gpu/drm/msm/disp/dpu1... | Graphics | 73bfb790ac786ca55fa2786a06f59402a72b4163 | kalyan thota | drivers | gpu | disp, dpu1, drm, msm |
msm:disp:dpu1: add mixer selection for display topology | mixer selection in the display topology is based on multiple factors 1) mixers available in the hw 2) interfaces to be enabled 3) merge capability | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add support for sc7180 display | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c', 'h'] | 3 | 21 | 3 | --- diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c -#define max_vdisplay_split 1080 +#define max_hdisplay_split 1080 - /* user split topology for width > 1080 */ - ... | Graphics | 42a558b71c9ead911a1486ca118c927e46e9d889 | kalyan thota | drivers | gpu | disp, dpu1, drm, msm |
drm/msm: add dsi support for sc7180 | add support for v2.4.1 dsi block in the sc7180 soc. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add dsi support for sc7180 | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c', 'h'] | 2 | 22 | 0 | -modify commit text to indicate dsi version and soc detail(jeffrey hugo). -splitting visionox panel driver code out into a -update commit text accordingly(matthias kaehlcke). --- diff --git a/drivers/gpu/drm/msm/dsi/dsi_cfg.c b/drivers/gpu/drm/msm/dsi/dsi_cfg.c --- a/drivers/gpu/drm/msm/dsi/dsi_cfg.c +++ b/drivers/gpu/... | Graphics | 6125bd327e16a451efb5a00bc4224e164d19f77e | harigovindan p | drivers | gpu | drm, dsi, msm |
msm:disp:dpu1: add ubwc support for display on sc7180 | add ubwc global configuration for display on sc7180 target. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add ubwc support for display on sc7180 | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c'] | 1 | 57 | 1 | --- diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_mdss.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_mdss.c --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_mdss.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_mdss.c +#define hw_rev 0x0 +struct dpu_hw_cfg { + u32 val; + u32 offset; +}; + +struct dpu_mdss_hw_init_handler { + u32 hw_rev; + u3... | Graphics | e4f9bbe9f8beab9a1ce460e7e194595b76868595 | kalyan thota douglas anderson dianders chromium org | drivers | gpu | disp, dpu1, drm, msm |
msm:disp:dpu1: add scaler support on sc7180 display | add scaler support for display driver. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add scaler support on sc7180 display | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c', 'h'] | 5 | 39 | 12 | --- diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c -#define _vig_sblk(num, sdma_pri) \ +#define _vig_sblk(num, sdma_pri, qseed_ver) \ - .id = dpu_sspp_s... | Graphics | b75ab05a34792fc203262a2f4a272f2a47257369 | shubhashree dhar | drivers | gpu | disp, dpu1, drm, msm |
drm: msm: add 618 gpu to the adreno gpu list | this patch adds adreno 618 entry and its associated properties to the gpulist entries. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | a618 support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c'] | 1 | 11 | 0 | --- diff --git a/drivers/gpu/drm/msm/adreno/adreno_device.c b/drivers/gpu/drm/msm/adreno/adreno_device.c --- a/drivers/gpu/drm/msm/adreno/adreno_device.c +++ b/drivers/gpu/drm/msm/adreno/adreno_device.c + }, { + .rev = adreno_rev(6, 1, 8, any_id), + .revn = 618, + .name = "a618", + .fw = { + [adreno_fw_sqe] = "a630_sqe... | Graphics | 358ffda520db32e8719db4424edd72c25298decb | sharat masetty | drivers | gpu | adreno, drm, msm |
drm: msm: a6xx: add support for a618 | this patch adds support for enabling graphics bus interface(gbif) used in multiple a6xx series chipets. also makes changes to the pdc/rsc sequencing specifically required for a618. this is needed for proper interfacing with rpmh. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | a618 support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['h', 'c'] | 5 | 154 | 13 | --- diff --git a/drivers/gpu/drm/msm/adreno/a6xx.xml.h b/drivers/gpu/drm/msm/adreno/a6xx.xml.h --- a/drivers/gpu/drm/msm/adreno/a6xx.xml.h +++ b/drivers/gpu/drm/msm/adreno/a6xx.xml.h - /home/robclark/src/envytools/rnndb/adreno/a3xx.xml ( 83840 bytes, from 2018-07-03 19:37:13) - /home/robclark/src/envytools/rnndb/adreno... | Graphics | e812744c5f953cb8bbce2d8cfbcb2e8e7df7535d | sharat masetty | drivers | gpu | adreno, drm, msm |
drm/msm/dpu: add ubwc support for rgb8888 formats | hardware only natively supports bgr8888 ubwc. ubwc support for rgb8888 can be had by pretending that the buffer is bgr. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add ubwc support for rgb8888 formats | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c', 'h'] | 2 | 20 | 0 | --- diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c + /* argb8888 and abgr8888 purposely have the same color + * ordering. the hardware only supports abgr8888 ubwc +... | Graphics | cb929b8f5faa2a94c2f28e656e243e3ec173b480 | fritz koenig daniel vetter daniel vetter ffwll ch rob clark robdclark gmail com | drivers | gpu | disp, dpu1, drm, msm |
drm/msm: support firmware-name for zap fw (v2) | since zap firmware can be device specific, allow for a firmware-name property in the zap node to specify which firmware to load, similarly to the scheme used for dsp/wifi/etc. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | support firmware-name for zap fw | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['msm '] | ['c'] | 1 | 27 | 3 | --- diff --git a/drivers/gpu/drm/msm/adreno/adreno_gpu.c b/drivers/gpu/drm/msm/adreno/adreno_gpu.c --- a/drivers/gpu/drm/msm/adreno/adreno_gpu.c +++ b/drivers/gpu/drm/msm/adreno/adreno_gpu.c + const char *signed_fwname = null; - /* request the mdt file for the firmware */ - fw = adreno_request_fw(to_adreno_gpu(gpu), fw... | Graphics | 6a0dea02c2c4fabacaef639b215b1cbbbea662a6 | rob clark | drivers | gpu | adreno, drm, msm |
drm/vmwgfx: add ioctl for messaging from/to guest userspace to/from host | up to now, guest userspace does logging directly to host using essentially the same rather complex port assembly stuff as the kernel. we'd rather use the same mechanism than duplicate it (it may also change in the future), hence add a new ioctl for relaying guest/host messaging (logging is just one application of it). | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add ioctl for messaging from/to guest userspace to/from host | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['vmwgfx '] | ['c', 'h'] | 4 | 108 | 0 | --- diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +#define drm_ioctl_vmw_msg \ + drm_iowr(drm_command_base + drm_vmw_msg, \ + struct drm_vmw_msg_arg) + vmw_ioctl_def(vmw_msg, + vmw_msg_ioctl, + d... | Graphics | cb92a3235956442c5ff211291865e219dc4cf4a0 | roland scheidegger thomas hellstrom thellstrom vmware com | drivers | gpu | drm, vmwgfx |
drm/mediatek: support cmdq interface in ddp component | the cmdq (command queue) in some mediatek soc is used to help update all relevant display controller registers with critical time limation. this patch add cmdq interface in ddp_comp interface, let all ddp_comp interface can support cpu/cmdq function at the same time. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | support cmdq interface in ddp component | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['mediatek '] | ['c', 'h'] | 6 | 186 | 94 | --- diff --git a/drivers/gpu/drm/mediatek/mtk_disp_color.c b/drivers/gpu/drm/mediatek/mtk_disp_color.c --- a/drivers/gpu/drm/mediatek/mtk_disp_color.c +++ b/drivers/gpu/drm/mediatek/mtk_disp_color.c +#include <linux/soc/mediatek/mtk-cmdq.h> - unsigned int bpc) + unsigned int bpc, struct cmdq_pkt *cmdq_pkt) - writel(w, ... | Graphics | d0afe37f5209c7b51a5646ffef578b9d9b383d90 | bibby hsieh | drivers | gpu | drm, mediatek |
drm/mediatek: add ctm property support | add ctm property support | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add ctm property support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['mediatek '] | ['c', 'h'] | 3 | 82 | 5 | --- diff --git a/drivers/gpu/drm/mediatek/mtk_drm_crtc.c b/drivers/gpu/drm/mediatek/mtk_drm_crtc.c --- a/drivers/gpu/drm/mediatek/mtk_drm_crtc.c +++ b/drivers/gpu/drm/mediatek/mtk_drm_crtc.c - for (i = 0; i < mtk_crtc->ddp_comp_nr; i++) + for (i = 0; i < mtk_crtc->ddp_comp_nr; i++) { + mtk_ddp_ctm_set(mtk_crtc->ddp_com... | Graphics | 84abcf1234bbfbcc0b8749bcf9c9ca01525eea50 | yongqiang niu | drivers | gpu | drm, mediatek |
drm/mediatek: add gamma property according to hardware capability | if there is no gamma function in the crtc display path, don't add gamma property for crtc | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add gamma property according to hardware capability | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['mediatek '] | ['c'] | 1 | 8 | 2 | --- diff --git a/drivers/gpu/drm/mediatek/mtk_drm_crtc.c b/drivers/gpu/drm/mediatek/mtk_drm_crtc.c --- a/drivers/gpu/drm/mediatek/mtk_drm_crtc.c +++ b/drivers/gpu/drm/mediatek/mtk_drm_crtc.c + uint gamma_lut_size = 0; + + if (comp->funcs && comp->funcs->gamma_set) + gamma_lut_size = mtk_lut_size; - drm_mode_crtc_set_ga... | Graphics | 4cebc1de506fa753301266a5a23bb21bca52ad3a | yongqiang niu | drivers | gpu | drm, mediatek |
drm: sun4i: add support for suspending the display driver | shut down the display engine during suspend. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | add support for suspending the display driver | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['sun4i '] | ['c'] | 1 | 22 | 0 | --- diff --git a/drivers/gpu/drm/sun4i/sun4i_drv.c b/drivers/gpu/drm/sun4i/sun4i_drv.c --- a/drivers/gpu/drm/sun4i/sun4i_drv.c +++ b/drivers/gpu/drm/sun4i/sun4i_drv.c +#ifdef config_pm_sleep +static int sun4i_drv_drm_sys_suspend(struct device *dev) +{ + struct drm_device *drm = dev_get_drvdata(dev); + + return drm_mode... | Graphics | 624b4b48d9d870c2858c016d8709715495409654 | ondrej jirman | drivers | gpu | drm, sun4i |
drm/sun4i: dsi: add allwinner a64 mipi dsi support | the mipi dsi controller in allwinner a64 is similar to a33. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | a64 mipi dsi support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['sun4i '] | ['c'] | 1 | 1 | 0 | --- diff --git a/drivers/gpu/drm/sun4i/sun6i_mipi_dsi.c b/drivers/gpu/drm/sun4i/sun6i_mipi_dsi.c --- a/drivers/gpu/drm/sun4i/sun6i_mipi_dsi.c +++ b/drivers/gpu/drm/sun4i/sun6i_mipi_dsi.c + { .compatible = "allwinner,sun50i-a64-mipi-dsi" }, | Graphics | 52028bfcb2330189c5e4ab943b3530b2117b8525 | jagan teki | drivers | gpu | drm, sun4i |
dt-bindings: display: renesas,cmm: add r-car cmm documentation | add device tree bindings documentation for the renesas r-car display unit color management module. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | color management module support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rcar-du '] | ['yaml'] | 1 | 67 | 0 | --- diff --git a/documentation/devicetree/bindings/display/renesas,cmm.yaml b/documentation/devicetree/bindings/display/renesas,cmm.yaml --- /dev/null +++ b/documentation/devicetree/bindings/display/renesas,cmm.yaml +# spdx-license-identifier: gpl-2.0-only +%yaml 1.2 +--- +$id: http://devicetree.org/schemas/display/ren... | Graphics | 7f7b9455b35290a1032c73222261bfd784cc3702 | jacopo mondi | documentation | devicetree | bindings, display |
dt-bindings: display: renesas,du: document cmms property | document the newly added 'renesas,cmms' property which accepts a list of phandle and channel index pairs that point to the cmm units available for each display unit output video channel. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | color management module support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rcar-du '] | ['txt'] | 1 | 5 | 0 | --- diff --git a/documentation/devicetree/bindings/display/renesas,du.txt b/documentation/devicetree/bindings/display/renesas,du.txt --- a/documentation/devicetree/bindings/display/renesas,du.txt +++ b/documentation/devicetree/bindings/display/renesas,du.txt + - renesas,cmms: a list of phandles to the cmm instances pre... | Graphics | 6e2258b58f819e73aad229fd0af7d8274ef22669 | jacopo mondi rob herring robh kernel org kieran bingham kieran bingham renesas ideasonboard com laurent pinchart laurent pinchart ideasonboard com | documentation | devicetree | bindings, display |
drm: rcar-du: add support for cmm | add a driver for the r-car display unit color correction module. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | color management module support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rcar-du '] | ['c', 'kconfig', 'makefile', 'h'] | 4 | 284 | 0 | --- diff --git a/drivers/gpu/drm/rcar-du/kconfig b/drivers/gpu/drm/rcar-du/kconfig --- a/drivers/gpu/drm/rcar-du/kconfig +++ b/drivers/gpu/drm/rcar-du/kconfig + imply drm_rcar_cmm +config drm_rcar_cmm + tristate "r-car du color management module (cmm) support" + depends on drm && of + depends on drm_rcar_du + help + en... | Graphics | e08e934d6c289ed0d6bc222271f69dc35fb2caa5 | jacopo mondi | drivers | gpu | drm, rcar-du |
drm: rcar-du: kms: initialize cmm instances | implement device tree parsing to collect the available cmm instances described by the 'renesas,cmms' property. associate cmms with crtcs and store a mask of active cmms in the du group for later enablement. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | color management module support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rcar-du '] | ['c', 'h'] | 5 | 88 | 0 | --- diff --git a/drivers/gpu/drm/rcar-du/rcar_du_crtc.c b/drivers/gpu/drm/rcar-du/rcar_du_crtc.c --- a/drivers/gpu/drm/rcar-du/rcar_du_crtc.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_crtc.c + /* cmm might be disabled for this crtc. */ + if (rcdu->cmms[swindex]) { + rcrtc->cmm = rcdu->cmms[swindex]; + rgrp->cmms_mask |= bi... | Graphics | 8de707aeb4524140d9c37a3cf607e57e753d8529 | jacopo mondi | drivers | gpu | drm, rcar-du |
drm: rcar-du: crtc: control cmm operations | implement cmm handling in the crtc begin and enable atomic callbacks, and enable cmm unit through the display extensional functions register at group setup time. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | color management module support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rcar-du '] | ['c', 'h'] | 3 | 76 | 0 | --- diff --git a/drivers/gpu/drm/rcar-du/rcar_du_crtc.c b/drivers/gpu/drm/rcar-du/rcar_du_crtc.c --- a/drivers/gpu/drm/rcar-du/rcar_du_crtc.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_crtc.c +#include "rcar_cmm.h" +/* ----------------------------------------------------------------------------- + * color management module ... | Graphics | 78b6bb1d24dbf094a4743bae1ee7c020e8193f25 | jacopo mondi laurent pinchart laurent pinchart ideasonboard com kieran bingham kieran bingham renesas ideasonboard com | drivers | gpu | drm, rcar-du |
drm: rcar-du: crtc: register gamma_lut properties | enable the gamma_lut kms property using the framework helpers to register the property and set the associated gamma table maximum size. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | color management module support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rcar-du '] | ['c'] | 1 | 4 | 0 | --- diff --git a/drivers/gpu/drm/rcar-du/rcar_du_crtc.c b/drivers/gpu/drm/rcar-du/rcar_du_crtc.c --- a/drivers/gpu/drm/rcar-du/rcar_du_crtc.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_crtc.c + .gamma_set = drm_atomic_helper_legacy_gamma_set, + + drm_mode_crtc_set_gamma_size(crtc, cm2_lut_size); + drm_crtc_enable_color_mgmt... | Graphics | b28a931476bcc4552936bfa47194cae2ad6a15a5 | jacopo mondi kieran bingham kieran bingham renesas ideasonboard com ulrich hecht uli renesas fpond eu laurent pinchart laurent pinchart ideasonboard com | drivers | gpu | drm, rcar-du |
drm: rcar-du: lvds: get dual link configuration from dt | for dual-lvds configurations, it is now possible to mark the dt port nodes for the sink with boolean properties (like dual-lvds-even-pixels and dual-lvds-odd-pixels) to let drivers know the encoders need to be configured in dual-lvds mode. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | lvds encoder dual-link support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rcar-du '] | ['c'] | 1 | 46 | 8 | --- diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds.c b/drivers/gpu/drm/rcar-du/rcar_lvds.c --- a/drivers/gpu/drm/rcar-du/rcar_lvds.c +++ b/drivers/gpu/drm/rcar-du/rcar_lvds.c + struct device_node *port0, *port1; + struct rcar_lvds *companion_lvds; + int dual_link; + /* + * we need to work out if the sink is expecting u... | Graphics | 65112cfa56c32030a7f04a8a4c28251b89b5cf26 | fabrizio castro | drivers | gpu | drm, rcar-du |
drm: rcar-du: add r8a77980 support | add direct support for the r8a77980 (v3h). | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | r8a77980 support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['rcar-du '] | ['c'] | 1 | 5 | 1 | --- diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c b/drivers/gpu/drm/rcar-du/rcar_du_drv.c --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c - /* r8a77970 has one rgb output and one lvds output. */ + /* + * r8a77970 and r8a77980 have one rgb output and one lvds + * output. + */... | Graphics | c267782c5f0efbd20c560101738e68bb30d4fad5 | kieran bingham | drivers | gpu | drm, rcar-du |
drm/ast: add cursor plane | the cursor plane uses an internal format of argb4444. to userspace, we announce argb8888 and do the transformation internally. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | atomic modeset support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['ast '] | ['h', 'c'] | 2 | 155 | 1 | --- diff --git a/drivers/gpu/drm/ast/ast_drv.h b/drivers/gpu/drm/ast/ast_drv.h --- a/drivers/gpu/drm/ast/ast_drv.h +++ b/drivers/gpu/drm/ast/ast_drv.h + struct drm_plane cursor_plane; diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c --- a/drivers/gpu/drm/ast/ast_mode.c +++ b/drivers/gpu/drm/... | Graphics | 02f3bb751a46230f9a49d2a55b304a5847c67788 | thomas zimmermann | drivers | gpu | ast, drm |
drm/ast: add primary plane | like the original mode-setting code, the primary plane supports xrgb888, rgb565 and c8. the plane itself only pins bos and sets the base address and scanline offset. the mode-setting code will be located in the crtc's atomic helpers. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | atomic modeset support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['ast '] | ['h', 'c'] | 2 | 89 | 2 | --- diff --git a/drivers/gpu/drm/ast/ast_drv.h b/drivers/gpu/drm/ast/ast_drv.h --- a/drivers/gpu/drm/ast/ast_drv.h +++ b/drivers/gpu/drm/ast/ast_drv.h + struct drm_plane primary_plane; + diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c --- a/drivers/gpu/drm/ast/ast_mode.c +++ b/drivers/gpu/d... | Graphics | a6ff807b71e3ffa85c1ba133d8a9fa11fcfe186d | thomas zimmermann | drivers | gpu | ast, drm |
drm/ast: enable atomic modesetting | this commit sets the remaining atomic-modesetting helpers and the flag driver_atomic. legacy cursor functions are removed in favor of the cursor plane. for power management, atomic helpers replace the indvidual operations that the driver currently runs. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | atomic modeset support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['ast '] | ['c'] | 3 | 33 | 286 | --- diff --git a/drivers/gpu/drm/ast/ast_drv.c b/drivers/gpu/drm/ast/ast_drv.c --- a/drivers/gpu/drm/ast/ast_drv.c +++ b/drivers/gpu/drm/ast/ast_drv.c - - - drm_kms_helper_poll_disable(dev); - pci_save_state(dev->pdev); - drm_fb_helper_set_suspend_unlocked(dev->fb_helper, true); + int error; + error = drm_mode_config_h... | Graphics | 4961eb60f14553363a0a7a9fb7b20d9c57d3ebba | thomas zimmermann | drivers | gpu | ast, drm |
drm/mcde: provide vblank handling unconditionally | at the moment, vblank handling is only enabled together with te synchronization. however, the vblank irq is also working with on displays without te synchronization (e.g. dsi video mode panels). it seems like the vblank irq is actually generated by the mcde hardware for the channel. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | vblank support | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['mcde '] | ['c'] | 2 | 9 | 22 | --- diff --git a/drivers/gpu/drm/mcde/mcde_display.c b/drivers/gpu/drm/mcde/mcde_display.c --- a/drivers/gpu/drm/mcde/mcde_display.c +++ b/drivers/gpu/drm/mcde/mcde_display.c - - drm_crtc_vblank_on(crtc); + drm_crtc_vblank_on(crtc); + - if (mcde->te_sync) - drm_crtc_vblank_off(crtc); + drm_crtc_vblank_off(crtc); + .ena... | Graphics | 768859c239922264f91d8a49ff8b1b227e7ad7d9 | stephan gerhold | drivers | gpu | drm, mcde |
drm/meson: add afbc decoder registers for gxm and g12a | add the registers used to program the arm framebuffer compression decoders used in the amlogic gxm and g12a socs families. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | osd1 plane afbc commit | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['meson '] | ['h'] | 2 | 77 | 0 | --- diff --git a/drivers/gpu/drm/meson/meson_registers.h b/drivers/gpu/drm/meson/meson_registers.h --- a/drivers/gpu/drm/meson/meson_registers.h +++ b/drivers/gpu/drm/meson/meson_registers.h +#define viu_sw_reset_osd1_afbcd bit(31) +#define viu_sw_reset_g12a_osd1_afbcd bit(21) +#define viu_sw_reset_g12a_afbc_arb bit(19... | Graphics | 26a7abd4883b71b33371e6ded32422d4e5f9c1c5 | neil armstrong | drivers | gpu | drm, meson |
drm/meson: add rdma register bits defines | the amlogic vpu embeds a "register dma" that can write a sequence of registers on the vpu ahb bus, either manually or triggered by an internal irq event like vsync or a line input counter. | this release adds wireguard, an fast and secure vpn design that aims to replace other vpns; initial support for usb 4; support for time namespaces; asynchronous ssd trimming in btrfs; initial merge of the multipath tcp support; support for virtualbox guest shared folders; a simple file system to expose the zones of zon... | osd1 plane afbc commit | ['core (various)', 'file systems', 'memory management', 'block layer', 'tracing, perf and bpf', 'virtualization', 'power management', 'cryptography', 'security', 'networking', 'architectures x86 s390 riscv mips powerpc csky microblaze sparc uml arc'] | ['graphics', 'power management', 'storage', 'drivers in the staging area', 'networking', 'audio', 'tablets, touch screens, keyboards, mouses', 'tv tuners, webcams, video capturers', 'universal serial bus', 'serial peripheral interface (spi)', 'watchdog', 'serial', 'device voltage and frequency scaling', 'voltage, curre... | ['meson '] | ['h'] | 1 | 48 | 0 | --- diff --git a/drivers/gpu/drm/meson/meson_registers.h b/drivers/gpu/drm/meson/meson_registers.h --- a/drivers/gpu/drm/meson/meson_registers.h +++ b/drivers/gpu/drm/meson/meson_registers.h +#define rdma_access_trigger_chan3 genmask(31, 24) +#define rdma_access_trigger_chan2 genmask(23, 16) +#define rdma_access_trigge... | Graphics | 7704ddc6a59077088c8b2a43550b7b5be1877385 | neil armstrong | drivers | gpu | drm, meson |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.