mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
9b0240f8c6
This converts the following to Kconfig: CONFIG_DM9000_BYTE_SWAPPED CONFIG_DM9000_NO_SROM CONFIG_DM9000_USE_16BIT CONFIG_DM9000_DEBUG CONFIG_MXC_GPT_HCLK CONFIG_NAND_6BYTES_OOB_FREE_10BYTES_ECC Signed-off-by: Tom Rini <trini@konsulko.com>
20 lines
452 B
C
20 lines
452 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* CI20 configuration
|
|
*
|
|
* Copyright (c) 2013 Imagination Technologies
|
|
* Author: Paul Burton <paul.burton@imgtec.com>
|
|
*/
|
|
|
|
#ifndef __CONFIG_CI20_H__
|
|
#define __CONFIG_CI20_H__
|
|
|
|
/* Memory configuration */
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000 /* cached (KSEG0) address */
|
|
#define CFG_SYS_INIT_SP_OFFSET 0x400000
|
|
|
|
/* NS16550-ish UARTs */
|
|
#define CFG_SYS_NS16550_CLK 48000000
|
|
|
|
#endif /* __CONFIG_CI20_H__ */
|