1 // SPDX-License-Identifier: GPL-2.0-only
4 #include <linux/of_clk.h>
5 #include <linux/minmax.h>
6 #include <linux/of_address.h>
7 #include <linux/platform_data/simplefb.h>
8 #include <linux/platform_device.h>
9 #include <linux/pm_domain.h>
10 #include <linux/regulator/consumer.h>
12 #include <drm/drm_aperture.h>
13 #include <drm/drm_atomic.h>
14 #include <drm/drm_atomic_state_helper.h>
15 #include <drm/drm_connector.h>
16 #include <drm/drm_crtc_helper.h>
17 #include <drm/drm_damage_helper.h>
18 #include <drm/drm_device.h>
19 #include <drm/drm_drv.h>
20 #include <drm/drm_fbdev_generic.h>
21 #include <drm/drm_format_helper.h>
22 #include <drm/drm_gem_atomic_helper.h>
23 #include <drm/drm_gem_framebuffer_helper.h>
24 #include <drm/drm_gem_shmem_helper.h>
25 #include <drm/drm_managed.h>
26 #include <drm/drm_modeset_helper_vtables.h>
27 #include <drm/drm_plane_helper.h>
28 #include <drm/drm_probe_helper.h>
30 #define DRIVER_NAME "simpledrm"
31 #define DRIVER_DESC "DRM driver for simple-framebuffer platform devices"
32 #define DRIVER_DATE "20200625"
33 #define DRIVER_MAJOR 1
34 #define DRIVER_MINOR 0
37 * Helpers for simplefb
41 simplefb_get_validated_int(struct drm_device *dev, const char *name,
44 if (value > INT_MAX) {
45 drm_err(dev, "simplefb: invalid framebuffer %s of %u\n",
53 simplefb_get_validated_int0(struct drm_device *dev, const char *name,
57 drm_err(dev, "simplefb: invalid framebuffer %s of %u\n",
61 return simplefb_get_validated_int(dev, name, value);
64 static const struct drm_format_info *
65 simplefb_get_validated_format(struct drm_device *dev, const char *format_name)
67 static const struct simplefb_format formats[] = SIMPLEFB_FORMATS;
68 const struct simplefb_format *fmt = formats;
69 const struct simplefb_format *end = fmt + ARRAY_SIZE(formats);
70 const struct drm_format_info *info;
73 drm_err(dev, "simplefb: missing framebuffer format\n");
74 return ERR_PTR(-EINVAL);
78 if (!strcmp(format_name, fmt->name)) {
79 info = drm_format_info(fmt->fourcc);
81 return ERR_PTR(-EINVAL);
87 drm_err(dev, "simplefb: unknown framebuffer format %s\n",
90 return ERR_PTR(-EINVAL);
94 simplefb_get_width_pd(struct drm_device *dev,
95 const struct simplefb_platform_data *pd)
97 return simplefb_get_validated_int0(dev, "width", pd->width);
101 simplefb_get_height_pd(struct drm_device *dev,
102 const struct simplefb_platform_data *pd)
104 return simplefb_get_validated_int0(dev, "height", pd->height);
108 simplefb_get_stride_pd(struct drm_device *dev,
109 const struct simplefb_platform_data *pd)
111 return simplefb_get_validated_int(dev, "stride", pd->stride);
114 static const struct drm_format_info *
115 simplefb_get_format_pd(struct drm_device *dev,
116 const struct simplefb_platform_data *pd)
118 return simplefb_get_validated_format(dev, pd->format);
122 simplefb_read_u32_of(struct drm_device *dev, struct device_node *of_node,
123 const char *name, u32 *value)
125 int ret = of_property_read_u32(of_node, name, value);
128 drm_err(dev, "simplefb: cannot parse framebuffer %s: error %d\n",
134 simplefb_read_string_of(struct drm_device *dev, struct device_node *of_node,
135 const char *name, const char **value)
137 int ret = of_property_read_string(of_node, name, value);
140 drm_err(dev, "simplefb: cannot parse framebuffer %s: error %d\n",
146 simplefb_get_width_of(struct drm_device *dev, struct device_node *of_node)
149 int ret = simplefb_read_u32_of(dev, of_node, "width", &width);
153 return simplefb_get_validated_int0(dev, "width", width);
157 simplefb_get_height_of(struct drm_device *dev, struct device_node *of_node)
160 int ret = simplefb_read_u32_of(dev, of_node, "height", &height);
164 return simplefb_get_validated_int0(dev, "height", height);
168 simplefb_get_stride_of(struct drm_device *dev, struct device_node *of_node)
171 int ret = simplefb_read_u32_of(dev, of_node, "stride", &stride);
175 return simplefb_get_validated_int(dev, "stride", stride);
178 static const struct drm_format_info *
179 simplefb_get_format_of(struct drm_device *dev, struct device_node *of_node)
182 int ret = simplefb_read_string_of(dev, of_node, "format", &format);
186 return simplefb_get_validated_format(dev, format);
189 static struct resource *
190 simplefb_get_memory_of(struct drm_device *dev, struct device_node *of_node)
192 struct device_node *np;
193 struct resource *res;
196 np = of_parse_phandle(of_node, "memory-region", 0);
200 res = devm_kzalloc(dev->dev, sizeof(*res), GFP_KERNEL);
202 return ERR_PTR(-ENOMEM);
204 err = of_address_to_resource(np, 0, res);
208 if (of_property_present(of_node, "reg"))
209 drm_warn(dev, "preferring \"memory-region\" over \"reg\" property\n");
215 * Simple Framebuffer device
218 struct simpledrm_device {
219 struct drm_device dev;
222 #if defined CONFIG_OF && defined CONFIG_COMMON_CLK
223 unsigned int clk_count;
227 #if defined CONFIG_OF && defined CONFIG_REGULATOR
228 unsigned int regulator_count;
229 struct regulator **regulators;
232 #if defined CONFIG_OF && defined CONFIG_PM_GENERIC_DOMAINS
234 struct device **pwr_dom_devs;
235 struct device_link **pwr_dom_links;
238 /* simplefb settings */
239 struct drm_display_mode mode;
240 const struct drm_format_info *format;
243 /* memory management */
244 struct iosys_map screen_base;
249 struct drm_plane primary_plane;
250 struct drm_crtc crtc;
251 struct drm_encoder encoder;
252 struct drm_connector connector;
255 static struct simpledrm_device *simpledrm_device_of_dev(struct drm_device *dev)
257 return container_of(dev, struct simpledrm_device, dev);
264 #if defined CONFIG_OF && defined CONFIG_COMMON_CLK
266 * Clock handling code.
268 * Here we handle the clocks property of our "simple-framebuffer" dt node.
269 * This is necessary so that we can make sure that any clocks needed by
270 * the display engine that the bootloader set up for us (and for which it
271 * provided a simplefb dt node), stay up, for the life of the simplefb
274 * When the driver unloads, we cleanly disable, and then release the clocks.
276 * We only complain about errors here, no action is taken as the most likely
277 * error can only happen due to a mismatch between the bootloader which set
278 * up simplefb, and the clock definitions in the device tree. Chances are
279 * that there are no adverse effects, and if there are, a clean teardown of
280 * the fb probe will not help us much either. So just complain and carry on,
281 * and hope that the user actually gets a working fb at the end of things.
284 static void simpledrm_device_release_clocks(void *res)
286 struct simpledrm_device *sdev = simpledrm_device_of_dev(res);
289 for (i = 0; i < sdev->clk_count; ++i) {
291 clk_disable_unprepare(sdev->clks[i]);
292 clk_put(sdev->clks[i]);
297 static int simpledrm_device_init_clocks(struct simpledrm_device *sdev)
299 struct drm_device *dev = &sdev->dev;
300 struct platform_device *pdev = to_platform_device(dev->dev);
301 struct device_node *of_node = pdev->dev.of_node;
306 if (dev_get_platdata(&pdev->dev) || !of_node)
309 sdev->clk_count = of_clk_get_parent_count(of_node);
310 if (!sdev->clk_count)
313 sdev->clks = drmm_kzalloc(dev, sdev->clk_count * sizeof(sdev->clks[0]),
318 for (i = 0; i < sdev->clk_count; ++i) {
319 clock = of_clk_get(of_node, i);
321 ret = PTR_ERR(clock);
322 if (ret == -EPROBE_DEFER)
324 drm_err(dev, "clock %u not found: %d\n", i, ret);
327 ret = clk_prepare_enable(clock);
329 drm_err(dev, "failed to enable clock %u: %d\n",
334 sdev->clks[i] = clock;
337 return devm_add_action_or_reset(&pdev->dev,
338 simpledrm_device_release_clocks,
345 clk_disable_unprepare(sdev->clks[i]);
346 clk_put(sdev->clks[i]);
352 static int simpledrm_device_init_clocks(struct simpledrm_device *sdev)
358 #if defined CONFIG_OF && defined CONFIG_REGULATOR
360 #define SUPPLY_SUFFIX "-supply"
363 * Regulator handling code.
365 * Here we handle the num-supplies and vin*-supply properties of our
366 * "simple-framebuffer" dt node. This is necessary so that we can make sure
367 * that any regulators needed by the display hardware that the bootloader
368 * set up for us (and for which it provided a simplefb dt node), stay up,
369 * for the life of the simplefb driver.
371 * When the driver unloads, we cleanly disable, and then release the
374 * We only complain about errors here, no action is taken as the most likely
375 * error can only happen due to a mismatch between the bootloader which set
376 * up simplefb, and the regulator definitions in the device tree. Chances are
377 * that there are no adverse effects, and if there are, a clean teardown of
378 * the fb probe will not help us much either. So just complain and carry on,
379 * and hope that the user actually gets a working fb at the end of things.
382 static void simpledrm_device_release_regulators(void *res)
384 struct simpledrm_device *sdev = simpledrm_device_of_dev(res);
387 for (i = 0; i < sdev->regulator_count; ++i) {
388 if (sdev->regulators[i]) {
389 regulator_disable(sdev->regulators[i]);
390 regulator_put(sdev->regulators[i]);
395 static int simpledrm_device_init_regulators(struct simpledrm_device *sdev)
397 struct drm_device *dev = &sdev->dev;
398 struct platform_device *pdev = to_platform_device(dev->dev);
399 struct device_node *of_node = pdev->dev.of_node;
400 struct property *prop;
401 struct regulator *regulator;
403 unsigned int count = 0, i = 0;
406 if (dev_get_platdata(&pdev->dev) || !of_node)
409 /* Count the number of regulator supplies */
410 for_each_property_of_node(of_node, prop) {
411 p = strstr(prop->name, SUPPLY_SUFFIX);
412 if (p && p != prop->name)
419 sdev->regulators = drmm_kzalloc(dev,
420 count * sizeof(sdev->regulators[0]),
422 if (!sdev->regulators)
425 for_each_property_of_node(of_node, prop) {
426 char name[32]; /* 32 is max size of property name */
429 p = strstr(prop->name, SUPPLY_SUFFIX);
430 if (!p || p == prop->name)
432 len = strlen(prop->name) - strlen(SUPPLY_SUFFIX) + 1;
433 strscpy(name, prop->name, min(sizeof(name), len));
435 regulator = regulator_get_optional(&pdev->dev, name);
436 if (IS_ERR(regulator)) {
437 ret = PTR_ERR(regulator);
438 if (ret == -EPROBE_DEFER)
440 drm_err(dev, "regulator %s not found: %d\n",
445 ret = regulator_enable(regulator);
447 drm_err(dev, "failed to enable regulator %u: %d\n",
449 regulator_put(regulator);
453 sdev->regulators[i++] = regulator;
455 sdev->regulator_count = i;
457 return devm_add_action_or_reset(&pdev->dev,
458 simpledrm_device_release_regulators,
464 if (sdev->regulators[i]) {
465 regulator_disable(sdev->regulators[i]);
466 regulator_put(sdev->regulators[i]);
472 static int simpledrm_device_init_regulators(struct simpledrm_device *sdev)
478 #if defined CONFIG_OF && defined CONFIG_PM_GENERIC_DOMAINS
480 * Generic power domain handling code.
482 * Here we handle the power-domains properties of our "simple-framebuffer"
483 * dt node. This is only necessary if there is more than one power-domain.
484 * A single power-domains is handled automatically by the driver core. Multiple
485 * power-domains have to be handled by drivers since the driver core can't know
486 * the correct power sequencing. Power sequencing is not an issue for simpledrm
487 * since the bootloader has put the power domains already in the correct state.
488 * simpledrm has only to ensure they remain active for its lifetime.
490 * When the driver unloads, we detach from the power-domains.
492 * We only complain about errors here, no action is taken as the most likely
493 * error can only happen due to a mismatch between the bootloader which set
494 * up the "simple-framebuffer" dt node, and the PM domain providers in the
495 * device tree. Chances are that there are no adverse effects, and if there are,
496 * a clean teardown of the fb probe will not help us much either. So just
497 * complain and carry on, and hope that the user actually gets a working fb at
500 static void simpledrm_device_detach_genpd(void *res)
503 struct simpledrm_device *sdev = res;
505 if (sdev->pwr_dom_count <= 1)
508 for (i = sdev->pwr_dom_count - 1; i >= 0; i--) {
509 if (sdev->pwr_dom_links[i])
510 device_link_del(sdev->pwr_dom_links[i]);
511 if (!IS_ERR_OR_NULL(sdev->pwr_dom_devs[i]))
512 dev_pm_domain_detach(sdev->pwr_dom_devs[i], true);
516 static int simpledrm_device_attach_genpd(struct simpledrm_device *sdev)
518 struct device *dev = sdev->dev.dev;
521 sdev->pwr_dom_count = of_count_phandle_with_args(dev->of_node, "power-domains",
522 "#power-domain-cells");
524 * Single power-domain devices are handled by driver core nothing to do
525 * here. The same for device nodes without "power-domains" property.
527 if (sdev->pwr_dom_count <= 1)
530 sdev->pwr_dom_devs = devm_kcalloc(dev, sdev->pwr_dom_count,
531 sizeof(*sdev->pwr_dom_devs),
533 if (!sdev->pwr_dom_devs)
536 sdev->pwr_dom_links = devm_kcalloc(dev, sdev->pwr_dom_count,
537 sizeof(*sdev->pwr_dom_links),
539 if (!sdev->pwr_dom_links)
542 for (i = 0; i < sdev->pwr_dom_count; i++) {
543 sdev->pwr_dom_devs[i] = dev_pm_domain_attach_by_id(dev, i);
544 if (IS_ERR(sdev->pwr_dom_devs[i])) {
545 int ret = PTR_ERR(sdev->pwr_dom_devs[i]);
546 if (ret == -EPROBE_DEFER) {
547 simpledrm_device_detach_genpd(sdev);
551 "pm_domain_attach_by_id(%u) failed: %d\n", i, ret);
555 sdev->pwr_dom_links[i] = device_link_add(dev,
556 sdev->pwr_dom_devs[i],
560 if (!sdev->pwr_dom_links[i])
561 drm_warn(&sdev->dev, "failed to link power-domain %d\n", i);
564 return devm_add_action_or_reset(dev, simpledrm_device_detach_genpd, sdev);
567 static int simpledrm_device_attach_genpd(struct simpledrm_device *sdev)
577 static const uint64_t simpledrm_primary_plane_format_modifiers[] = {
578 DRM_FORMAT_MOD_LINEAR,
579 DRM_FORMAT_MOD_INVALID
582 static void simpledrm_primary_plane_helper_atomic_update(struct drm_plane *plane,
583 struct drm_atomic_state *state)
585 struct drm_plane_state *plane_state = drm_atomic_get_new_plane_state(state, plane);
586 struct drm_plane_state *old_plane_state = drm_atomic_get_old_plane_state(state, plane);
587 struct drm_shadow_plane_state *shadow_plane_state = to_drm_shadow_plane_state(plane_state);
588 struct drm_framebuffer *fb = plane_state->fb;
589 struct drm_device *dev = plane->dev;
590 struct simpledrm_device *sdev = simpledrm_device_of_dev(dev);
591 struct drm_atomic_helper_damage_iter iter;
592 struct drm_rect damage;
595 ret = drm_gem_fb_begin_cpu_access(fb, DMA_FROM_DEVICE);
599 if (!drm_dev_enter(dev, &idx))
600 goto out_drm_gem_fb_end_cpu_access;
602 drm_atomic_helper_damage_iter_init(&iter, old_plane_state, plane_state);
603 drm_atomic_for_each_plane_damage(&iter, &damage) {
604 struct drm_rect dst_clip = plane_state->dst;
605 struct iosys_map dst = sdev->screen_base;
607 if (!drm_rect_intersect(&dst_clip, &damage))
610 iosys_map_incr(&dst, drm_fb_clip_offset(sdev->pitch, sdev->format, &dst_clip));
611 drm_fb_blit(&dst, &sdev->pitch, sdev->format->format, shadow_plane_state->data,
616 out_drm_gem_fb_end_cpu_access:
617 drm_gem_fb_end_cpu_access(fb, DMA_FROM_DEVICE);
620 static void simpledrm_primary_plane_helper_atomic_disable(struct drm_plane *plane,
621 struct drm_atomic_state *state)
623 struct drm_device *dev = plane->dev;
624 struct simpledrm_device *sdev = simpledrm_device_of_dev(dev);
627 if (!drm_dev_enter(dev, &idx))
630 /* Clear screen to black if disabled */
631 iosys_map_memset(&sdev->screen_base, 0, 0, sdev->pitch * sdev->mode.vdisplay);
636 static const struct drm_plane_helper_funcs simpledrm_primary_plane_helper_funcs = {
637 DRM_GEM_SHADOW_PLANE_HELPER_FUNCS,
638 .atomic_check = drm_plane_helper_atomic_check,
639 .atomic_update = simpledrm_primary_plane_helper_atomic_update,
640 .atomic_disable = simpledrm_primary_plane_helper_atomic_disable,
643 static const struct drm_plane_funcs simpledrm_primary_plane_funcs = {
644 .update_plane = drm_atomic_helper_update_plane,
645 .disable_plane = drm_atomic_helper_disable_plane,
646 .destroy = drm_plane_cleanup,
647 DRM_GEM_SHADOW_PLANE_FUNCS,
650 static enum drm_mode_status simpledrm_crtc_helper_mode_valid(struct drm_crtc *crtc,
651 const struct drm_display_mode *mode)
653 struct simpledrm_device *sdev = simpledrm_device_of_dev(crtc->dev);
655 return drm_crtc_helper_mode_valid_fixed(crtc, mode, &sdev->mode);
659 * The CRTC is always enabled. Screen updates are performed by
660 * the primary plane's atomic_update function. Disabling clears
661 * the screen in the primary plane's atomic_disable function.
663 static const struct drm_crtc_helper_funcs simpledrm_crtc_helper_funcs = {
664 .mode_valid = simpledrm_crtc_helper_mode_valid,
665 .atomic_check = drm_crtc_helper_atomic_check,
668 static const struct drm_crtc_funcs simpledrm_crtc_funcs = {
669 .reset = drm_atomic_helper_crtc_reset,
670 .destroy = drm_crtc_cleanup,
671 .set_config = drm_atomic_helper_set_config,
672 .page_flip = drm_atomic_helper_page_flip,
673 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
674 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
677 static const struct drm_encoder_funcs simpledrm_encoder_funcs = {
678 .destroy = drm_encoder_cleanup,
681 static int simpledrm_connector_helper_get_modes(struct drm_connector *connector)
683 struct simpledrm_device *sdev = simpledrm_device_of_dev(connector->dev);
685 return drm_connector_helper_get_modes_fixed(connector, &sdev->mode);
688 static const struct drm_connector_helper_funcs simpledrm_connector_helper_funcs = {
689 .get_modes = simpledrm_connector_helper_get_modes,
692 static const struct drm_connector_funcs simpledrm_connector_funcs = {
693 .reset = drm_atomic_helper_connector_reset,
694 .fill_modes = drm_helper_probe_single_connector_modes,
695 .destroy = drm_connector_cleanup,
696 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
697 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
700 static const struct drm_mode_config_funcs simpledrm_mode_config_funcs = {
701 .fb_create = drm_gem_fb_create_with_dirty,
702 .atomic_check = drm_atomic_helper_check,
703 .atomic_commit = drm_atomic_helper_commit,
710 static struct drm_display_mode simpledrm_mode(unsigned int width,
712 unsigned int width_mm,
713 unsigned int height_mm)
715 const struct drm_display_mode mode = {
716 DRM_MODE_INIT(60, width, height, width_mm, height_mm)
722 static struct simpledrm_device *simpledrm_device_create(struct drm_driver *drv,
723 struct platform_device *pdev)
725 const struct simplefb_platform_data *pd = dev_get_platdata(&pdev->dev);
726 struct device_node *of_node = pdev->dev.of_node;
727 struct simpledrm_device *sdev;
728 struct drm_device *dev;
729 int width, height, stride;
730 int width_mm = 0, height_mm = 0;
731 struct device_node *panel_node;
732 const struct drm_format_info *format;
733 struct resource *res, *mem = NULL;
734 struct drm_plane *primary_plane;
735 struct drm_crtc *crtc;
736 struct drm_encoder *encoder;
737 struct drm_connector *connector;
738 unsigned long max_width, max_height;
742 sdev = devm_drm_dev_alloc(&pdev->dev, drv, struct simpledrm_device, dev);
744 return ERR_CAST(sdev);
746 platform_set_drvdata(pdev, sdev);
752 ret = simpledrm_device_init_clocks(sdev);
755 ret = simpledrm_device_init_regulators(sdev);
758 ret = simpledrm_device_attach_genpd(sdev);
763 width = simplefb_get_width_pd(dev, pd);
765 return ERR_PTR(width);
766 height = simplefb_get_height_pd(dev, pd);
768 return ERR_PTR(height);
769 stride = simplefb_get_stride_pd(dev, pd);
771 return ERR_PTR(stride);
772 format = simplefb_get_format_pd(dev, pd);
774 return ERR_CAST(format);
775 } else if (of_node) {
776 width = simplefb_get_width_of(dev, of_node);
778 return ERR_PTR(width);
779 height = simplefb_get_height_of(dev, of_node);
781 return ERR_PTR(height);
782 stride = simplefb_get_stride_of(dev, of_node);
784 return ERR_PTR(stride);
785 format = simplefb_get_format_of(dev, of_node);
787 return ERR_CAST(format);
788 mem = simplefb_get_memory_of(dev, of_node);
790 return ERR_CAST(mem);
791 panel_node = of_parse_phandle(of_node, "panel", 0);
793 simplefb_read_u32_of(dev, panel_node, "width-mm", &width_mm);
794 simplefb_read_u32_of(dev, panel_node, "height-mm", &height_mm);
795 of_node_put(panel_node);
798 drm_err(dev, "no simplefb configuration found\n");
799 return ERR_PTR(-ENODEV);
802 stride = drm_format_info_min_pitch(format, 0, width);
803 if (drm_WARN_ON(dev, !stride))
804 return ERR_PTR(-EINVAL);
808 * Assume a monitor resolution of 96 dpi if physical dimensions
809 * are not specified to get a somewhat reasonable screen size.
812 width_mm = DRM_MODE_RES_MM(width, 96ul);
814 height_mm = DRM_MODE_RES_MM(height, 96ul);
816 sdev->mode = simpledrm_mode(width, height, width_mm, height_mm);
817 sdev->format = format;
818 sdev->pitch = stride;
820 drm_dbg(dev, "display mode={" DRM_MODE_FMT "}\n", DRM_MODE_ARG(&sdev->mode));
821 drm_dbg(dev, "framebuffer format=%p4cc, size=%dx%d, stride=%d byte\n",
822 &format->format, width, height, stride);
831 ret = devm_aperture_acquire_from_firmware(dev, mem->start, resource_size(mem));
833 drm_err(dev, "could not acquire memory range %pr: %d\n", mem, ret);
837 drm_dbg(dev, "using system memory framebuffer at %pr\n", mem);
839 screen_base = devm_memremap(dev->dev, mem->start, resource_size(mem), MEMREMAP_WC);
840 if (IS_ERR(screen_base))
843 iosys_map_set_vaddr(&sdev->screen_base, screen_base);
845 void __iomem *screen_base;
847 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
849 return ERR_PTR(-EINVAL);
851 ret = devm_aperture_acquire_from_firmware(dev, res->start, resource_size(res));
853 drm_err(dev, "could not acquire memory range %pr: %d\n", res, ret);
857 drm_dbg(dev, "using I/O memory framebuffer at %pr\n", res);
859 mem = devm_request_mem_region(&pdev->dev, res->start, resource_size(res),
863 * We cannot make this fatal. Sometimes this comes from magic
864 * spaces our resource handlers simply don't know about. Use
865 * the I/O-memory resource as-is and try to map that instead.
867 drm_warn(dev, "could not acquire memory region %pr\n", res);
871 screen_base = devm_ioremap_wc(&pdev->dev, mem->start, resource_size(mem));
873 return ERR_PTR(-ENOMEM);
875 iosys_map_set_vaddr_iomem(&sdev->screen_base, screen_base);
882 ret = drmm_mode_config_init(dev);
886 max_width = max_t(unsigned long, width, DRM_SHADOW_PLANE_MAX_WIDTH);
887 max_height = max_t(unsigned long, height, DRM_SHADOW_PLANE_MAX_HEIGHT);
889 dev->mode_config.min_width = width;
890 dev->mode_config.max_width = max_width;
891 dev->mode_config.min_height = height;
892 dev->mode_config.max_height = max_height;
893 dev->mode_config.preferred_depth = format->depth;
894 dev->mode_config.funcs = &simpledrm_mode_config_funcs;
898 nformats = drm_fb_build_fourcc_list(dev, &format->format, 1,
899 sdev->formats, ARRAY_SIZE(sdev->formats));
901 primary_plane = &sdev->primary_plane;
902 ret = drm_universal_plane_init(dev, primary_plane, 0, &simpledrm_primary_plane_funcs,
903 sdev->formats, nformats,
904 simpledrm_primary_plane_format_modifiers,
905 DRM_PLANE_TYPE_PRIMARY, NULL);
908 drm_plane_helper_add(primary_plane, &simpledrm_primary_plane_helper_funcs);
909 drm_plane_enable_fb_damage_clips(primary_plane);
914 ret = drm_crtc_init_with_planes(dev, crtc, primary_plane, NULL,
915 &simpledrm_crtc_funcs, NULL);
918 drm_crtc_helper_add(crtc, &simpledrm_crtc_helper_funcs);
922 encoder = &sdev->encoder;
923 ret = drm_encoder_init(dev, encoder, &simpledrm_encoder_funcs,
924 DRM_MODE_ENCODER_NONE, NULL);
927 encoder->possible_crtcs = drm_crtc_mask(crtc);
931 connector = &sdev->connector;
932 ret = drm_connector_init(dev, connector, &simpledrm_connector_funcs,
933 DRM_MODE_CONNECTOR_Unknown);
936 drm_connector_helper_add(connector, &simpledrm_connector_helper_funcs);
937 drm_connector_set_panel_orientation_with_quirk(connector,
938 DRM_MODE_PANEL_ORIENTATION_UNKNOWN,
941 ret = drm_connector_attach_encoder(connector, encoder);
945 drm_mode_config_reset(dev);
954 DEFINE_DRM_GEM_FOPS(simpledrm_fops);
956 static struct drm_driver simpledrm_driver = {
957 DRM_GEM_SHMEM_DRIVER_OPS,
961 .major = DRIVER_MAJOR,
962 .minor = DRIVER_MINOR,
963 .driver_features = DRIVER_ATOMIC | DRIVER_GEM | DRIVER_MODESET,
964 .fops = &simpledrm_fops,
971 static int simpledrm_probe(struct platform_device *pdev)
973 struct simpledrm_device *sdev;
974 struct drm_device *dev;
975 unsigned int color_mode;
978 sdev = simpledrm_device_create(&simpledrm_driver, pdev);
980 return PTR_ERR(sdev);
983 ret = drm_dev_register(dev, 0);
987 color_mode = drm_format_info_bpp(sdev->format, 0);
988 if (color_mode == 16)
989 color_mode = sdev->format->depth; // can be 15 or 16
991 drm_fbdev_generic_setup(dev, color_mode);
996 static void simpledrm_remove(struct platform_device *pdev)
998 struct simpledrm_device *sdev = platform_get_drvdata(pdev);
999 struct drm_device *dev = &sdev->dev;
1001 drm_dev_unplug(dev);
1004 static const struct of_device_id simpledrm_of_match_table[] = {
1005 { .compatible = "simple-framebuffer", },
1008 MODULE_DEVICE_TABLE(of, simpledrm_of_match_table);
1010 static struct platform_driver simpledrm_platform_driver = {
1012 .name = "simple-framebuffer", /* connect to sysfb */
1013 .of_match_table = simpledrm_of_match_table,
1015 .probe = simpledrm_probe,
1016 .remove_new = simpledrm_remove,
1019 module_platform_driver(simpledrm_platform_driver);
1021 MODULE_DESCRIPTION(DRIVER_DESC);
1022 MODULE_LICENSE("GPL v2");