Skip to content
Snippets Groups Projects
Commit 6f3fc718 authored by Lingutla Chandrasekhar's avatar Lingutla Chandrasekhar Committed by Gerrit - the friendly Code Review server
Browse files

ldrp_v2: Support active cpus verification only for 64-bit platforms


Minimum number of required active cpu in a cluster is mostly helpful
in 64-bit platforms, compared to 32-bit.

And 32-bit platform code has different arch topology support, instead of
mucking around the 32/64-bit support, skip active cpu verification for
32-bit, as they are mostly single cluster platforms.

Change-Id: Idade91d08534590c6e4597b918557ffb1131505d
Signed-off-by: default avatarLingutla Chandrasekhar <clingutla@codeaurora.org>
parent a3d39b29
No related branches found
No related tags found
No related merge requests found
...@@ -379,8 +379,9 @@ if __name__ == '__main__': ...@@ -379,8 +379,9 @@ if __name__ == '__main__':
get_wdog_timing(dump) get_wdog_timing(dump)
print_out_str('---------- end watchdog time-----') print_out_str('---------- end watchdog time-----')
# Always verify Scheduler requirement for active_cpus # Always verify Scheduler requirement for active_cpus on 64-bit platforms.
verify_active_cpus(dump) if options.arm64:
verify_active_cpus(dump)
# we called parser.add_option with dest=p.cls.__name__ above, # we called parser.add_option with dest=p.cls.__name__ above,
# so if the user passed that option then `options' will have a # so if the user passed that option then `options' will have a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment