public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] dm: ti_qspi: Fix conversion of address to a pointer
@ 2016-03-05 11:13 Lokesh Vutla
  2016-03-05 11:54 ` Jagan Teki
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Lokesh Vutla @ 2016-03-05 11:13 UTC (permalink / raw)
  To: u-boot

TI QSPI driver directly typecasts fdt_addr_t to a pointer. This is
not strictly correct, as it gives a build warning when fdt_addr_t is u64.
So, use map_physmem for a proper typecasts.

This is inspired by commit 167efe01bc5a9 ("dm: ns16550: Use an address
instead of a pointer for the uart base")

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
 drivers/spi/ti_qspi.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/drivers/spi/ti_qspi.c b/drivers/spi/ti_qspi.c
index 409a5c4..e69ec0d 100644
--- a/drivers/spi/ti_qspi.c
+++ b/drivers/spi/ti_qspi.c
@@ -534,11 +534,15 @@ static int ti_qspi_ofdata_to_platdata(struct udevice *bus)
 	const void *blob = gd->fdt_blob;
 	int node = bus->of_offset;
 	fdt_addr_t addr;
+	void *mmap;
 
-	priv->base = (struct ti_qspi_regs *)dev_get_addr(bus);
-	priv->memory_map = (void *)dev_get_addr_index(bus, 1);
+	priv->base = map_physmem(dev_get_addr(bus), sizeof(struct ti_qspi_regs),
+				 MAP_NOCACHE);
+	priv->memory_map = map_physmem(dev_get_addr_index(bus, 1), 0,
+				       MAP_NOCACHE);
 	addr = dev_get_addr_index(bus, 2);
-	priv->ctrl_mod_mmap = (addr == FDT_ADDR_T_NONE) ? NULL : (void *)addr;
+	mmap = map_physmem(dev_get_addr_index(bus, 2), 0, MAP_NOCACHE);
+	priv->ctrl_mod_mmap = (addr == FDT_ADDR_T_NONE) ? NULL : mmap;
 
 	priv->max_hz = fdtdec_get_int(blob, node, "spi-max-frequency", -1);
 	if (priv->max_hz < 0) {
-- 
2.1.4

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

* [U-Boot] [PATCH] dm: ti_qspi: Fix conversion of address to a pointer
  2016-03-05 11:13 [U-Boot] [PATCH] dm: ti_qspi: Fix conversion of address to a pointer Lokesh Vutla
@ 2016-03-05 11:54 ` Jagan Teki
  2016-03-07 23:38 ` Tom Rini
  2016-03-08  6:35 ` Mugunthan V N
  2 siblings, 0 replies; 4+ messages in thread
From: Jagan Teki @ 2016-03-05 11:54 UTC (permalink / raw)
  To: u-boot

On Saturday 05 March 2016 04:43 PM, Lokesh Vutla wrote:
> TI QSPI driver directly typecasts fdt_addr_t to a pointer. This is
> not strictly correct, as it gives a build warning when fdt_addr_t is u64.
> So, use map_physmem for a proper typecasts.
>
> This is inspired by commit 167efe01bc5a9 ("dm: ns16550: Use an address
> instead of a pointer for the uart base")
>
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Reviewed-by: Jagan Teki <jteki@openedev.com>

thanks!
--
Jagan.

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

* [U-Boot] [PATCH] dm: ti_qspi: Fix conversion of address to a pointer
  2016-03-05 11:13 [U-Boot] [PATCH] dm: ti_qspi: Fix conversion of address to a pointer Lokesh Vutla
  2016-03-05 11:54 ` Jagan Teki
@ 2016-03-07 23:38 ` Tom Rini
  2016-03-08  6:35 ` Mugunthan V N
  2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2016-03-07 23:38 UTC (permalink / raw)
  To: u-boot

On Sat, Mar 05, 2016 at 04:43:06PM +0530, Lokesh Vutla wrote:

> TI QSPI driver directly typecasts fdt_addr_t to a pointer. This is
> not strictly correct, as it gives a build warning when fdt_addr_t is u64.
> So, use map_physmem for a proper typecasts.
> 
> This is inspired by commit 167efe01bc5a9 ("dm: ns16550: Use an address
> instead of a pointer for the uart base")
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160307/463cfac2/attachment.sig>

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

* [U-Boot] [PATCH] dm: ti_qspi: Fix conversion of address to a pointer
  2016-03-05 11:13 [U-Boot] [PATCH] dm: ti_qspi: Fix conversion of address to a pointer Lokesh Vutla
  2016-03-05 11:54 ` Jagan Teki
  2016-03-07 23:38 ` Tom Rini
@ 2016-03-08  6:35 ` Mugunthan V N
  2 siblings, 0 replies; 4+ messages in thread
From: Mugunthan V N @ 2016-03-08  6:35 UTC (permalink / raw)
  To: u-boot

On Saturday 05 March 2016 04:43 PM, Lokesh Vutla wrote:
> TI QSPI driver directly typecasts fdt_addr_t to a pointer. This is
> not strictly correct, as it gives a build warning when fdt_addr_t is u64.
> So, use map_physmem for a proper typecasts.
> 
> This is inspired by commit 167efe01bc5a9 ("dm: ns16550: Use an address
> instead of a pointer for the uart base")
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Reviewed-by: Mugunthan V N <mugunthanvnm@ti.com>

Regards
Mugunthan V N

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

end of thread, other threads:[~2016-03-08  6:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-05 11:13 [U-Boot] [PATCH] dm: ti_qspi: Fix conversion of address to a pointer Lokesh Vutla
2016-03-05 11:54 ` Jagan Teki
2016-03-07 23:38 ` Tom Rini
2016-03-08  6:35 ` Mugunthan V N

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox