Is it possible to disable the A72? - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: ROCKPRO64 (https://forum.pine64.org/forumdisplay.php?fid=98) +--- Forum: General Discussion on ROCKPRO64 (https://forum.pine64.org/forumdisplay.php?fid=99) +--- Thread: Is it possible to disable the A72? (/showthread.php?tid=14374) |
Is it possible to disable the A72? - capablegh - 07-07-2021 Hello! One of my interest in this board is to evaluate and experiment with the RockPro64. Is it possible, and how, to disable only the A72, and use on the A53? And I would like to have the A72 disabled from power-on. One evaluation is ARM Trustzone on the board, and as the first step want to evaluate it only with the A53. RE: Is it possible to disable the A72? - LMM - 07-08-2021 Hi, the easiest way is : # get info cat /proc/cpuinfo # log root sudo -s #disable A72 (cpu 4 & 5) echo 0 > /sys/devices/system/cpu/cpu4/online echo 0 > /sys/devices/system/cpu/cpu5/online # check (ctrl-c to quit) htop cat /proc/cpuinfo to enable again replace 0 by 1 oups I have not read that it should be from power on ! my method does not work then !
RE: Is it possible to disable the A72? - capablegh - 07-08-2021 (07-08-2021, 06:39 AM)LMM Wrote: Hello. RE: Is it possible to disable the A72? - dukla2000 - 07-09-2021 (07-07-2021, 07:04 AM)capablegh Wrote: Hello! Compile your kernel but remove the A72s from the device tree. (After boot you can assign processes to CPU etc etc but ...) RE: Is it possible to disable the A72? - capablegh - 07-12-2021 (07-09-2021, 03:46 AM)dukla2000 Wrote:(07-07-2021, 07:04 AM)capablegh Wrote: Hello! Thanks for your reply. Once Linux is booting it is too late for the Trustzone boot loaders. Like I mentioned in my previous reply, the need is for the A72 to be disabled much early so that it does not detected by the Trustzone bootloaders. RE: Is it possible to disable the A72? - CounterPillow - 07-14-2021 The device trees are also used by u-boot |