mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
e856bdcfb4
We repeated partial moves for CONFIG_SYS_NO_FLASH, but this is not completed. Finish this work by the tool. During this move, let's rename it to CONFIG_MTD_NOR_FLASH. Actually, we have more instances of "#ifndef CONFIG_SYS_NO_FLASH" than those of "#ifdef CONFIG_SYS_NO_FLASH". Flipping the logic will make the code more readable. Besides, negative meaning symbols do not fit in obj-$(CONFIG_...) style Makefiles. This commit was created as follows: [1] Edit "default n" to "default y" in the config entry in common/Kconfig. [2] Run "tools/moveconfig.py -y -r HEAD SYS_NO_FLASH" [3] Rename the instances in defconfigs by the following: find . -path './configs/*_defconfig' | xargs sed -i \ -e '/CONFIG_SYS_NO_FLASH=y/d' \ -e 's/# CONFIG_SYS_NO_FLASH is not set/CONFIG_MTD_NOR_FLASH=y/' [4] Change the conditionals by the following: find . -name '*.[ch]' | xargs sed -i \ -e 's/ifndef CONFIG_SYS_NO_FLASH/ifdef CONFIG_MTD_NOR_FLASH/' \ -e 's/ifdef CONFIG_SYS_NO_FLASH/ifndef CONFIG_MTD_NOR_FLASH/' \ -e 's/!defined(CONFIG_SYS_NO_FLASH)/defined(CONFIG_MTD_NOR_FLASH)/' \ -e 's/defined(CONFIG_SYS_NO_FLASH)/!defined(CONFIG_MTD_NOR_FLASH)/' [5] Modify the following manually - Rename the rest of instances - Remove the description from README - Create the new Kconfig entry in drivers/mtd/Kconfig - Remove the old Kconfig entry from common/Kconfig - Remove the garbage comments from include/configs/*.h Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
160 lines
4.7 KiB
C
160 lines
4.7 KiB
C
/*
|
|
* Copyright (c) 2012 Michael Walle
|
|
* Michael Walle <michael@walle.cc>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _CONFIG_LSXL_H
|
|
#define _CONFIG_LSXL_H
|
|
|
|
/*
|
|
* Version number information
|
|
*/
|
|
#if defined(CONFIG_LSCHLV2)
|
|
#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg
|
|
#define CONFIG_MACH_TYPE 3006
|
|
#define CONFIG_SYS_TCLK 166666667 /* 166 MHz */
|
|
#elif defined(CONFIG_LSXHL)
|
|
#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg
|
|
#define CONFIG_MACH_TYPE 2663
|
|
/* CONFIG_SYS_TCLK is 200000000 by default */
|
|
#else
|
|
#error "unknown board"
|
|
#endif
|
|
|
|
/*
|
|
* General configuration options
|
|
*/
|
|
#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
|
|
#define CONFIG_KW88F6281 /* SOC Name */
|
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
|
|
#define CONFIG_MISC_INIT_R
|
|
#define CONFIG_SHOW_BOOT_PROGRESS
|
|
|
|
#define CONFIG_KIRKWOOD_GPIO
|
|
|
|
/*
|
|
* Commands configuration
|
|
*/
|
|
#define CONFIG_CMD_ENV
|
|
#define CONFIG_CMD_IDE
|
|
|
|
/*
|
|
* mv-common.h should be defined after CMD configs since it used them
|
|
* to enable certain macros
|
|
*/
|
|
#include "mv-common.h"
|
|
|
|
/* loading initramfs images without uimage header */
|
|
#define CONFIG_SUPPORT_RAW_INITRD
|
|
|
|
/* ST M25P40 */
|
|
#undef CONFIG_ENV_SPI_MAX_HZ
|
|
#define CONFIG_ENV_SPI_MAX_HZ 25000000
|
|
#undef CONFIG_SF_DEFAULT_SPEED
|
|
#define CONFIG_SF_DEFAULT_SPEED 25000000
|
|
|
|
/*
|
|
* Environment variables configurations
|
|
*/
|
|
#ifdef CONFIG_SPI_FLASH
|
|
#define CONFIG_SYS_MAX_FLASH_BANKS 1
|
|
#define CONFIG_SYS_MAX_FLASH_SECT 8
|
|
#define CONFIG_ENV_IS_IN_SPI_FLASH 1
|
|
#define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */
|
|
#else
|
|
#define CONFIG_ENV_IS_NOWHERE
|
|
#endif
|
|
|
|
#define CONFIG_ENV_SIZE 0x10000 /* 64k */
|
|
#define CONFIG_ENV_OFFSET 0x70000 /* env starts here */
|
|
|
|
/*
|
|
* Default environment variables
|
|
*/
|
|
#define CONFIG_LOADADDR 0x00800000
|
|
#define CONFIG_BOOTCOMMAND "run bootcmd_${bootsource}"
|
|
#define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/sda2"
|
|
|
|
#if defined(CONFIG_LSXHL)
|
|
#define CONFIG_FDTFILE "kirkwood-lsxhl.dtb"
|
|
#elif defined(CONFIG_LSCHLV2)
|
|
#define CONFIG_FDTFILE "kirkwood-lschlv2.dtb"
|
|
#else
|
|
#error "Unsupported board"
|
|
#endif
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"bootsource=legacy\0" \
|
|
"hdpart=0:1\0" \
|
|
"kernel_addr=0x00800000\0" \
|
|
"ramdisk_addr=0x01000000\0" \
|
|
"fdt_addr=0x00ff0000\0" \
|
|
"bootcmd_legacy=ide reset " \
|
|
"&& load ide ${hdpart} ${kernel_addr} /uImage.buffalo " \
|
|
"&& load ide ${hdpart} ${ramdisk_addr} /initrd.buffalo "\
|
|
"&& bootm ${kernel_addr} ${ramdisk_addr}\0" \
|
|
"bootcmd_net=bootp ${kernel_addr} vmlinuz " \
|
|
"&& tftpboot ${ramdisk_addr} initrd.img " \
|
|
"&& setenv ramdisk_len ${filesize} " \
|
|
"&& tftpboot ${fdt_addr} " CONFIG_FDTFILE " " \
|
|
"&& bootz ${kernel_addr} " \
|
|
"${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
|
|
"bootcmd_hdd=ide reset " \
|
|
"&& load ide ${hdpart} ${kernel_addr} /vmlinuz " \
|
|
"&& load ide ${hdpart} ${ramdisk_addr} /initrd.img " \
|
|
"&& setenv ramdisk_len ${filesize} " \
|
|
"&& load ide ${hdpart} ${fdt_addr} /dtb " \
|
|
"&& bootz ${kernel_addr} " \
|
|
"${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
|
|
"bootcmd_usb=usb start " \
|
|
"&& load usb 0:1 ${kernel_addr} /vmlinuz " \
|
|
"&& load usb 0:1 ${ramdisk_addr} /initrd.img " \
|
|
"&& setenv ramdisk_len ${filesize} " \
|
|
"&& load usb 0:1 ${fdt_addr} " CONFIG_FDTFILE " " \
|
|
"&& bootz ${kernel_addr} " \
|
|
"${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
|
|
"bootcmd_rescue=run config_nc_dhcp; run nc\0" \
|
|
"eraseenv=sf probe 0 " \
|
|
"&& sf erase " __stringify(CONFIG_ENV_OFFSET) \
|
|
" +" __stringify(CONFIG_ENV_SIZE) "\0" \
|
|
"config_nc_dhcp=setenv autoload_old ${autoload}; " \
|
|
"setenv autoload no " \
|
|
"&& bootp " \
|
|
"&& setenv ncip " \
|
|
"&& setenv autoload ${autoload_old}; " \
|
|
"setenv autoload_old\0" \
|
|
"standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \
|
|
"setenv ncip; setenv gatewayip; setenv ethact; " \
|
|
"setenv bootfile; setenv dnsip; " \
|
|
"setenv bootsource legacy; run ser\0" \
|
|
"restore_env=run standard_env; saveenv; reset\0" \
|
|
"ser=setenv stdin serial; setenv stdout serial; " \
|
|
"setenv stderr serial\0" \
|
|
"nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \
|
|
"stdin=serial\0" \
|
|
"stdout=serial\0" \
|
|
"stderr=serial\0"
|
|
|
|
/*
|
|
* Ethernet Driver configuration
|
|
*/
|
|
#ifdef CONFIG_CMD_NET
|
|
#define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */
|
|
#define CONFIG_PHY_BASE_ADR 7
|
|
#undef CONFIG_RESET_PHY_R
|
|
#endif /* CONFIG_CMD_NET */
|
|
|
|
#ifdef CONFIG_CMD_IDE
|
|
#undef CONFIG_IDE_LED
|
|
#undef CONFIG_SYS_IDE_MAXBUS
|
|
#define CONFIG_SYS_IDE_MAXBUS 1
|
|
#undef CONFIG_SYS_IDE_MAXDEVICE
|
|
#define CONFIG_SYS_IDE_MAXDEVICE 1
|
|
#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
|
|
#define CONFIG_SYS_64BIT_LBA
|
|
#endif
|
|
|
|
#endif /* _CONFIG_LSXL_H */
|