Assign 0xff800000-0xffffffff to the LBC controller. That's where

the NOR flash lives by default.
This commit is contained in:
Marcel Moolenaar 2008-10-25 05:57:36 +00:00
parent 951f87e4ae
commit bd616bc87e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184249

View File

@ -172,6 +172,10 @@ ocpbus_write_law(int trgt, int type, u_long *startp, u_long *countp)
addr = 0xA0000000;
size = 0x10000000;
break;
case OCP85XX_TGTIF_LBC:
addr = 0xff800000;
size = 0x00800000;
break;
default:
return (EINVAL);
}