当前位置: 首页>>代码示例>>C++>>正文


C++ setup_iomux_uart函数代码示例

本文整理汇总了C++中setup_iomux_uart函数的典型用法代码示例。如果您正苦于以下问题:C++ setup_iomux_uart函数的具体用法?C++ setup_iomux_uart怎么用?C++ setup_iomux_uart使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了setup_iomux_uart函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();
#if defined(CONFIG_VIDEO_IPUV3)
	setup_display();
#endif

	return 0;
}
开发者ID:emxys1,项目名称:imx6rex-bombardier-base-uboot-2014.01,代码行数:9,代码来源:mx6sabresd.c

示例2: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();
	setup_iomux_fec();
#ifdef CONFIG_USB_EHCI_MX5
	setup_usb_h1();
#endif

	return 0;
}
开发者ID:cnauman,项目名称:u-boot,代码行数:10,代码来源:mx51evk.c

示例3: board_early_init_f

int board_early_init_f(void)
{
	init_drive_strength();

	setup_iomux_uart();
	setup_iomux_spi();
	setup_iomux_led();

	return 0;
}
开发者ID:Apaisal,项目名称:u-boot,代码行数:10,代码来源:efikamx.c

示例4: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();

#ifdef CONFIG_SYS_USE_SPINOR
	setup_spinor();
#endif

	return 0;
}
开发者ID:geneyeung,项目名称:u-boot-3.10.17,代码行数:10,代码来源:mx6slevk.c

示例5: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();
	setup_iomux_gpio();

	gpio_direction_output(SOFT_RESET_GPIO, 1);
	gpio_direction_output(SD2_DRIVER_ENABLE, 1);
	setup_display();
	set_gpr_register();
	return 0;
}
开发者ID:Digilent,项目名称:u-boot-digilent,代码行数:11,代码来源:aristainetos-v2.c

示例6: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();

#ifdef CONFIG_SYS_I2C_MXC
	setup_i2c(0, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info1);
	setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info2);
#endif

	return 0;
}
开发者ID:KunYi,项目名称:uboot-samx6i,代码行数:11,代码来源:mx7d_19x19_lpddr3_arm2.c

示例7: board_early_init_f

int board_early_init_f(void)
{
	clock_init();
	mscm_init();

	setup_iomux_uart();
	setup_iomux_enet();
	setup_iomux_i2c();

	return 0;
}
开发者ID:AhmadQasim,项目名称:GPU-Virtualization,代码行数:11,代码来源:vf610twr.c

示例8: board_early_init_f

int board_early_init_f(void)
{
	ccgr_init();
	gpr_init();

	setup_iomux_uart();
	setup_iomux_spi();
	setup_iomux_i2c();
	setup_iomux_features();

	return 0;
}
开发者ID:01hyang,项目名称:u-boot,代码行数:12,代码来源:ot1200.c

示例9: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();

	imx_iomux_v3_setup_multiple_pads(init_pads, ARRAY_SIZE(init_pads));
	setup_buttons();

#if defined(CONFIG_VIDEO_IPUV3)
	setup_display();
#endif
	return 0;
}
开发者ID:rcoscali,项目名称:bootable-bootloader-uboot-imx,代码行数:12,代码来源:med.c

示例10: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();

	setup_i2c(0, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info1);
	imx_iomux_v3_setup_multiple_pads(usb_otg1_pads,
					 ARRAY_SIZE(usb_otg1_pads));
	imx_iomux_v3_setup_multiple_pads(usb_otg2_pads,
					 ARRAY_SIZE(usb_otg2_pads));

	return 0;
}
开发者ID:96boards-bubblegum,项目名称:u-boot,代码行数:12,代码来源:mx7dsabresd.c

示例11: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();

#ifdef CONFIG_CMD_SATA
	setup_sata();
#endif

#ifdef CONFIG_USB_EHCI_MX6
	setup_usb();
#endif
	return 0;
}
开发者ID:axxia,项目名称:axxia_u-boot,代码行数:13,代码来源:mx6cuboxi.c

示例12: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();

#ifdef CONFIG_SYS_USE_NAND
    setup_gpmi_nand();
#endif

#if defined(CONFIG_VIDEO_IPUV3)
	setup_display();
#endif
	return 0;
}
开发者ID:ddilber,项目名称:u-boot-imx6,代码行数:13,代码来源:uq7.c

示例13: board_early_init_f

int board_early_init_f(void)
{
#ifdef CONFIG_MXC_RDC
	imx_rdc_setup_peripherals(shared_resources, ARRAY_SIZE(shared_resources));
#endif

#ifdef CONFIG_SYS_AUXCORE_FASTUP
	arch_auxiliary_core_up(0, CONFIG_SYS_AUXCORE_BOOTDATA);
#endif

	setup_iomux_uart();
	return 0;
}
开发者ID:huhuikevin,项目名称:fsluboot,代码行数:13,代码来源:mx6sxsabreauto.c

示例14: board_init

int board_init(void)
{
	system_rev = get_cpu_rev();

	gd->bd->bi_arch_number = MACH_TYPE_MX51_BABBAGE;
	/* address of boot parameters */
	gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;

	setup_iomux_uart();
	setup_iomux_fec();

	return 0;
}
开发者ID:54shady,项目名称:uboot_tiny4412,代码行数:13,代码来源:mx51evk.c

示例15: board_early_init_f

int board_early_init_f(void)
{
	setup_iomux_uart();

#ifdef CONFIG_NAND_MXS
	setup_gpmi_nand();
#endif

#ifdef CONFIG_MTD_NOR_FLASH
	eim_clk_setup();
#endif
	return 0;
}
开发者ID:analogdevicesinc,项目名称:u-boot-xlnx,代码行数:13,代码来源:mx6sabreauto.c


注:本文中的setup_iomux_uart函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。