Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
34 lines
820 B
C
34 lines
820 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2023 Loongson Technology Corporation Limited
|
|
*/
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <video/nomodeset.h>
|
|
|
|
#include "loongson_module.h"
|
|
|
|
static int loongson_modeset = -1;
|
|
MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
|
|
module_param_named(modeset, loongson_modeset, int, 0400);
|
|
|
|
int loongson_vblank = 1;
|
|
MODULE_PARM_DESC(vblank, "Disable/Enable hw vblank support");
|
|
module_param_named(vblank, loongson_vblank, int, 0400);
|
|
|
|
static int __init loongson_module_init(void)
|
|
{
|
|
if (!loongson_modeset || video_firmware_drivers_only())
|
|
return -ENODEV;
|
|
|
|
return pci_register_driver(&lsdc_pci_driver);
|
|
}
|
|
module_init(loongson_module_init);
|
|
|
|
static void __exit loongson_module_exit(void)
|
|
{
|
|
pci_unregister_driver(&lsdc_pci_driver);
|
|
}
|
|
module_exit(loongson_module_exit);
|