From: Angelo Dureghello Date: Sat, 21 May 2016 10:05:49 +0000 (+0200) Subject: dm: add manual relocation for devices X-Git-Tag: v2016.07-rc2~5^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5aeedebc33849efbbee2d422a4c7da8194e1b670;p=platform%2Fkernel%2Fu-boot.git dm: add manual relocation for devices Some architectures as m68k still need to use CONFIG_NEEDS_MANUAL_RELOC, and are not still using the device tree. Signed-off-by: Angelo Dureghello Acked-by: Simon Glass --- diff --git a/drivers/core/root.c b/drivers/core/root.c index 13c2713..95886ad 100644 --- a/drivers/core/root.c +++ b/drivers/core/root.c @@ -122,6 +122,20 @@ void fix_uclass(void) entry->ops += gd->reloc_off; } } + +void fix_devices(void) +{ + struct driver_info *dev = + ll_entry_start(struct driver_info, driver_info); + const int n_ents = ll_entry_count(struct driver_info, driver_info); + struct driver_info *entry; + + for (entry = dev; entry != dev + n_ents; entry++) { + if (entry->platdata) + entry->platdata += gd->reloc_off; + } +} + #endif int dm_init(void) @@ -137,6 +151,7 @@ int dm_init(void) #if defined(CONFIG_NEEDS_MANUAL_RELOC) fix_drivers(); fix_uclass(); + fix_devices(); #endif ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);