Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) STMicroelectronics SA 2017
  4 *
  5 * Authors: Philippe Cornu <philippe.cornu@st.com>
  6 *          Yannick Fertre <yannick.fertre@st.com>
  7 *          Fabien Dessenne <fabien.dessenne@st.com>
  8 *          Mickael Reulier <mickael.reulier@st.com>
  9 */
 10
 11#include <linux/component.h>
 12#include <linux/dma-mapping.h>
 13#include <linux/mod_devicetable.h>
 14#include <linux/module.h>
 15#include <linux/platform_device.h>
 16#include <linux/pm_runtime.h>
 17
 18#include <drm/drm_aperture.h>
 19#include <drm/drm_atomic.h>
 20#include <drm/drm_atomic_helper.h>
 21#include <drm/drm_drv.h>
 22#include <drm/drm_fbdev_dma.h>
 23#include <drm/drm_gem_dma_helper.h>
 24#include <drm/drm_gem_framebuffer_helper.h>
 25#include <drm/drm_module.h>
 26#include <drm/drm_probe_helper.h>
 27#include <drm/drm_vblank.h>
 28
 29#include "ltdc.h"
 30
 31#define STM_MAX_FB_WIDTH	2048
 32#define STM_MAX_FB_HEIGHT	2048 /* same as width to handle orientation */
 33
 34static const struct drm_mode_config_funcs drv_mode_config_funcs = {
 35	.fb_create = drm_gem_fb_create,
 36	.atomic_check = drm_atomic_helper_check,
 37	.atomic_commit = drm_atomic_helper_commit,
 38};
 39
 40static int stm_gem_dma_dumb_create(struct drm_file *file,
 41				   struct drm_device *dev,
 42				   struct drm_mode_create_dumb *args)
 43{
 44	unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
 45
 46	/*
 47	 * in order to optimize data transfer, pitch is aligned on
 48	 * 128 bytes, height is aligned on 4 bytes
 49	 */
 50	args->pitch = roundup(min_pitch, 128);
 51	args->height = roundup(args->height, 4);
 52
 53	return drm_gem_dma_dumb_create_internal(file, dev, args);
 54}
 55
 56DEFINE_DRM_GEM_DMA_FOPS(drv_driver_fops);
 57
 58static const struct drm_driver drv_driver = {
 59	.driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_ATOMIC,
 60	.name = "stm",
 61	.desc = "STMicroelectronics SoC DRM",
 62	.date = "20170330",
 63	.major = 1,
 64	.minor = 0,
 65	.patchlevel = 0,
 66	.fops = &drv_driver_fops,
 67	DRM_GEM_DMA_DRIVER_OPS_WITH_DUMB_CREATE(stm_gem_dma_dumb_create),
 68};
 69
 70static int drv_load(struct drm_device *ddev)
 71{
 72	struct platform_device *pdev = to_platform_device(ddev->dev);
 73	struct ltdc_device *ldev;
 74	int ret;
 75
 76	DRM_DEBUG("%s\n", __func__);
 77
 78	ldev = devm_kzalloc(ddev->dev, sizeof(*ldev), GFP_KERNEL);
 79	if (!ldev)
 80		return -ENOMEM;
 81
 82	ddev->dev_private = (void *)ldev;
 83
 84	ret = drmm_mode_config_init(ddev);
 85	if (ret)
 86		return ret;
 87
 88	/*
 89	 * set max width and height as default value.
 90	 * this value would be used to check framebuffer size limitation
 91	 * at drm_mode_addfb().
 92	 */
 93	ddev->mode_config.min_width = 0;
 94	ddev->mode_config.min_height = 0;
 95	ddev->mode_config.max_width = STM_MAX_FB_WIDTH;
 96	ddev->mode_config.max_height = STM_MAX_FB_HEIGHT;
 97	ddev->mode_config.funcs = &drv_mode_config_funcs;
 98	ddev->mode_config.normalize_zpos = true;
 99
100	ret = ltdc_load(ddev);
101	if (ret)
102		return ret;
103
104	drm_mode_config_reset(ddev);
105	drm_kms_helper_poll_init(ddev);
106
107	platform_set_drvdata(pdev, ddev);
108
109	return 0;
110}
111
112static void drv_unload(struct drm_device *ddev)
113{
114	DRM_DEBUG("%s\n", __func__);
115
116	drm_kms_helper_poll_fini(ddev);
117	drm_atomic_helper_shutdown(ddev);
118	ltdc_unload(ddev);
119}
120
121static __maybe_unused int drv_suspend(struct device *dev)
122{
123	struct drm_device *ddev = dev_get_drvdata(dev);
124	struct ltdc_device *ldev = ddev->dev_private;
125	struct drm_atomic_state *state;
126
127	WARN_ON(ldev->suspend_state);
128
129	state = drm_atomic_helper_suspend(ddev);
130	if (IS_ERR(state))
131		return PTR_ERR(state);
132
133	ldev->suspend_state = state;
134	pm_runtime_force_suspend(dev);
135
136	return 0;
137}
138
139static __maybe_unused int drv_resume(struct device *dev)
140{
141	struct drm_device *ddev = dev_get_drvdata(dev);
142	struct ltdc_device *ldev = ddev->dev_private;
143	int ret;
144
145	if (WARN_ON(!ldev->suspend_state))
146		return -ENOENT;
147
148	pm_runtime_force_resume(dev);
149	ret = drm_atomic_helper_resume(ddev, ldev->suspend_state);
150	if (ret)
151		pm_runtime_force_suspend(dev);
152
153	ldev->suspend_state = NULL;
154
155	return ret;
156}
157
158static __maybe_unused int drv_runtime_suspend(struct device *dev)
159{
160	struct drm_device *ddev = dev_get_drvdata(dev);
161
162	DRM_DEBUG_DRIVER("\n");
163	ltdc_suspend(ddev);
164
165	return 0;
166}
167
168static __maybe_unused int drv_runtime_resume(struct device *dev)
169{
170	struct drm_device *ddev = dev_get_drvdata(dev);
171
172	DRM_DEBUG_DRIVER("\n");
173	return ltdc_resume(ddev);
174}
175
176static const struct dev_pm_ops drv_pm_ops = {
177	SET_SYSTEM_SLEEP_PM_OPS(drv_suspend, drv_resume)
178	SET_RUNTIME_PM_OPS(drv_runtime_suspend,
179			   drv_runtime_resume, NULL)
180};
181
182static int stm_drm_platform_probe(struct platform_device *pdev)
183{
184	struct device *dev = &pdev->dev;
185	struct drm_device *ddev;
186	int ret;
187
188	DRM_DEBUG("%s\n", __func__);
189
190	ret = drm_aperture_remove_framebuffers(&drv_driver);
191	if (ret)
192		return ret;
193
194	dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
195
196	ddev = drm_dev_alloc(&drv_driver, dev);
197	if (IS_ERR(ddev))
198		return PTR_ERR(ddev);
199
200	ret = drv_load(ddev);
201	if (ret)
202		goto err_put;
203
204	ret = drm_dev_register(ddev, 0);
205	if (ret)
206		goto err_put;
207
208	drm_fbdev_dma_setup(ddev, 16);
209
210	return 0;
211
212err_put:
213	drm_dev_put(ddev);
214
215	return ret;
216}
217
218static void stm_drm_platform_remove(struct platform_device *pdev)
219{
220	struct drm_device *ddev = platform_get_drvdata(pdev);
221
222	DRM_DEBUG("%s\n", __func__);
223
224	drm_dev_unregister(ddev);
225	drv_unload(ddev);
226	drm_dev_put(ddev);
227}
228
229static void stm_drm_platform_shutdown(struct platform_device *pdev)
230{
231	drm_atomic_helper_shutdown(platform_get_drvdata(pdev));
232}
233
234static const struct of_device_id drv_dt_ids[] = {
235	{ .compatible = "st,stm32-ltdc"},
236	{ /* end node */ },
237};
238MODULE_DEVICE_TABLE(of, drv_dt_ids);
239
240static struct platform_driver stm_drm_platform_driver = {
241	.probe = stm_drm_platform_probe,
242	.remove_new = stm_drm_platform_remove,
243	.shutdown = stm_drm_platform_shutdown,
244	.driver = {
245		.name = "stm32-display",
246		.of_match_table = drv_dt_ids,
247		.pm = &drv_pm_ops,
248	},
249};
250
251drm_module_platform_driver(stm_drm_platform_driver);
252
253MODULE_AUTHOR("Philippe Cornu <philippe.cornu@st.com>");
254MODULE_AUTHOR("Yannick Fertre <yannick.fertre@st.com>");
255MODULE_AUTHOR("Fabien Dessenne <fabien.dessenne@st.com>");
256MODULE_AUTHOR("Mickael Reulier <mickael.reulier@st.com>");
257MODULE_DESCRIPTION("STMicroelectronics ST DRM LTDC driver");
258MODULE_LICENSE("GPL v2");
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) STMicroelectronics SA 2017
  4 *
  5 * Authors: Philippe Cornu <philippe.cornu@st.com>
  6 *          Yannick Fertre <yannick.fertre@st.com>
  7 *          Fabien Dessenne <fabien.dessenne@st.com>
  8 *          Mickael Reulier <mickael.reulier@st.com>
  9 */
 10
 11#include <linux/component.h>
 12#include <linux/dma-mapping.h>
 
 13#include <linux/module.h>
 14#include <linux/of_platform.h>
 15#include <linux/pm_runtime.h>
 16
 17#include <drm/drm_aperture.h>
 18#include <drm/drm_atomic.h>
 19#include <drm/drm_atomic_helper.h>
 20#include <drm/drm_drv.h>
 21#include <drm/drm_fbdev_generic.h>
 22#include <drm/drm_gem_dma_helper.h>
 23#include <drm/drm_gem_framebuffer_helper.h>
 24#include <drm/drm_module.h>
 25#include <drm/drm_probe_helper.h>
 26#include <drm/drm_vblank.h>
 27
 28#include "ltdc.h"
 29
 30#define STM_MAX_FB_WIDTH	2048
 31#define STM_MAX_FB_HEIGHT	2048 /* same as width to handle orientation */
 32
 33static const struct drm_mode_config_funcs drv_mode_config_funcs = {
 34	.fb_create = drm_gem_fb_create,
 35	.atomic_check = drm_atomic_helper_check,
 36	.atomic_commit = drm_atomic_helper_commit,
 37};
 38
 39static int stm_gem_dma_dumb_create(struct drm_file *file,
 40				   struct drm_device *dev,
 41				   struct drm_mode_create_dumb *args)
 42{
 43	unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
 44
 45	/*
 46	 * in order to optimize data transfer, pitch is aligned on
 47	 * 128 bytes, height is aligned on 4 bytes
 48	 */
 49	args->pitch = roundup(min_pitch, 128);
 50	args->height = roundup(args->height, 4);
 51
 52	return drm_gem_dma_dumb_create_internal(file, dev, args);
 53}
 54
 55DEFINE_DRM_GEM_DMA_FOPS(drv_driver_fops);
 56
 57static const struct drm_driver drv_driver = {
 58	.driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_ATOMIC,
 59	.name = "stm",
 60	.desc = "STMicroelectronics SoC DRM",
 61	.date = "20170330",
 62	.major = 1,
 63	.minor = 0,
 64	.patchlevel = 0,
 65	.fops = &drv_driver_fops,
 66	DRM_GEM_DMA_DRIVER_OPS_WITH_DUMB_CREATE(stm_gem_dma_dumb_create),
 67};
 68
 69static int drv_load(struct drm_device *ddev)
 70{
 71	struct platform_device *pdev = to_platform_device(ddev->dev);
 72	struct ltdc_device *ldev;
 73	int ret;
 74
 75	DRM_DEBUG("%s\n", __func__);
 76
 77	ldev = devm_kzalloc(ddev->dev, sizeof(*ldev), GFP_KERNEL);
 78	if (!ldev)
 79		return -ENOMEM;
 80
 81	ddev->dev_private = (void *)ldev;
 82
 83	ret = drmm_mode_config_init(ddev);
 84	if (ret)
 85		return ret;
 86
 87	/*
 88	 * set max width and height as default value.
 89	 * this value would be used to check framebuffer size limitation
 90	 * at drm_mode_addfb().
 91	 */
 92	ddev->mode_config.min_width = 0;
 93	ddev->mode_config.min_height = 0;
 94	ddev->mode_config.max_width = STM_MAX_FB_WIDTH;
 95	ddev->mode_config.max_height = STM_MAX_FB_HEIGHT;
 96	ddev->mode_config.funcs = &drv_mode_config_funcs;
 97	ddev->mode_config.normalize_zpos = true;
 98
 99	ret = ltdc_load(ddev);
100	if (ret)
101		return ret;
102
103	drm_mode_config_reset(ddev);
104	drm_kms_helper_poll_init(ddev);
105
106	platform_set_drvdata(pdev, ddev);
107
108	return 0;
109}
110
111static void drv_unload(struct drm_device *ddev)
112{
113	DRM_DEBUG("%s\n", __func__);
114
115	drm_kms_helper_poll_fini(ddev);
 
116	ltdc_unload(ddev);
117}
118
119static __maybe_unused int drv_suspend(struct device *dev)
120{
121	struct drm_device *ddev = dev_get_drvdata(dev);
122	struct ltdc_device *ldev = ddev->dev_private;
123	struct drm_atomic_state *state;
124
125	WARN_ON(ldev->suspend_state);
126
127	state = drm_atomic_helper_suspend(ddev);
128	if (IS_ERR(state))
129		return PTR_ERR(state);
130
131	ldev->suspend_state = state;
132	pm_runtime_force_suspend(dev);
133
134	return 0;
135}
136
137static __maybe_unused int drv_resume(struct device *dev)
138{
139	struct drm_device *ddev = dev_get_drvdata(dev);
140	struct ltdc_device *ldev = ddev->dev_private;
141	int ret;
142
143	if (WARN_ON(!ldev->suspend_state))
144		return -ENOENT;
145
146	pm_runtime_force_resume(dev);
147	ret = drm_atomic_helper_resume(ddev, ldev->suspend_state);
148	if (ret)
149		pm_runtime_force_suspend(dev);
150
151	ldev->suspend_state = NULL;
152
153	return ret;
154}
155
156static __maybe_unused int drv_runtime_suspend(struct device *dev)
157{
158	struct drm_device *ddev = dev_get_drvdata(dev);
159
160	DRM_DEBUG_DRIVER("\n");
161	ltdc_suspend(ddev);
162
163	return 0;
164}
165
166static __maybe_unused int drv_runtime_resume(struct device *dev)
167{
168	struct drm_device *ddev = dev_get_drvdata(dev);
169
170	DRM_DEBUG_DRIVER("\n");
171	return ltdc_resume(ddev);
172}
173
174static const struct dev_pm_ops drv_pm_ops = {
175	SET_SYSTEM_SLEEP_PM_OPS(drv_suspend, drv_resume)
176	SET_RUNTIME_PM_OPS(drv_runtime_suspend,
177			   drv_runtime_resume, NULL)
178};
179
180static int stm_drm_platform_probe(struct platform_device *pdev)
181{
182	struct device *dev = &pdev->dev;
183	struct drm_device *ddev;
184	int ret;
185
186	DRM_DEBUG("%s\n", __func__);
187
188	ret = drm_aperture_remove_framebuffers(false, &drv_driver);
189	if (ret)
190		return ret;
191
192	dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
193
194	ddev = drm_dev_alloc(&drv_driver, dev);
195	if (IS_ERR(ddev))
196		return PTR_ERR(ddev);
197
198	ret = drv_load(ddev);
199	if (ret)
200		goto err_put;
201
202	ret = drm_dev_register(ddev, 0);
203	if (ret)
204		goto err_put;
205
206	drm_fbdev_generic_setup(ddev, 16);
207
208	return 0;
209
210err_put:
211	drm_dev_put(ddev);
212
213	return ret;
214}
215
216static int stm_drm_platform_remove(struct platform_device *pdev)
217{
218	struct drm_device *ddev = platform_get_drvdata(pdev);
219
220	DRM_DEBUG("%s\n", __func__);
221
222	drm_dev_unregister(ddev);
223	drv_unload(ddev);
224	drm_dev_put(ddev);
 
225
226	return 0;
 
 
227}
228
229static const struct of_device_id drv_dt_ids[] = {
230	{ .compatible = "st,stm32-ltdc"},
231	{ /* end node */ },
232};
233MODULE_DEVICE_TABLE(of, drv_dt_ids);
234
235static struct platform_driver stm_drm_platform_driver = {
236	.probe = stm_drm_platform_probe,
237	.remove = stm_drm_platform_remove,
 
238	.driver = {
239		.name = "stm32-display",
240		.of_match_table = drv_dt_ids,
241		.pm = &drv_pm_ops,
242	},
243};
244
245drm_module_platform_driver(stm_drm_platform_driver);
246
247MODULE_AUTHOR("Philippe Cornu <philippe.cornu@st.com>");
248MODULE_AUTHOR("Yannick Fertre <yannick.fertre@st.com>");
249MODULE_AUTHOR("Fabien Dessenne <fabien.dessenne@st.com>");
250MODULE_AUTHOR("Mickael Reulier <mickael.reulier@st.com>");
251MODULE_DESCRIPTION("STMicroelectronics ST DRM LTDC driver");
252MODULE_LICENSE("GPL v2");