00ddea7d7d2706dc1a5e56f70dd43073b061adb0
[platform/kernel/linux-starfive.git] / drivers / gpu / drm / mgag200 / mgag200_drv.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright 2012 Red Hat
4  *
5  * Authors: Matthew Garrett
6  *          Dave Airlie
7  */
8
9 #include <linux/console.h>
10 #include <linux/module.h>
11 #include <linux/pci.h>
12
13 #include <drm/drm_drv.h>
14 #include <drm/drm_file.h>
15 #include <drm/drm_ioctl.h>
16 #include <drm/drm_pciids.h>
17
18 #include "mgag200_drv.h"
19
20 /*
21  * This is the generic driver code. This binds the driver to the drm core,
22  * which then performs further device association and calls our graphics init
23  * functions
24  */
25
26 int mgag200_modeset = -1;
27 MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
28 module_param_named(modeset, mgag200_modeset, int, 0400);
29
30 static struct drm_driver driver;
31
32 static const struct pci_device_id pciidlist[] = {
33         { PCI_VENDOR_ID_MATROX, 0x522, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
34                 G200_SE_A | MGAG200_FLAG_HW_BUG_NO_STARTADD},
35         { PCI_VENDOR_ID_MATROX, 0x524, PCI_ANY_ID, PCI_ANY_ID, 0, 0, G200_SE_B },
36         { PCI_VENDOR_ID_MATROX, 0x530, PCI_ANY_ID, PCI_ANY_ID, 0, 0, G200_EV },
37         { PCI_VENDOR_ID_MATROX, 0x532, PCI_ANY_ID, PCI_ANY_ID, 0, 0, G200_WB },
38         { PCI_VENDOR_ID_MATROX, 0x533, PCI_ANY_ID, PCI_ANY_ID, 0, 0, G200_EH },
39         { PCI_VENDOR_ID_MATROX, 0x534, PCI_ANY_ID, PCI_ANY_ID, 0, 0, G200_ER },
40         { PCI_VENDOR_ID_MATROX, 0x536, PCI_ANY_ID, PCI_ANY_ID, 0, 0, G200_EW3 },
41         { PCI_VENDOR_ID_MATROX, 0x538, PCI_ANY_ID, PCI_ANY_ID, 0, 0, G200_EH3 },
42         {0,}
43 };
44
45 MODULE_DEVICE_TABLE(pci, pciidlist);
46
47
48 static int mga_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
49 {
50         struct drm_device *dev;
51         int ret;
52
53         drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, "mgag200drmfb");
54
55         ret = pci_enable_device(pdev);
56         if (ret)
57                 return ret;
58
59         dev = drm_dev_alloc(&driver, &pdev->dev);
60         if (IS_ERR(dev)) {
61                 ret = PTR_ERR(dev);
62                 goto err_pci_disable_device;
63         }
64
65         dev->pdev = pdev;
66         pci_set_drvdata(pdev, dev);
67
68         ret = mgag200_driver_load(dev, ent->driver_data);
69         if (ret)
70                 goto err_drm_dev_put;
71
72         ret = drm_dev_register(dev, ent->driver_data);
73         if (ret)
74                 goto err_mgag200_driver_unload;
75
76         drm_fbdev_generic_setup(dev, 0);
77
78         return 0;
79
80 err_mgag200_driver_unload:
81         mgag200_driver_unload(dev);
82 err_drm_dev_put:
83         drm_dev_put(dev);
84 err_pci_disable_device:
85         pci_disable_device(pdev);
86         return ret;
87 }
88
89 static void mga_pci_remove(struct pci_dev *pdev)
90 {
91         struct drm_device *dev = pci_get_drvdata(pdev);
92
93         drm_dev_unregister(dev);
94         mgag200_driver_unload(dev);
95         drm_dev_put(dev);
96 }
97
98 DEFINE_DRM_GEM_FOPS(mgag200_driver_fops);
99
100 static struct drm_driver driver = {
101         .driver_features = DRIVER_ATOMIC | DRIVER_GEM | DRIVER_MODESET,
102         .fops = &mgag200_driver_fops,
103         .name = DRIVER_NAME,
104         .desc = DRIVER_DESC,
105         .date = DRIVER_DATE,
106         .major = DRIVER_MAJOR,
107         .minor = DRIVER_MINOR,
108         .patchlevel = DRIVER_PATCHLEVEL,
109         DRM_GEM_SHMEM_DRIVER_OPS,
110 };
111
112 static struct pci_driver mgag200_pci_driver = {
113         .name = DRIVER_NAME,
114         .id_table = pciidlist,
115         .probe = mga_pci_probe,
116         .remove = mga_pci_remove,
117 };
118
119 static int __init mgag200_init(void)
120 {
121         if (vgacon_text_force() && mgag200_modeset == -1)
122                 return -EINVAL;
123
124         if (mgag200_modeset == 0)
125                 return -EINVAL;
126
127         return pci_register_driver(&mgag200_pci_driver);
128 }
129
130 static void __exit mgag200_exit(void)
131 {
132         pci_unregister_driver(&mgag200_pci_driver);
133 }
134
135 module_init(mgag200_init);
136 module_exit(mgag200_exit);
137
138 MODULE_AUTHOR(DRIVER_AUTHOR);
139 MODULE_DESCRIPTION(DRIVER_DESC);
140 MODULE_LICENSE("GPL");