]> Git Repo - J-u-boot.git/blame - include/configs/at91sam9rlek.h
video: Drop LCD_BPP
[J-u-boot.git] / include / configs / at91sam9rlek.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
2118ebb4
SP
2/*
3 * (C) Copyright 2007-2008
c9e798d3 4 * Stelian Pop <[email protected]>
2118ebb4
SP
5 * Lead Tech Design <www.leadtechdesign.com>
6 *
7 * Configuation settings for the AT91SAM9RLEK board.
2118ebb4
SP
8 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
21d671d0
XH
13#include <asm/hardware.h>
14
2118ebb4 15/* ARM asynchronous clock */
21d671d0
XH
16#define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock xtal */
17#define CONFIG_SYS_AT91_MAIN_CLOCK 12000000 /* main clock xtal */
21d671d0 18
2118ebb4 19/* SDRAM */
21d671d0
XH
20#define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1
21#define CONFIG_SYS_SDRAM_SIZE 0x04000000
22
eaf6ea6a
TR
23#define CONFIG_SYS_INIT_RAM_SIZE (16 * 1024)
24#define CONFIG_SYS_INIT_RAM_ADDR ATMEL_BASE_SRAM
2118ebb4 25
2118ebb4 26/* NAND flash */
74c076d6 27#ifdef CONFIG_CMD_NAND
6d0f6bcf 28#define CONFIG_SYS_MAX_NAND_DEVICE 1
21d671d0 29#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
6d0f6bcf 30#define CONFIG_SYS_NAND_DBW_8 1
74c076d6
JCPV
31/* our ALE is AD21 */
32#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
33/* our CLE is AD22 */
34#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
35#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PB6
36#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PD17
2eb99ca8 37
74c076d6 38#endif
2118ebb4 39
2118ebb4 40#endif
This page took 0.84536 seconds and 4 git commands to generate.