mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
cc17d82d92
ref #874
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
/*
|
|
* \brief OMAP4 UART definitions
|
|
* \author Ivan Loskutov <ivan.loskutov@ksyslabs.org>
|
|
* \date 2012-11-08
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2012 Ksys Labs LLC
|
|
* Copyright (C) 2011-2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__PLATFORM__PANDABOARD__UART_DEFS_H_
|
|
#define _INCLUDE__PLATFORM__PANDABOARD__UART_DEFS_H_
|
|
|
|
#include <platform/panda/drivers/board_base.h>
|
|
|
|
enum {
|
|
/** Number of UARTs */
|
|
UARTS_NUM = 4,
|
|
|
|
BAUD_115200 = 26,
|
|
};
|
|
|
|
|
|
static struct Omap_uart_cfg {
|
|
Genode::addr_t mmio_base;
|
|
Genode::size_t mmio_size;
|
|
int irq_number;
|
|
} omap_uart_cfg[UARTS_NUM] = {
|
|
{ Genode::Board_base::TL16C750_1_MMIO_BASE, Genode::Board_base::TL16C750_MMIO_SIZE, Genode::Board_base::TL16C750_1_IRQ },
|
|
{ Genode::Board_base::TL16C750_2_MMIO_BASE, Genode::Board_base::TL16C750_MMIO_SIZE, Genode::Board_base::TL16C750_2_IRQ },
|
|
{ Genode::Board_base::TL16C750_3_MMIO_BASE, Genode::Board_base::TL16C750_MMIO_SIZE, Genode::Board_base::TL16C750_3_IRQ },
|
|
{ Genode::Board_base::TL16C750_4_MMIO_BASE, Genode::Board_base::TL16C750_MMIO_SIZE, Genode::Board_base::TL16C750_4_IRQ },
|
|
};
|
|
|
|
#endif /* _INCLUDE__PLATFORM__PANDABOARD__UART_DEFS_H_ */
|