mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
allow 39-bit addr for GPU
This commit is contained in:
@@ -53,7 +53,7 @@ class Genode::Pd_root : public Genode::Root_component<Genode::Pd_session_compone
|
||||
*/
|
||||
addr_t const start = 0x1000;
|
||||
addr_t const end = (sizeof(long) == 4) /* 32bit arch ? */
|
||||
? 0xbfffffffUL : 0xffffffffUL;
|
||||
? 0xbfffffffUL : 0xFFffffffffUL; // 0xffffffffUL; // mld: THIS IS IT! => allow 39 bit address for iGPU
|
||||
|
||||
return Ram_dataspace_factory::Phys_range { start, end };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user