rpi: Allow the access to videocore memory as MMIO

This commit is contained in:
Norman Feske 2013-09-15 21:26:17 +02:00
parent 62019be6d3
commit 1d5c11c7af
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ Native_region * Platform::_mmio_regions(unsigned const i)
static Native_region _regions[] =
{
{ 0x20000000, 0x22000000 },
{ 0x50000000, 0x10000000 },
};
return i < sizeof(_regions)/sizeof(_regions[0]) ? &_regions[i] : 0;
}