kc705: fix drtio_aux address conflict

This commit is contained in:
Sebastien Bourdeauducq 2016-12-06 18:28:48 +08:00
parent 4669d3f02f
commit b311830fc4
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class Master(MiniSoC, AMPSoC):
"timer_kernel": 0x10000000,
"rtio": 0x20000000,
"rtio_dma": 0x30000000,
"drtio_aux": 0x60000000,
"drtio_aux": 0x50000000,
"mailbox": 0x70000000
}
mem_map.update(MiniSoC.mem_map)

View File

@ -126,7 +126,7 @@ fmc_clock_io = [
class Satellite(BaseSoC):
mem_map = {
"drtio_aux": 0x60000000,
"drtio_aux": 0x50000000,
}
mem_map.update(BaseSoC.mem_map)