コード例 #1
0
ファイル: cpu.c プロジェクト: Viharrai/u-boot
void powerup_cpus(void)
{
	debug("powerup_cpus entry\n");

	/* We boot to the fast cluster */
	debug("powerup_cpus entry: G cluster\n");
	/* Power up the fast cluster rail partition */
	power_partition(CRAIL, CRAILID);

	/* Power up the fast cluster non-CPU partition */
	power_partition(C0NC, C0NCID);

	/* Power up the fast cluster CPU0 partition */
	power_partition(CE0, CE0ID);
}
コード例 #2
0
ファイル: cpu.c プロジェクト: CogSystems/u-boot
void powerup_cpus(void)
{
	/* We boot to the fast cluster */
	debug("%s entry: G cluster\n", __func__);

	/* Power up the fast cluster rail partition */
	debug("%s: CRAIL\n", __func__);
	power_partition(CRAIL);

	/* Power up the fast cluster non-CPU partition */
	debug("%s: C0NC\n", __func__);
	power_partition(C0NC);

	/* Power up the fast cluster CPU0 partition */
	debug("%s: CE0\n", __func__);
	power_partition(CE0);

	debug("%s: done\n", __func__);
}