コード例 #1
0
ファイル: pplus.c プロジェクト: 1x23/unifi-gpl
static unsigned long __init pplus_find_end_of_memory(void)
{
	unsigned long total;

	if (ppc_md.progress)
		ppc_md.progress("pplus_find_end_of_memory", 0);

#ifdef DUMP_DBATS
	dump_dbats();
#endif

	total = hawk_get_mem_size(PPLUS_HAWK_SMC_BASE);
	return (total);
}
コード例 #2
0
ファイル: mvme5100.c プロジェクト: Dronevery/JetsonTK1-kernel
static unsigned long __init
mvme5100_find_end_of_memory(void)
{
	return hawk_get_mem_size(MVME5100_HAWK_SMC_BASE);
}
コード例 #3
0
ファイル: prpmc750.c プロジェクト: 3sOx/asuswrt-merlin
/*
 * We need to read the Falcon/Hawk memory controller
 * to properly determine this value
 */
static unsigned long __init prpmc750_find_end_of_memory(void)
{
	/* Read the memory size from the Hawk SMC */
	return hawk_get_mem_size(PRPMC750_HAWK_SMC_BASE);
}
コード例 #4
0
ファイル: mcpn765.c プロジェクト: Antonio-Zhou/Linux-2.6.11
static unsigned long __init
mcpn765_find_end_of_memory(void)
{
	return hawk_get_mem_size(MCPN765_HAWK_SMC_BASE);
}