mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Perform simple renames of: CONFIG_MXC_USB_FLAGS to CFG_MXC_USB_FLAGS CONFIG_MXC_USB_PORT to CFG_MXC_USB_PORT CONFIG_MXC_USB_PORTSC to CFG_MXC_USB_PORTSC Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			109 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * Copyright (C) 2015 Freescale Semiconductor, Inc.
 | 
						|
 * Copyright (C) 2016 Grinn
 | 
						|
 *
 | 
						|
 * Configuration settings for the Grinn liteBoard (i.MX6UL).
 | 
						|
 */
 | 
						|
#ifndef __LITEBOARD_CONFIG_H
 | 
						|
#define __LITEBOARD_CONFIG_H
 | 
						|
 | 
						|
#include <asm/arch/imx-regs.h>
 | 
						|
#include <linux/sizes.h>
 | 
						|
#include <linux/stringify.h>
 | 
						|
#include "mx6_common.h"
 | 
						|
 | 
						|
#define CFG_MXC_UART_BASE		UART1_BASE
 | 
						|
 | 
						|
/* MMC Configs */
 | 
						|
#ifdef CONFIG_FSL_USDHC
 | 
						|
#define CFG_SYS_FSL_ESDHC_ADDR	USDHC1_BASE_ADDR
 | 
						|
#endif
 | 
						|
 | 
						|
#define CFG_EXTRA_ENV_SETTINGS \
 | 
						|
	"script=boot.scr\0" \
 | 
						|
	"image=zImage\0" \
 | 
						|
	"console=ttymxc0\0" \
 | 
						|
	"fdt_high=0xffffffff\0" \
 | 
						|
	"initrd_high=0xffffffff\0" \
 | 
						|
	"fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
 | 
						|
	"fdt_addr=0x83000000\0" \
 | 
						|
	"boot_fdt=try\0" \
 | 
						|
	"ip_dyn=yes\0" \
 | 
						|
	"mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
 | 
						|
	"mmcpart=1\0" \
 | 
						|
	"mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
 | 
						|
	"mmcautodetect=yes\0" \
 | 
						|
	"mmcargs=setenv bootargs console=${console},${baudrate} " \
 | 
						|
		"root=${mmcroot}\0" \
 | 
						|
	"loadbootscript=" \
 | 
						|
		"fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
 | 
						|
	"bootscript=echo Running bootscript from mmc ...; " \
 | 
						|
		"source\0" \
 | 
						|
	"loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
 | 
						|
	"loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
 | 
						|
	"mmcboot=echo Booting from mmc ...; " \
 | 
						|
		"run mmcargs; " \
 | 
						|
		"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
 | 
						|
			"if run loadfdt; then " \
 | 
						|
				"bootz ${loadaddr} - ${fdt_addr}; " \
 | 
						|
			"else " \
 | 
						|
				"if test ${boot_fdt} = try; then " \
 | 
						|
					"bootz; " \
 | 
						|
				"else " \
 | 
						|
					"echo WARN: Cannot load the DT; " \
 | 
						|
				"fi; " \
 | 
						|
			"fi; " \
 | 
						|
		"else " \
 | 
						|
			"bootz; " \
 | 
						|
		"fi;\0" \
 | 
						|
	"netargs=setenv bootargs console=${console},${baudrate} " \
 | 
						|
		"root=/dev/nfs " \
 | 
						|
	"ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
 | 
						|
	"netboot=echo Booting from net ...; " \
 | 
						|
		"run netargs; " \
 | 
						|
		"if test ${ip_dyn} = yes; then " \
 | 
						|
			"setenv get_cmd dhcp; " \
 | 
						|
		"else " \
 | 
						|
			"setenv get_cmd tftp; " \
 | 
						|
		"fi; " \
 | 
						|
		"${get_cmd} ${image}; " \
 | 
						|
		"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
 | 
						|
			"if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
 | 
						|
				"bootz ${loadaddr} - ${fdt_addr}; " \
 | 
						|
			"else " \
 | 
						|
				"if test ${boot_fdt} = try; then " \
 | 
						|
					"bootz; " \
 | 
						|
				"else " \
 | 
						|
					"echo WARN: Cannot load the DT; " \
 | 
						|
				"fi; " \
 | 
						|
			"fi; " \
 | 
						|
		"else " \
 | 
						|
			"bootz; " \
 | 
						|
		"fi;\0"
 | 
						|
 | 
						|
/* Miscellaneous configurable options */
 | 
						|
 | 
						|
/* Physical Memory Map */
 | 
						|
#define PHYS_SDRAM			MMDC0_ARB_BASE_ADDR
 | 
						|
 | 
						|
#define CFG_SYS_SDRAM_BASE		PHYS_SDRAM
 | 
						|
#define CFG_SYS_INIT_RAM_ADDR	IRAM_BASE_ADDR
 | 
						|
#define CFG_SYS_INIT_RAM_SIZE	IRAM_SIZE
 | 
						|
 | 
						|
/* FLASH and environment organization */
 | 
						|
 | 
						|
/* USB Configs */
 | 
						|
#ifdef CONFIG_CMD_USB
 | 
						|
#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
 | 
						|
#define CFG_MXC_USB_FLAGS   0
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef CONFIG_CMD_NET
 | 
						|
#define CFG_FEC_ENET_DEV		0
 | 
						|
 | 
						|
#define CFG_FEC_MXC_PHYADDR		0x0
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |