mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
64 lines
1.6 KiB
C
64 lines
1.6 KiB
C
/*
|
|
* \brief PL011 UART definitions for the RealView platform
|
|
* \author Christian Helmuth
|
|
* \date 2011-05-27
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2011 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__PBXA9__PL011_DEFS_H_
|
|
#define _INCLUDE__PLATFORM__PBXA9__PL011_DEFS_H_
|
|
|
|
enum {
|
|
|
|
/** Number of UARTs */
|
|
PL011_NUM = 4,
|
|
|
|
/**
|
|
* MMIO regions
|
|
*/
|
|
PL011_PHYS0 = 0x10009000, /* base for UART 0 */
|
|
PL011_PHYS1 = 0x1000a000, /* base for UART 1 */
|
|
PL011_PHYS2 = 0x1000b000, /* base for UART 2 */
|
|
PL011_PHYS3 = 0x1000c000, /* base for UART 3 */
|
|
PL011_SIZE = 0x1000, /* size of each MMIO region */
|
|
|
|
/**
|
|
* Interrupt lines
|
|
*/
|
|
PL011_IRQ0 = 12 + 32, /* UART 0 */
|
|
PL011_IRQ1 = 13 + 32, /* UART 1 */
|
|
PL011_IRQ2 = 14 + 32, /* UART 2 */
|
|
PL011_IRQ3 = 15 + 32, /* UART 3 */
|
|
|
|
/**
|
|
* UART baud rate configuration (precalculated)
|
|
*
|
|
* div = 24000000 / 16 / baud rate
|
|
* IBRD = floor(div)
|
|
* FBRD = floor((div - IBRD) * 64 + 0.5)
|
|
*/
|
|
PL011_IBRD_115200 = 13, PL011_FBRD_115200 = 1,
|
|
PL011_IBRD_19200 = 78, PL011_FBRD_19200 = 8,
|
|
PL011_IBRD_9600 = 156, PL011_FBRD_9600 = 16,
|
|
};
|
|
|
|
|
|
static struct Pl011_uart {
|
|
Genode::addr_t mmio_base;
|
|
Genode::size_t mmio_size;
|
|
int irq_number;
|
|
} pl011_uart[PL011_NUM] = {
|
|
{ PL011_PHYS0, PL011_SIZE, PL011_IRQ0 },
|
|
{ PL011_PHYS1, PL011_SIZE, PL011_IRQ1 },
|
|
{ PL011_PHYS2, PL011_SIZE, PL011_IRQ2 },
|
|
{ PL011_PHYS3, PL011_SIZE, PL011_IRQ3 },
|
|
};
|
|
|
|
#endif /* _INCLUDE__PLATFORM__PBXA9__PL011_DEFS_H_ */
|