mirror of
https://review.haiku-os.org/haiku
synced 2025-01-26 08:17:59 +01:00
917e9be1a6
* Add nested function wrappers to allow usage of other uart drivers depending on board. We may want to use this on other platforms at some point (haha, maybe)
30 lines
588 B
C
30 lines
588 B
C
/*
|
|
* Copyright 2009
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BOARD_OVERO_BOARD_CONFIG_H
|
|
#define _BOARD_OVERO_BOARD_CONFIG_H
|
|
|
|
|
|
#define BOARD_NAME_PRETTY "Gumstix Overo"
|
|
|
|
#define BOARD_CPU_TYPE_OMAP 1
|
|
#define BOARD_CPU_OMAP3 1
|
|
|
|
#include <arch/arm/omap3.h>
|
|
|
|
// UART Settings
|
|
#define BOARD_UART_8250 1
|
|
|
|
#define BOARD_UART1_BASE OMAP_UART1_BASE
|
|
#define BOARD_UART2_BASE OMAP_UART2_BASE
|
|
#define BOARD_UART3_BASE OMAP_UART3_BASE
|
|
|
|
#define BOARD_UART_DEBUG BOARD_UART3_BASE
|
|
|
|
#define BOARD_UART_CLOCK 48000000
|
|
// 48MHz (APLL96/2)
|
|
|
|
|
|
#endif /* _BOARD_OVERO_BOARD_CONFIG_H */
|