1/*
2 * Copyright 2009
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _BOARD_BEAGLE_BOARD_CONFIG_H
6#define _BOARD_BEAGLE_BOARD_CONFIG_H
7
8
9#define BOARD_NAME_PRETTY "Beagle Board"
10
11#define BOARD_CPU_TYPE_OMAP 1
12#define BOARD_CPU_OMAP3 1
13
14#include <arch/arm/omap3.h>
15
16// UART Settings
17#define BOARD_UART_8250 1
18
19#define BOARD_UART1_BASE OMAP_UART1_BASE
20#define BOARD_UART2_BASE OMAP_UART2_BASE
21#define BOARD_UART3_BASE OMAP_UART3_BASE
22
23#define BOARD_UART_DEBUG BOARD_UART3_BASE
24
25#define BOARD_UART_CLOCK 48000000
26	// 48MHz (APLL96/2)
27
28
29#endif /* _BOARD_BEAGLE_BOARD_CONFIG_H */
30