mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 22:52:18 +00:00
54925327fa
Now, CONFIG_GENERIC_MMC seems equivalent to CONFIG_MMC. Let's create an entry for "config GENERIC_MMC" with "default MMC", then convert all macro defines in headers to Kconfig. Almost all of the defines will go away. I see only two exceptions: configs/blanche_defconfig configs/sandbox_noblk_defconfig They define CONFIG_GENERIC_MMC, but not CONFIG_MMC. Something might be wrong with these two boards, so should be checked later. Anyway, this is the output of the moveconfig tool. This commit was created as follows: [1] create a config entry in drivers/mmc/Kconfig [2] tools/moveconfig.py -r HEAD GENERIC_MMC [3] manual clean-up of garbage comments in doc/README.* and include/configs/*.h Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Tom Rini <trini@konsulko.com>
103 lines
2.7 KiB
C
103 lines
2.7 KiB
C
/*
|
|
* include/configs/stout.h
|
|
* This file is Stout board configuration.
|
|
*
|
|
* Copyright (C) 2015 Renesas Electronics Europe GmbH
|
|
* Copyright (C) 2015 Renesas Electronics Corporation
|
|
* Copyright (C) 2015 Cogent Embedded, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
*/
|
|
|
|
#ifndef __STOUT_H
|
|
#define __STOUT_H
|
|
|
|
#undef DEBUG
|
|
#define CONFIG_R8A7790
|
|
#define CONFIG_ARCH_RMOBILE_BOARD_STRING "Stout"
|
|
|
|
#include "rcar-gen2-common.h"
|
|
|
|
#if defined(CONFIG_ARCH_RMOBILE_EXTRAM_BOOT)
|
|
#define CONFIG_SYS_TEXT_BASE 0xB0000000
|
|
#else
|
|
#define CONFIG_SYS_TEXT_BASE 0xE8080000
|
|
#endif
|
|
|
|
/* STACK */
|
|
#if defined(CONFIGF_RMOBILE_EXTRAM_BOOT)
|
|
#define CONFIG_SYS_INIT_SP_ADDR 0xB003FFFC
|
|
#else
|
|
#define CONFIG_SYS_INIT_SP_ADDR 0xE827FFFC
|
|
#endif
|
|
#define STACK_AREA_SIZE 0xC000
|
|
#define LOW_LEVEL_MERAM_STACK \
|
|
(CONFIG_SYS_INIT_SP_ADDR + STACK_AREA_SIZE - 4)
|
|
|
|
/* MEMORY */
|
|
#define RCAR_GEN2_SDRAM_BASE 0x40000000
|
|
#define RCAR_GEN2_SDRAM_SIZE (1024u * 1024 * 1024)
|
|
#define RCAR_GEN2_UBOOT_SDRAM_SIZE (512 * 1024 * 1024)
|
|
|
|
/* SCIF */
|
|
#define CONFIG_SCIF_CONSOLE
|
|
#define CONFIG_SCIF_A
|
|
|
|
/* SPI */
|
|
#define CONFIG_SPI
|
|
#define CONFIG_SH_QSPI
|
|
#define CONFIG_SPI_FLASH_QUAD
|
|
#define CONFIG_SYS_NO_FLASH
|
|
|
|
/* SH Ether */
|
|
#define CONFIG_SH_ETHER
|
|
#define CONFIG_SH_ETHER_USE_PORT 0
|
|
#define CONFIG_SH_ETHER_PHY_ADDR 0x1
|
|
#define CONFIG_SH_ETHER_PHY_MODE PHY_INTERFACE_MODE_RMII
|
|
#define CONFIG_SH_ETHER_ALIGNE_SIZE 64
|
|
#define CONFIG_SH_ETHER_CACHE_WRITEBACK
|
|
#define CONFIG_SH_ETHER_CACHE_INVALIDATE
|
|
#define CONFIG_PHYLIB
|
|
#define CONFIG_PHY_MICREL
|
|
#define CONFIG_BITBANGMII
|
|
#define CONFIG_BITBANGMII_MULTI
|
|
|
|
/* I2C */
|
|
#define CONFIG_SYS_I2C
|
|
#define CONFIG_SYS_I2C_RCAR
|
|
#define CONFIG_SYS_RCAR_I2C0_SPEED 400000
|
|
#define CONFIG_SYS_RCAR_I2C1_SPEED 400000
|
|
#define CONFIG_SYS_RCAR_I2C2_SPEED 400000
|
|
#define CONFIG_SYS_RCAR_I2C3_SPEED 400000
|
|
#define CONFIF_SYS_RCAR_I2C_NUM_CONTROLLERS 4
|
|
|
|
#define CONFIG_SYS_I2C_POWERIC_ADDR 0x58 /* da9063 */
|
|
|
|
/* Board Clock */
|
|
#define RMOBILE_XTAL_CLK 20000000u
|
|
#define CONFIG_SYS_CLK_FREQ RMOBILE_XTAL_CLK
|
|
#define CONFIG_SH_TMU_CLK_FREQ (CONFIG_SYS_CLK_FREQ / 2) /* EXT / 2 */
|
|
#define CONFIG_PLL1_CLK_FREQ (CONFIG_SYS_CLK_FREQ * 156 / 2)
|
|
#define CONFIG_PLL1_DIV2_CLK_FREQ (CONFIG_PLL1_CLK_FREQ / 2)
|
|
#define CONFIG_MP_CLK_FREQ (CONFIG_PLL1_DIV2_CLK_FREQ / 15)
|
|
#define CONFIG_HP_CLK_FREQ (CONFIG_PLL1_CLK_FREQ / 12)
|
|
|
|
#define CONFIG_SYS_TMU_CLK_DIV 4
|
|
|
|
/* USB */
|
|
#define CONFIG_USB_EHCI
|
|
#define CONFIG_USB_EHCI_RMOBILE
|
|
#define CONFIG_USB_MAX_CONTROLLER_COUNT 3
|
|
|
|
/* Module stop status bits */
|
|
/* INTC-RT */
|
|
#define CONFIG_SMSTP0_ENA 0x00400000
|
|
/* MSIF, SCIFA0 */
|
|
#define CONFIG_SMSTP2_ENA 0x00002010
|
|
/* INTC-SYS, IRQC */
|
|
#define CONFIG_SMSTP4_ENA 0x00000180
|
|
|
|
/* SDHI */
|
|
#define CONFIG_SH_SDHI_FREQ 97500000
|
|
|
|
#endif /* __STOUT_H */
|