Stanislav Motylkov
bbccad0ed6
[INF] Set manufacturer as ReactOS Project for consistency
...
Also make it non-localizable. CORE-18191
2022-06-27 17:00:18 +03:00
Stanislav Motylkov
17e0e4428c
[PC98VID] Fix video driver settings
...
- Store settings in non hardware-profile registry key.
- Rename driver file to vgapnp.sys to keep in sync with VBE.
- This makes PC-98 video driver working again.
Addendum to 073a1ea3
and f03750de
. CORE-18201 CORE-17977
2022-05-27 18:56:13 +03:00
Stanislav Motylkov
5471363801
[XBOXVMP] Fix video driver settings
...
- Store settings in non hardware-profile registry key.
- This makes Xbox video driver working again.
Addendum to f03750de
. CORE-16216
2022-05-27 18:54:20 +03:00
Hervé Poussineau
983d9a1c2a
[VBEMP] Disable reporting multiple monitors
...
It has never worked, and only leads to some infinite loops with some hardware or BIOS configurations.
2022-01-06 20:16:12 +01:00
Hervé Poussineau
f03750de6a
[VBEMP] Rename to vgapnp.sys
...
- rename driver vbemp.sys to vgapnp.sys
- rename service VBE to vga
- store settings in non hardware-profile registry key
2022-01-06 20:16:12 +01:00
Hervé Poussineau
073a1ea34c
[VGAMP] Rename to vga.sys
...
- rename driver vgamp.sys to vga.sys
- rename service Vga to VgaSave
- store settings in non hardware-profile registry key
2022-01-06 20:16:12 +01:00
Hervé Poussineau
0d9386d0e0
[VGA_NEW] Disable it for now
2022-01-06 17:47:45 +01:00
Hervé Poussineau
cd48bc7af8
[LIVECD] Add more registry entries for vbemp/vgamp
...
CORE-17579
2021-10-25 21:44:45 +02:00
Hervé Poussineau
951dc66c66
[VGAMP] Correctly check and report legacy resources (VGA I/O ports and memory)
...
As we are a non PNP driver, the call chain will be
DriverEntry -> VidePortInitialize -> VideoPortFindAdapter -> HwFindAdapter.
If legacy resources are available, we will fail VGAFindAdapter,
so DriverEntry will fail, so vgamp.sys driver won't be used.
CORE-17789
2021-10-14 23:39:30 +02:00
Hervé Poussineau
6dd94572e5
[VBEMP] Correctly report legacy resources (VGA I/O ports and memory)
...
CORE-17789
2021-10-14 23:39:30 +02:00
Hervé Poussineau
3379de3924
[VBEMP] Fail HwInitialize (ie IRP_MJ_CREATE) when /NOVESA switch is present
...
In that case, we want a simple VGA driver to drive the graphic adapter.
CORE-17789
2021-10-14 23:39:30 +02:00
Hervé Poussineau
b5966977ac
[VBEMP] Remove too verbose log, when debug is enabled in videoprt
2021-07-10 16:27:44 +02:00
Hervé Poussineau
93f986463a
[VBEMP][VGAMP] Correctly fill VdmPhysicalVideoMemoryAddress/VdmPhysicalVideoMemoryLength
...
These variables must be filled by miniport if miniport is VGA-compatible.
2021-07-05 23:46:16 +02:00
Hervé Poussineau
8d24de7805
[BOOTDATA][VBEMP] Merge duplicated registry settings to vbemp_reg.inf
2021-07-05 23:44:35 +02:00
Hervé Poussineau
08e9000496
[VBE] Check if DDC is supported before trying to read EDID
...
Also set Edx to 0 when reading Edid, as per specification.
CORE-16695
2021-06-05 23:38:05 +02:00
Stanislav Motylkov
ffa7cfc1ff
[INF] Remove remnants of XboxVmp driver which has its own INF file
2021-05-18 20:22:22 +03:00
Dmitry Borisov
f7d825e620
[PC98VID] Fix MSVC 2015 build for PC-98 target
...
Addendum to 3adf450867
Also isolate the constant structures into page section
and restore the previous sections for start IO and entrypoint routines.
2021-05-18 19:30:29 +03:00
Stanislav Motylkov
0bd8a2110b
[WIN32SS] Always build all video miniport drivers
...
But include registry changes and INF files depending on SARCH variable.
This commit is expected to uncover pc98vid build error on MSVC 2015.
Addendum to 8c475e4
. CORE-17529
2021-05-18 19:24:57 +03:00
Stanislav Motylkov
81987761d9
[PC98VID] Use unique target name but rename as vga.sys
...
This allows building pc98vid driver without conflict with vga_new.
2021-05-18 19:24:35 +03:00
Jérôme Gardou
3adf450867
[REACTOS] Addendum to 5c7ce4475e
- Fix MSVC 2015 build
...
Put data into PAGEDATA or INITDATA sections
Keep section declaration for prototypes
CORE-17540
2021-05-12 11:04:29 +02:00
Eric Kohl
8c475e4709
[CMAKE] Build xboxvmp in Xbox-builds only
...
This prevents the creation of a fake Xbox GPU device on non-Xbox builds.
CORE-17529
2021-04-10 20:15:36 +02:00
Victor Perevertkin
971cf12c9a
[VBE] Enable the driver start in the registry
2020-12-19 21:00:06 +03:00
Dmitry Borisov
4dc3125450
[PC98VID] Fix build for PC-98 target ( #3352 )
...
- Some prototypes are not needed anymore.
Addendum to 5c7ce4475e
.
2020-11-05 00:26:37 +03:00
Victor Perevertkin
5c7ce4475e
[REACTOS] Cleanup INIT and some PAGE section allocations
...
- Change INIT_FUNCTION and INIT_SECTION to CODE_SEG("INIT") and DATA_SEG("INIT") respectively
- Remove INIT_FUNCTION from function prototypes
- Remove alloc_text pragma calls as they are not needed anymore
2020-11-02 21:45:31 +03:00
Stanislav Motylkov
2a77e359e4
[XBOX] Move NV2A XGPU definitions into header file
...
TODO: helper functions should be also moved. CORE-16216
2020-08-26 16:58:01 +03:00
Dmitry Borisov
27cd9eaf1a
[PC98VID] Add framebuffer video miniport driver for NEC PC-98 series ( #3040 )
...
This adds generic graphics support on PC-9821.
2020-08-19 00:50:08 +03:00
Stanislav Motylkov
f87a695b35
[XBOXVMP] Work with Xbox GPU registers properly
...
Bug was noticed with GCC 8.4
2020-05-02 23:24:36 +03:00
Victor Perevertkin
019f21ee1d
[MEDIA][CMAKE] Create add_driver_inf cmake function
...
*.inf files for drivers can now be placed along with the driver code
2020-04-26 20:28:04 +03:00
Stanislav Motylkov
afdb42023c
[FREELDR][XBOXVMP] Check only low 28 bits for framebuffer address ( #2249 )
...
Fixes framebuffer detection on real hardware Xbox.
2020-01-14 20:20:22 +01:00
Serge Gautherie
cfdd483c0e
[VGA_NEW] Fix 2 'MAX_USHORT' typos in commented code ( #2145 )
2019-12-10 13:17:17 +01:00
Stanislav Motylkov
297abde716
[FREELDR][XBOXVMP] Retrieve screen resolution directly from NV2A GPU ( #1962 )
...
CORE-16216
2019-10-09 23:27:22 +02:00
Stanislav Motylkov
b3301df570
[XBOXVMP] Fix broken pixels and general refactoring ( #1896 )
...
- Remove old hacky code based on MmHighestPhysicalPage.
- Split I2C SMBus code into a separate source file.
CORE-16216 CORE-16357
2019-10-08 17:08:44 +02:00
Stanislav Motylkov
b54a38b8c0
[XBOXVMP] Improve debugging prints
2019-09-01 23:01:57 +02:00
Stanislav Motylkov
816149e0c3
[XBOXVMP] Code formatting only
2019-09-01 23:01:57 +02:00
Stanislav Motylkov
8c36145087
[XBOXVMP] Add Xbox video miniport driver
...
Also make XboxVmp driver compatible with Video Port driver, specify
vendor id and device id explicitly in VideoPortGetAccessRanges() call
CORE-16317
2019-08-31 00:19:03 +02:00
Hermès Bélusca-Maïto
0f3f8b2a35
[VGA_NEW] Fix confusion between CRTC Controller and Graphics Controller registers.
2019-06-23 02:12:24 +02:00
Jérôme Gardou
23373acbb9
[CMAKE] Use modules instead of shared libraries
...
There is no need to compile our DLLs as shared libraries since we are
managing symbols exports and imports through spec files.
On my system, this reduces the configure-time by a factor of two.
2019-04-06 17:43:38 +02:00
Timo Kreuzer
72e43c4b33
[VGA_NEW] Fix 64 bit issues
2019-03-04 21:58:42 +01:00
Timo Kreuzer
cf77354dce
[REACTOS] Fix 64 bit issues
2018-08-04 19:19:34 +02:00
Amine Khaldi
a308735be6
[VGA] Correct VgaInterpretCmdStream() declaration.
2017-12-09 13:11:45 +01:00
Colin Finck
c2c66aff7d
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
2017-10-03 07:45:34 +00:00