43 lines
1.4 KiB
C
43 lines
1.4 KiB
C
/*
|
|
* U-Boot configuration for Strasbourg
|
|
*
|
|
* Copyright (C) 2010 TomTom International B.V.
|
|
*
|
|
************************************************************************
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
************************************************************************
|
|
*/
|
|
|
|
#ifndef __BOARD_CONFIG_H
|
|
#define __BOARD_CONFIG_H
|
|
|
|
#define __VARIANT_RENNES_B1
|
|
//#define CFG_NS16550_COM1 OMAP34XX_UART1
|
|
//#define CFG_NS16550_COM2 OMAP34XX_UART2
|
|
#define CFG_NS16550_COM3 OMAP34XX_UART3
|
|
|
|
/* select serial console configuration */
|
|
#define CONFIG_SERIAL3 3
|
|
#define CONFIG_CONS_INDEX 3
|
|
|
|
/* DDR chip */
|
|
#define DDR_MT46H128M16
|
|
|
|
#include "strasbourg_core.h"
|
|
|
|
#endif /* __BOARD_CONFIG_H */
|
|
|