1/*
2 * Copyright 2012 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Fran��ois Revol, revol@free.fr
7 */
8#ifndef _BOARD_SAM460EX_BOARD_CONFIG_H
9#define _BOARD_SAM460EX_BOARD_CONFIG_H
10
11
12#define BOARD_NAME_PRETTY "ACube Sam460ex"
13
14#define BOARD_CPU_TYPE_PPC440 1
15#define BOARD_CPU_PPC460EX 1
16
17// UART Settings
18// TODO: use the FDT instead of hardcoding
19#define BOARD_UART1_BASE 0xef600300
20#define BOARD_UART2_BASE 0
21#define BOARD_UART3_BASE 0
22
23#define BOARD_UART_DEBUG BOARD_UART1_BASE
24
25#define BOARD_UART_CLOCK 0
26	/* ?Mhz */
27
28
29#endif /* _BOARD_SAM460EX_BOARD_CONFIG_H */
30