forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SC594: Hotfix for SC594 L3 DDR memory overlap
Resizing accessible memory range for ARM on sc594 such that it does not overlap with SHARC allocated address space Signed-off-by: UtsavAgarwalADI <utsav.agarwal@analog.com>
- Loading branch information
1 parent
c4403f4
commit 532c222
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)-or-later | ||
|
||
ifeq ($(CONFIG_MACH_SC594_SOM),y) | ||
zreladdr-y += 0x82008000 | ||
params_phys-y := 0x82000100 | ||
zreladdr-y += 0xA2008000 | ||
params_phys-y := 0xA2000100 | ||
else | ||
zreladdr-y += 0x80008000 | ||
params_phys-y := 0x80000100 | ||
zreladdr-y += 0xA0008000 | ||
params_phys-y := 0xA0000100 | ||
endif |