예제 #1
0
파일: d2plug.c 프로젝트: BingTsai/D3-Linux
/*****************************************************************************
 * PCI
 ****************************************************************************/
static int __init dove_d2plug_pci_init(void)
{
	//if (machine_is_dove_db())
	//dove_pcie_init(1, 1);
	dove_pcie_init(1, 1);
	return 0;
}
예제 #2
0
파일: cm-a510.c 프로젝트: CSCLOG/beaglebone
static int __init cm_a510_pci_init(void)
{
	if (machine_is_cm_a510())
		dove_pcie_init(1, 1);

	return 0;
}
예제 #3
0
static int __init dove_db_pci_init(void)
{
	if (machine_is_dove_db())
		dove_pcie_init(1, 1);

	return 0;
}
예제 #4
0
파일: board-dt.c 프로젝트: 1youhun1/linux
static void __init dove_dt_init(void)
{
	pr_info("Dove 88AP510 SoC\n");

#ifdef CONFIG_CACHE_TAUROS2
	tauros2_init(0);
#endif
	dove_setup_cpu_wins();

	/* Setup root of clk tree */
	dove_of_clk_init();

	/* Internal devices not ported to DT yet */
	dove_ge00_init(&dove_dt_ge00_data);
	dove_pcie_init(1, 1);

	of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
}