[Openchrome-devel] [xf86-video-openchrome]X driver for VIA IGPs annotated tag release_0_4_0 created. release_0_4_0
Kevin Brace
kevinbrace at kemper.freedesktop.org
Thu Mar 31 07:20:22 UTC 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "X driver for VIA IGPs".
The annotated tag, release_0_4_0 has been created
at c4829d726fa33cccd204997392fd3202a208bae4 (tag)
tagging 52730d1da4019969fb4cbd13152ffd06b1ee75e2 (commit)
replaces release_0_3_3
tagged by Kevin Brace
on Thu Mar 31 00:18:02 2016 -0700
- Log -----------------------------------------------------------------
OpenChrome Version 0.4.0
Benno Schulenberg (1):
Complete the recent renaming of VIAUnmapMem to VIAUnmapMMIO
Christos Zoulas (1):
Add missing prototypes
Daniel Gnoutcheff (1):
Make our implementation of xf86OutputFuncsRec->set_output() return TRUE.
JUNG, Christian (2):
Add support to probe the I2C for bus 3. This makes it is possible to detect the VT1632 device.
Add support for VT1632 DVI transmitter for UMS mode.
James Simmons (18):
gcc does not like prototypes for static functions. This patch fixes that issue
Add missing drm_fourcc.h header file.
Use appropriate format string.
Remove comparisons that cannot be true.
The normal setup is two crtc are mapped to the same framebuffer. As we set each crtc we were caching the old frame buffer, but for the second crtc we end up caching the new framebuffer as the old one. So when we went to free the old framebuffer the display surface got deleted which caused our xorg driver to crash. The solution is to test if we already cached the old framebuffer. Also since only one display surface is involved we move drmModeRmFB outside the crtc loop.
With hotplug an output is enabled but its not attached to a crtc by default. When the display is issued a resize now when we encounter a disabled crtc a unbound ouput is then attached to it.
Revert "With hotplug an output is enabled but its not attached to a crtc by default. When the display is issued a resize now when we encounter a disabled crtc a unbound ouput is then attached to it."
Sync via_drm.h header with that in drm-openchrome
The mode passed into drmmmode_set_mode_major does not always have a name string. When xf86SetModeDefaultName is called it frees a null string which caused a segfault. No need to create a default name so remove xf86SetModeDefaultName
Add pciid for ECS VX900-I motherboard
* while watching video following messages are endless logged via_xv.c : needBandwidth= 180.000000 : via_xv.c : totalBandwidth= 2979.199951 :
Fix build on Hurd. Without libdrm the build fails due to missing definitions. We can use the included drm_fourcc.h to ensure it builds.
Small cleanup to the register dumping tool to display data correctly.
Migrate the register tool to C99 standard. Fix the overflow with the shift calculation.
Silence the warning: assignment discards 'const' qualifier from pointer target type.
Last of the gcc warnings.
Fixes for various memory related problems discovered by cppcheck. The errors are memory leaks, NULL dereferences, and double frees.
The function viaDRIFBMemcpy really wants dst to be 16byte-aligned there. And that's not ->driOffScreenMem (which you've guaranteed to be aligned), that's ->driOffScreenSave, which comes from malloc(). On 32bit host it's not guaranteed to yield 128bit-aligned pointer. That's where the "[drm:via_build_sg_info] *ERROR* Invalid DRM bitblt alignment." kernel whinge is coming from.
Jared McNeill (1):
Remove a couple '#ifdef linux's to let the driver use optimized memcpy functions on NetBSD for video copy. Gives nearly 2x performance on my test system (previously "kernel" memcpy was always used):
Kevin Brace (52):
Substitution of VIA_VM800 label with VIA_P4M800PRO label
Preserving PCI Burst Write Wait State Select Bit
Fixing DVI detection code crash
Enabling the detection of DVI for all devices
VIA_P4M800PRO label code indentation fix
A little prettier supported chipset list
VIA_K8M890 label case statement position adjustment
Compilation hooks to support ClockRange and ClockRanges
Added debug messages to via_vt1632.c
Added debug messages to via_dvi_init
Improvement of detected monitor type messages
Added debug messages to via_tv_init
Converting tab to white spaces inside via_vt1632.c
Added debug messages to via_i2c.c
Added debug messages to via_analog_init
Added debug messages to via_dp_init
Adding VN890 chipset to the chipset support list
Adding CN333 chipset to the chipset support list
Using I2C bus 2 to detect a VGA monitor
Checking the validity of I2C buses before initializing VGA output
Fixing the misdetection of NanoBook flat panel
Fixing header file compilation errors with an older version gcc
Fixing P4M800 chipset detection code compilation error
get_property callback of xf86OutputFuncsRec and RandR compilation error
get_property callback of xf86OutputFuncsRec and RandR compilation error
set_origin callback of xf86CrtcFuncsRec compilation error
Added debug messages to via_vt1632_probe
Modified a debug message within via_vt1632_probe
Added debug messages to via_dp_detect
Removing via_dp_* functions
All devices will now go through TV out initialization code
Added debug messages to ViaOutputsDetect
Modified debug messages within via_dvi_init
Changed VIAUnmapMem to VIAUnmapMMIO
Added debug messages to VIAUnmapMMIO
Removing an erroneous call to VIAUnmapMMIO when exiting
Fixing OLPC XO-1.5 flat panel misdetection
Removing the known device table
OLPC XO-1.5 flat panel height and width physical size
Removal of ForcePanel option
Removal of legacy user mode setting
Removal of VESA BIOS Extension (VBE) support
Removal of backdoor flat panel screen resolution detection algorithm
Modified debug messages within via_lvds_detect
Checking the availability of a flat panel before starting the detection
Fixed a minor debug message imperfection within via_vt1632_probe
Removal of PanelSize option
Renaming variables within via_lvds_get_modes
Removal of ActiveDevice option
Modified debug messages within via_lvds_get_modes
Disabling the initialization of VT1632A TMDS Transmitter
Release of Version 0.4.0
Pino Toscano (1):
Do not require libdrm as base pkg-config module
Xavier Bachelot (19):
Shuttle MK40V (reported by Belkacem Houari)
Samsung Q1EX (reported by Andrew Sabelhaus)
Don't check if the input is digital for VGA
Add pciid for Lenovo M3120C
Replace X_DEBUG with X_INFO. The former doesn't exist on older xserver and X_INFO is used in other places of the driver.
Add missing header inclusion. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=88334
Move via_dvi_* functions before ViaOutputsDetect to prevent a warning.
Remove extra semicolons.
Hitachi FLORA Se210 RK1 (Reported by Shimada Hirofumi)
Make via_dvi_set_property return TRUE. Other via_*_set_property just got fixed in 271c716f2060bc04a5ca8324c0d2c27473463206
Make sure pVia->Id is set even in case of an unknown board to prevent a segfault later
Move CLE266 revision check to a place it will actually be run.
Rewrap some lines below 80 chars
Cosmetic : Wrap lines and remove tabs indentation.
Update X log URL to fd.o wiki
Update MODULEVENDORSTRING to point at fd.o wiki
Update date and URL in copyright notices
Abit IP-95 (Reported by Alan Polinsky)
Itona DS35S (Reported by Andrew Colosimo)
-----------------------------------------------------------------------
hooks/post-receive
--
X driver for VIA IGPs
More information about the Openchrome-devel
mailing list