2009-08-08 00:35:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2009
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _BOARD_OVERO_BOARD_CONFIG_H
|
|
|
|
#define _BOARD_OVERO_BOARD_CONFIG_H
|
|
|
|
|
2012-05-04 21:59:50 -05:00
|
|
|
|
2009-08-08 00:35:48 +00:00
|
|
|
#define BOARD_NAME_PRETTY "Gumstix Overo"
|
|
|
|
|
2009-08-13 14:45:06 +00:00
|
|
|
#define BOARD_CPU_TYPE_OMAP 1
|
|
|
|
#define BOARD_CPU_OMAP3 1
|
|
|
|
|
2009-08-08 00:35:48 +00:00
|
|
|
#include <arch/arm/omap3.h>
|
|
|
|
|
2012-05-04 21:59:50 -05:00
|
|
|
// UART Settings
|
2012-05-06 16:26:08 -05:00
|
|
|
#define BOARD_UART_8250 1
|
|
|
|
|
2009-08-08 01:05:49 +00:00
|
|
|
#define BOARD_UART1_BASE OMAP_UART1_BASE
|
|
|
|
#define BOARD_UART2_BASE OMAP_UART2_BASE
|
|
|
|
#define BOARD_UART3_BASE OMAP_UART3_BASE
|
|
|
|
|
2012-05-06 16:26:08 -05:00
|
|
|
#define BOARD_UART_DEBUG BOARD_UART3_BASE
|
2009-08-08 01:05:49 +00:00
|
|
|
|
2012-05-04 21:59:50 -05:00
|
|
|
#define BOARD_UART_CLOCK 48000000
|
|
|
|
// 48MHz (APLL96/2)
|
|
|
|
|
|
|
|
|
2009-08-08 00:35:48 +00:00
|
|
|
#endif /* _BOARD_OVERO_BOARD_CONFIG_H */
|