svn commit: r239487 - in head/sys: boot/fdt/dts mips/nlm

Jayachandran C. jchandra at FreeBSD.org
Tue Aug 21 09:37:24 UTC 2012


Author: jchandra
Date: Tue Aug 21 09:37:23 2012
New Revision: 239487
URL: http://svn.freebsd.org/changeset/base/239487

Log:
  Add correct range parameter in XLP DTS
  
  r239274 added support for ranges. Update XLP DTS to provide the correct
  range parameter for the XLP SoC bus.  Also fix bus_space_map method
  for XLP bus space.
  
  Submitted by:	Sreekanth M. <sreekanth.molagavalli at broadcom.com>

Modified:
  head/sys/boot/fdt/dts/xlp-basic.dts
  head/sys/mips/nlm/bus_space_rmi.c

Modified: head/sys/boot/fdt/dts/xlp-basic.dts
==============================================================================
--- head/sys/boot/fdt/dts/xlp-basic.dts	Tue Aug 21 09:18:28 2012	(r239486)
+++ head/sys/boot/fdt/dts/xlp-basic.dts	Tue Aug 21 09:37:23 2012	(r239487)
@@ -44,7 +44,7 @@
 		#address-cells = <1>;
 		#size-cells = <1>;
 		compatible = "simple-bus";
-		ranges = <0x0>;
+		ranges = <0x0 0x18000000 0x04000000>;
 		bus-frequency = <0>;
 
 		serial0: serial at 30100 {

Modified: head/sys/mips/nlm/bus_space_rmi.c
==============================================================================
--- head/sys/mips/nlm/bus_space_rmi.c	Tue Aug 21 09:18:28 2012	(r239486)
+++ head/sys/mips/nlm/bus_space_rmi.c	Tue Aug 21 09:37:23 2012	(r239487)
@@ -366,7 +366,7 @@ rmi_bus_space_map(void *t __unused, bus_
     bus_space_handle_t *bshp)
 {
 
-	*bshp = addr;
+	*bshp = MIPS_PHYS_TO_DIRECT_UNCACHED(addr);
 	return (0);
 }
 


More information about the svn-src-all mailing list