mirror of
https://review.haiku-os.org/haiku
synced 2025-02-09 15:18:56 +01:00
* Make Kernel ARM UART slightly more generic through (BOARD_UART_CLOCK) configured per board * Add initial Raspberry Pi serial code * Still rough and non-working
28 lines
539 B
C
28 lines
539 B
C
/*
|
|
* Copyright 2009
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BOARD_VERDEX_BOARD_CONFIG_H
|
|
#define _BOARD_VERDEX_BOARD_CONFIG_H
|
|
|
|
|
|
#define BOARD_NAME_PRETTY "Gumstix Verdex"
|
|
|
|
#define BOARD_CPU_TYPE_PXA 1
|
|
#define BOARD_CPU_PXA270 1
|
|
|
|
#include <arch/arm/pxa270.h>
|
|
|
|
// UART Settings
|
|
#define BOARD_UART1_BASE FFUART_BASE
|
|
#define BOARD_UART2_BASE BTUART_BASE
|
|
#define BOARD_UART3_BASE STUART_BASE
|
|
|
|
#define BOARD_DEBUG_UART 0
|
|
|
|
#define BOARD_UART_CLOCK 48000000
|
|
// 48MHz (APLL96/2)
|
|
|
|
|
|
#endif /* _BOARD_VERDEX_BOARD_CONFIG_H */
|