All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] video: bcm2835: use bus_to_phys() on FB address
@ 2016-02-06 17:42 Stephen Warren
  2016-02-06 18:13 ` Anatolij Gustschin
  0 siblings, 1 reply; 2+ messages in thread
From: Stephen Warren @ 2016-02-06 17:42 UTC (permalink / raw)
  To: u-boot

The FB address is generated by the firmware running on the GPU/VideoCore
and is a "bus" address. This address is the other side of an IOMMU from
the ARM upon which U-Boot is running. Use bus_to_phys() to convert this
to an ARM physical address. Without this, U-Boot seems to work just fine,
but once the Linux kernel boots on an RPi2, accessing the FB memory often
causes a hard system hang.

This is related to:
122426d46e31 ARM: bcm2835: use phys_to_bus() for mbox
5c0beb5c58c8 usb: dwc2: use phys_to_bus/bus_to_phys
79340db7f1f6 ARM: bcm2835: implement phys_to_bus/bus_to_phys

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
---
 drivers/video/bcm2835.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/video/bcm2835.c b/drivers/video/bcm2835.c
index 7867fe3895d0..bff1fcb9eaf7 100644
--- a/drivers/video/bcm2835.c
+++ b/drivers/video/bcm2835.c
@@ -7,6 +7,7 @@
 #include <common.h>
 #include <lcd.h>
 #include <memalign.h>
+#include <phys2bus.h>
 #include <asm/arch/mbox.h>
 #include <asm/global_data.h>
 
@@ -103,7 +104,8 @@ void lcd_ctrl_init(void *lcdbase)
 	panel_info.vl_row = h;
 	panel_info.vl_bpix = LCD_COLOR16;
 
-	gd->fb_base = msg_setup->allocate_buffer.body.resp.fb_address;
+	gd->fb_base = bus_to_phys(
+		msg_setup->allocate_buffer.body.resp.fb_address);
 }
 
 void lcd_enable(void)
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH] video: bcm2835: use bus_to_phys() on FB address
  2016-02-06 17:42 [U-Boot] [PATCH] video: bcm2835: use bus_to_phys() on FB address Stephen Warren
@ 2016-02-06 18:13 ` Anatolij Gustschin
  0 siblings, 0 replies; 2+ messages in thread
From: Anatolij Gustschin @ 2016-02-06 18:13 UTC (permalink / raw)
  To: u-boot

Hi Stephen,

On Sat,  6 Feb 2016 10:42:43 -0700
Stephen Warren swarren at wwwdotorg.org wrote:

> The FB address is generated by the firmware running on the GPU/VideoCore
> and is a "bus" address. This address is the other side of an IOMMU from
> the ARM upon which U-Boot is running. Use bus_to_phys() to convert this
> to an ARM physical address. Without this, U-Boot seems to work just fine,
> but once the Linux kernel boots on an RPi2, accessing the FB memory often
> causes a hard system hang.
> 
> This is related to:
> 122426d46e31 ARM: bcm2835: use phys_to_bus() for mbox
> 5c0beb5c58c8 usb: dwc2: use phys_to_bus/bus_to_phys
> 79340db7f1f6 ARM: bcm2835: implement phys_to_bus/bus_to_phys
> 
> Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
> ---
>  drivers/video/bcm2835.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)

applied to u-boot-video/master, thanks!

--
Anatolij

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-02-06 18:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-06 17:42 [U-Boot] [PATCH] video: bcm2835: use bus_to_phys() on FB address Stephen Warren
2016-02-06 18:13 ` Anatolij Gustschin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.