diff options
| author | Dmitry Torokhov <[email protected]> | 2023-08-30 16:06:38 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2023-08-30 16:06:38 -0700 | 
| commit | 1ac731c529cd4d6adbce134754b51ff7d822b145 (patch) | |
| tree | 143ab3f35ca5f3b69f583c84e6964b17139c2ec1 /drivers/gpu/drm/tiny/simpledrm.c | |
| parent | 07b4c950f27bef0362dc6ad7ee713aab61d58149 (diff) | |
| parent | 54116d442e001e1b6bd482122043b1870998a1f3 (diff) | |
Merge branch 'next' into for-linus
Prepare input updates for 6.6 merge window.
Diffstat (limited to 'drivers/gpu/drm/tiny/simpledrm.c')
| -rw-r--r-- | drivers/gpu/drm/tiny/simpledrm.c | 33 | 
1 files changed, 23 insertions, 10 deletions
diff --git a/drivers/gpu/drm/tiny/simpledrm.c b/drivers/gpu/drm/tiny/simpledrm.c index 63881a3754f8..25e11ef11c4c 100644 --- a/drivers/gpu/drm/tiny/simpledrm.c +++ b/drivers/gpu/drm/tiny/simpledrm.c @@ -204,7 +204,7 @@ simplefb_get_memory_of(struct drm_device *dev, struct device_node *of_node)  	if (err)  		return ERR_PTR(err); -	if (of_get_property(of_node, "reg", NULL)) +	if (of_property_present(of_node, "reg"))  		drm_warn(dev, "preferring \"memory-region\" over \"reg\" property\n");  	return res; @@ -606,16 +606,12 @@ static const struct drm_mode_config_funcs simpledrm_mode_config_funcs = {   */  static struct drm_display_mode simpledrm_mode(unsigned int width, -					      unsigned int height) +					      unsigned int height, +					      unsigned int width_mm, +					      unsigned int height_mm)  { -	/* -	 * Assume a monitor resolution of 96 dpi to -	 * get a somewhat reasonable screen size. -	 */  	const struct drm_display_mode mode = { -		DRM_MODE_INIT(60, width, height, -			      DRM_MODE_RES_MM(width, 96ul), -			      DRM_MODE_RES_MM(height, 96ul)) +		DRM_MODE_INIT(60, width, height, width_mm, height_mm)  	};  	return mode; @@ -629,6 +625,8 @@ static struct simpledrm_device *simpledrm_device_create(struct drm_driver *drv,  	struct simpledrm_device *sdev;  	struct drm_device *dev;  	int width, height, stride; +	int width_mm = 0, height_mm = 0; +	struct device_node *panel_node;  	const struct drm_format_info *format;  	struct resource *res, *mem = NULL;  	struct drm_plane *primary_plane; @@ -685,6 +683,12 @@ static struct simpledrm_device *simpledrm_device_create(struct drm_driver *drv,  		mem = simplefb_get_memory_of(dev, of_node);  		if (IS_ERR(mem))  			return ERR_CAST(mem); +		panel_node = of_parse_phandle(of_node, "panel", 0); +		if (panel_node) { +			simplefb_read_u32_of(dev, panel_node, "width-mm", &width_mm); +			simplefb_read_u32_of(dev, panel_node, "height-mm", &height_mm); +			of_node_put(panel_node); +		}  	} else {  		drm_err(dev, "no simplefb configuration found\n");  		return ERR_PTR(-ENODEV); @@ -695,7 +699,16 @@ static struct simpledrm_device *simpledrm_device_create(struct drm_driver *drv,  			return ERR_PTR(-EINVAL);  	} -	sdev->mode = simpledrm_mode(width, height); +	/* +	 * Assume a monitor resolution of 96 dpi if physical dimensions +	 * are not specified to get a somewhat reasonable screen size. +	 */ +	if (!width_mm) +		width_mm = DRM_MODE_RES_MM(width, 96ul); +	if (!height_mm) +		height_mm = DRM_MODE_RES_MM(height, 96ul); + +	sdev->mode = simpledrm_mode(width, height, width_mm, height_mm);  	sdev->format = format;  	sdev->pitch = stride;  |