svn commit: r184249 - head/sys/powerpc/mpc85xx

Marcel Moolenaar marcel at FreeBSD.org
Sat Oct 25 05:57:37 UTC 2008


Author: marcel
Date: Sat Oct 25 05:57:36 2008
New Revision: 184249
URL: http://svn.freebsd.org/changeset/base/184249

Log:
  Assign 0xff800000-0xffffffff to the LBC controller. That's where
  the NOR flash lives by default.

Modified:
  head/sys/powerpc/mpc85xx/ocpbus.c

Modified: head/sys/powerpc/mpc85xx/ocpbus.c
==============================================================================
--- head/sys/powerpc/mpc85xx/ocpbus.c	Sat Oct 25 04:46:02 2008	(r184248)
+++ head/sys/powerpc/mpc85xx/ocpbus.c	Sat Oct 25 05:57:36 2008	(r184249)
@@ -172,6 +172,10 @@ ocpbus_write_law(int trgt, int type, u_l
 			addr = 0xA0000000;
 			size = 0x10000000;
 			break;
+		case OCP85XX_TGTIF_LBC:
+			addr = 0xff800000;
+			size = 0x00800000;
+			break;
 		default:
 			return (EINVAL);
 		}


More information about the svn-src-head mailing list