Example #1
0
/**
 * @brief UART serial port initialization - remember to enable COM clocks in
 * arch
 *
 * @return result of device registration
 */
static int beagle_console_init(void)
{
	barebox_set_model("Texas Instruments beagle");
	barebox_set_hostname("beagle");

	omap3_add_uart3();

	return 0;
}
Example #2
0
/**
 * @brief Initialize the serial port to be used as console.
 *
 * @return result of device registration
 */
static int pcaal1_init_console(void)
{
    barebox_set_model("Phytec phyCARD-OMAP3");
    barebox_set_hostname("phycard-omap3");

    omap3_add_uart3();

    return 0;
}
Example #3
0
/**
 * @brief UART serial port initialization - remember to enable COM clocks in arch
 *
 * @return result of device registration
 */
static int sdp3430_console_init(void)
{
	barebox_set_model("Texas Instruments SDP343x");
	barebox_set_hostname("sdp343x");

	omap3_add_uart3();

	return 0;
}
Example #4
0
/**
 * @brief UART serial port initialization - remember to enable COM clocks in
 * arch
 *
 * @return result of device registration
 */
static int beagle_console_init(void)
{
	if (barebox_arm_machine() != MACH_TYPE_OMAP3_BEAGLE)
		return 0;

	barebox_set_model("Texas Instruments beagle");
	barebox_set_hostname("beagle");

	omap3_add_uart3();

	return 0;
}
Example #5
0
/**
 * @brief Initialize the serial port to be used as console.
 *
 * @return result of device registration
 */
static int omap3evm_init_console(void)
{
    barebox_set_model("Texas Instruments omap3evm");
    barebox_set_hostname("omap3evm");

    if (IS_ENABLED(CONFIG_OMAP_UART1))
        omap3_add_uart1();
    if (IS_ENABLED(CONFIG_OMAP_UART3))
        omap3_add_uart3();

    return 0;
}
Example #6
0
/**
 * @brief UART serial port initialization - remember to enable COM clocks in
 * arch
 *
 * @return result of device registration
 */
static int beagle_console_init(void)
{
	omap3_add_uart3();

	return 0;
}
Example #7
0
/**
 * @brief Initialize the serial port to be used as console.
 *
 * @return result of device registration
 */
static int pcaal1_init_console(void)
{
	omap3_add_uart3();

	return 0;
}