aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2016-05-11 10:52:50 -0400
committerMaxime Ripard <maxime.ripard@free-electrons.com>2016-05-30 02:28:33 -0400
commit3d6bd9065b7acf8499d414d70bdb4b4955856299 (patch)
tree0d39cf983139987da13d087926410fe437cf4480
parent0de6e914a035076b1241f5738c06c9d3820abd6e (diff)
drm/sun4i: remove simplefb at probe
If simplefb was setup by our bootloader and enabled in the DT, we will have a first framebuffer loaded in our system. However, as soon as our DRM driver will load, it will reset the controller, initialise it and, if the framebuffer emulation is enabled, register a second framebuffer device. This is obviously pretty bad, since the first framebuffer will be some kind of a black hole, with memory still reserved that we can write to safely, but not displayed anywhere. Make sure we remove that framebuffer when we probe so we don't end up in that situation. Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support") Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r--drivers/gpu/drm/sun4i/sun4i_drv.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/gpu/drm/sun4i/sun4i_drv.c b/drivers/gpu/drm/sun4i/sun4i_drv.c
index 76e922bb60e5..af62b24c39b1 100644
--- a/drivers/gpu/drm/sun4i/sun4i_drv.c
+++ b/drivers/gpu/drm/sun4i/sun4i_drv.c
@@ -125,6 +125,22 @@ static struct drm_driver sun4i_drv_driver = {
125 .disable_vblank = sun4i_drv_disable_vblank, 125 .disable_vblank = sun4i_drv_disable_vblank,
126}; 126};
127 127
128static void sun4i_remove_framebuffers(void)
129{
130 struct apertures_struct *ap;
131
132 ap = alloc_apertures(1);
133 if (!ap)
134 return;
135
136 /* The framebuffer can be located anywhere in RAM */
137 ap->ranges[0].base = 0;
138 ap->ranges[0].size = ~0;
139
140 remove_conflicting_framebuffers(ap, "sun4i-drm-fb", false);
141 kfree(ap);
142}
143
128static int sun4i_drv_bind(struct device *dev) 144static int sun4i_drv_bind(struct device *dev)
129{ 145{
130 struct drm_device *drm; 146 struct drm_device *drm;
@@ -172,6 +188,9 @@ static int sun4i_drv_bind(struct device *dev)
172 } 188 }
173 drm->irq_enabled = true; 189 drm->irq_enabled = true;
174 190
191 /* Remove early framebuffers (ie. simplefb) */
192 sun4i_remove_framebuffers();
193
175 /* Create our framebuffer */ 194 /* Create our framebuffer */
176 drv->fbdev = sun4i_framebuffer_init(drm); 195 drv->fbdev = sun4i_framebuffer_init(drm);
177 if (IS_ERR(drv->fbdev)) { 196 if (IS_ERR(drv->fbdev)) {