arm: Remove cgtqmx6eval board
This board has not been converted to CONFIG_DM_MMC by the deadline. Remove it. Cc: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
		
							parent
							
								
									defd0dcfb9
								
							
						
					
					
						commit
						178d70b5b3
					
				|  | @ -144,15 +144,6 @@ config TARGET_ARISTAINETOS2CCSLB | |||
| 	imply CMD_SATA | ||||
| 	imply CMD_DM | ||||
| 
 | ||||
| config TARGET_CGTQMX6EVAL | ||||
| 	bool "cgtqmx6eval" | ||||
| 	depends on MX6QDL | ||||
| 	select BOARD_LATE_INIT | ||||
| 	select DM | ||||
| 	select DM_THERMAL | ||||
| 	select SUPPORT_SPL | ||||
| 	imply CMD_DM | ||||
| 
 | ||||
| config TARGET_CM_FX6 | ||||
| 	bool "CM-FX6" | ||||
| 	depends on MX6QDL | ||||
|  | @ -643,7 +634,6 @@ source "board/armadeus/opos6uldev/Kconfig" | |||
| source "board/boundary/nitrogen6x/Kconfig" | ||||
| source "board/bticino/mamoj/Kconfig" | ||||
| source "board/compulab/cm_fx6/Kconfig" | ||||
| source "board/congatec/cgtqmx6eval/Kconfig" | ||||
| source "board/dhelectronics/dh_imx6/Kconfig" | ||||
| source "board/embest/mx6boards/Kconfig" | ||||
| source "board/engicam/imx6q/Kconfig" | ||||
|  |  | |||
|  | @ -1,12 +0,0 @@ | |||
| if TARGET_CGTQMX6EVAL | ||||
| 
 | ||||
| config SYS_BOARD | ||||
| 	default "cgtqmx6eval" | ||||
| 
 | ||||
| config SYS_VENDOR | ||||
| 	default "congatec" | ||||
| 
 | ||||
| config SYS_CONFIG_NAME | ||||
| 	default "cgtqmx6eval" | ||||
| 
 | ||||
| endif | ||||
|  | @ -1,6 +0,0 @@ | |||
| CGTQMX6EVAL BOARD | ||||
| M:	Otavio Salvador <otavio@ossystems.com.br> | ||||
| S:	Maintained | ||||
| F:	board/congatec/cgtqmx6eval/ | ||||
| F:	include/configs/cgtqmx6eval.h | ||||
| F:	configs/cgtqmx6eval_defconfig | ||||
|  | @ -1,8 +0,0 @@ | |||
| # SPDX-License-Identifier: GPL-2.0+
 | ||||
| #
 | ||||
| # Copyright (C) 2007, Guennadi Liakhovetski <lg@denx.de>
 | ||||
| #
 | ||||
| # (C) Copyright 2011 Freescale Semiconductor, Inc.
 | ||||
| # (C) Copyright 2013 Adeneo Embedded <www.adeneo-embedded.com>
 | ||||
| 
 | ||||
| obj-y  := cgtqmx6eval.o | ||||
|  | @ -1,74 +0,0 @@ | |||
| U-Boot for the Congatec QMX6 boards | ||||
| 
 | ||||
| This file contains information for the port of U-Boot to the Congatec | ||||
| QMX6 boards. | ||||
| 
 | ||||
| 1. Building U-Boot | ||||
| ------------------ | ||||
| 
 | ||||
| - Build U-Boot for Congatec QMX6 boards: | ||||
| 
 | ||||
| $ make mrproper | ||||
| $ make cgtqmx6eval_defconfig | ||||
| $ make | ||||
| 
 | ||||
| This will generate the following binaries: | ||||
| 
 | ||||
| - SPL | ||||
| - u-boot.img | ||||
| 
 | ||||
| 2. Flashing U-Boot in the SPI NOR | ||||
| --------------------------------- | ||||
| 
 | ||||
| Copy SPL and u-boot.img to the exported TFTP directory of the | ||||
| host PC (/tftpboot , for example). | ||||
| 
 | ||||
| => sf probe | ||||
| 
 | ||||
| => setenv serverip <server_ip_address> | ||||
| 
 | ||||
| => setenv ipaddr <board_ip_address> | ||||
| 
 | ||||
| => tftp 0x12000000 SPL | ||||
| 
 | ||||
| => sf erase 0x0 0x10000 | ||||
| 
 | ||||
| => sf write 0x12000000 0x400 0x10000 | ||||
| 
 | ||||
| => tftp 0x12000000 u-boot.img | ||||
| 
 | ||||
| => sf erase 0x10000 0x70000 | ||||
| 
 | ||||
| => sf write 0x12000000 0x10000 0x70000 | ||||
| 
 | ||||
| Reboot the board and the new U-Boot should come up. | ||||
| 
 | ||||
| 3. Booting from the SD card | ||||
| --------------------------- | ||||
| 
 | ||||
| - Flash the SPL image into the SD card: | ||||
| 
 | ||||
| sudo dd if=SPL of=/dev/mmcblk0 bs=1k seek=1; sync | ||||
| 
 | ||||
| - Flash the u-boot.img image into the SD card: | ||||
| 
 | ||||
| sudo dd if=u-boot.img of=/dev/mmcblk0 bs=1k seek=69; sync | ||||
| 
 | ||||
| - Insert the SD card into the big slot. | ||||
| 
 | ||||
| The boot medium of Congatec QMX6 boards is the SPI NOR flash, so boot | ||||
| the board from SPI first. | ||||
| 
 | ||||
| It is also possible to boot from the SD card slot by using the 'bmode' | ||||
| command: | ||||
| 
 | ||||
| => bmode esdhc4 | ||||
| 
 | ||||
| And then the U-Boot from the big slot will boot. | ||||
| 
 | ||||
| Note: If the "bmode" command is not available from your pre-installed U-Boot, | ||||
| these instruction will produce the same effect: | ||||
| 
 | ||||
| => mw.l 0x20d8040 0x3850 | ||||
| => mw.l 0x020d8044 0x10000000 | ||||
| => reset | ||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							|  | @ -1,99 +0,0 @@ | |||
| CONFIG_ARM=y | ||||
| CONFIG_ARCH_MX6=y | ||||
| CONFIG_SYS_TEXT_BASE=0x17800000 | ||||
| CONFIG_SPL_GPIO_SUPPORT=y | ||||
| CONFIG_SPL_LIBCOMMON_SUPPORT=y | ||||
| CONFIG_SPL_LIBGENERIC_SUPPORT=y | ||||
| CONFIG_NR_DRAM_BANKS=1 | ||||
| CONFIG_ENV_SIZE=0x2000 | ||||
| CONFIG_ENV_OFFSET=0xC0000 | ||||
| CONFIG_ENV_SECT_SIZE=0x10000 | ||||
| CONFIG_SYS_SPI_U_BOOT_OFFS=0x10000 | ||||
| CONFIG_MX6QDL=y | ||||
| CONFIG_TARGET_CGTQMX6EVAL=y | ||||
| CONFIG_SPL_TEXT_BASE=0x00908000 | ||||
| CONFIG_SPL_MMC_SUPPORT=y | ||||
| CONFIG_SPL_SERIAL_SUPPORT=y | ||||
| CONFIG_SPL=y | ||||
| CONFIG_SPL_LIBDISK_SUPPORT=y | ||||
| CONFIG_SPL_SPI_FLASH_SUPPORT=y | ||||
| CONFIG_SPL_SPI_SUPPORT=y | ||||
| CONFIG_SUPPORT_RAW_INITRD=y | ||||
| CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg" | ||||
| CONFIG_BOOTDELAY=3 | ||||
| # CONFIG_CONSOLE_MUX is not set | ||||
| CONFIG_SYS_CONSOLE_IS_IN_ENV=y | ||||
| CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE=y | ||||
| CONFIG_BOARD_EARLY_INIT_F=y | ||||
| CONFIG_MISC_INIT_R=y | ||||
| CONFIG_SPL_FS_EXT4=y | ||||
| CONFIG_SPL_I2C_SUPPORT=y | ||||
| CONFIG_SPL_SPI_LOAD=y | ||||
| CONFIG_SPL_WATCHDOG_SUPPORT=y | ||||
| CONFIG_HUSH_PARSER=y | ||||
| CONFIG_SYS_PROMPT="CGT-QMX6-Quad U-Boot > " | ||||
| CONFIG_CMD_BOOTZ=y | ||||
| CONFIG_CMD_DFU=y | ||||
| CONFIG_CMD_GPIO=y | ||||
| CONFIG_CMD_I2C=y | ||||
| CONFIG_CMD_MMC=y | ||||
| CONFIG_CMD_SATA=y | ||||
| CONFIG_CMD_SF=y | ||||
| CONFIG_CMD_USB=y | ||||
| CONFIG_CMD_USB_MASS_STORAGE=y | ||||
| # CONFIG_CMD_SETEXPR is not set | ||||
| CONFIG_CMD_DHCP=y | ||||
| CONFIG_CMD_MII=y | ||||
| CONFIG_CMD_PING=y | ||||
| CONFIG_CMD_CACHE=y | ||||
| CONFIG_CMD_EXT2=y | ||||
| CONFIG_CMD_EXT4=y | ||||
| CONFIG_CMD_EXT4_WRITE=y | ||||
| CONFIG_CMD_FAT=y | ||||
| CONFIG_CMD_FS_GENERIC=y | ||||
| CONFIG_ENV_OVERWRITE=y | ||||
| CONFIG_ENV_IS_IN_SPI_FLASH=y | ||||
| CONFIG_SYS_RELOC_GD_ENV_ADDR=y | ||||
| CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y | ||||
| CONFIG_BOUNCE_BUFFER=y | ||||
| CONFIG_DWC_AHSATA=y | ||||
| CONFIG_DFU_MMC=y | ||||
| CONFIG_DFU_SF=y | ||||
| CONFIG_USB_FUNCTION_FASTBOOT=y | ||||
| CONFIG_FASTBOOT_BUF_ADDR=0x12000000 | ||||
| CONFIG_FSL_USDHC=y | ||||
| CONFIG_SPI_FLASH=y | ||||
| CONFIG_SF_DEFAULT_MODE=0 | ||||
| CONFIG_SF_DEFAULT_SPEED=20000000 | ||||
| CONFIG_PHYLIB=y | ||||
| CONFIG_PHY_ATHEROS=y | ||||
| CONFIG_MII=y | ||||
| CONFIG_MXC_UART=y | ||||
| CONFIG_SPI=y | ||||
| CONFIG_MXC_SPI=y | ||||
| CONFIG_IMX_THERMAL=y | ||||
| CONFIG_USB=y | ||||
| CONFIG_USB_STORAGE=y | ||||
| CONFIG_USB_KEYBOARD=y | ||||
| CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP=y | ||||
| CONFIG_USB_GADGET=y | ||||
| CONFIG_USB_GADGET_MANUFACTURER="Congatec" | ||||
| CONFIG_USB_GADGET_VENDOR_NUM=0x0525 | ||||
| CONFIG_USB_GADGET_PRODUCT_NUM=0xa4a5 | ||||
| CONFIG_CI_UDC=y | ||||
| CONFIG_USB_HOST_ETHER=y | ||||
| CONFIG_USB_ETHER_ASIX=y | ||||
| CONFIG_DM_VIDEO=y | ||||
| # CONFIG_BACKLIGHT is not set | ||||
| # CONFIG_CMD_VIDCONSOLE is not set | ||||
| # CONFIG_VIDEO_BPP8 is not set | ||||
| # CONFIG_VIDEO_BPP32 is not set | ||||
| # CONFIG_VIDEO_ANSI is not set | ||||
| CONFIG_SYS_WHITE_ON_BLACK=y | ||||
| # CONFIG_PANEL is not set | ||||
| CONFIG_VIDEO_IPUV3=y | ||||
| CONFIG_SPLASH_SCREEN=y | ||||
| CONFIG_SPLASH_SCREEN_ALIGN=y | ||||
| CONFIG_VIDEO_BMP_RLE8=y | ||||
| CONFIG_BMP_16BPP=y | ||||
| CONFIG_OF_LIBFDT=y | ||||
|  | @ -1,197 +0,0 @@ | |||
| /* SPDX-License-Identifier: GPL-2.0+ */ | ||||
| /*
 | ||||
|  * | ||||
|  * Congatec Conga-QEVAl board configuration file. | ||||
|  * | ||||
|  * Copyright (C) 2010-2011 Freescale Semiconductor, Inc. | ||||
|  * Based on Freescale i.MX6Q Sabre Lite board configuration file. | ||||
|  * Copyright (C) 2013, Adeneo Embedded <www.adeneo-embedded.com> | ||||
|  * Leo Sartre, <lsartre@adeneo-embedded.com> | ||||
|  */ | ||||
| 
 | ||||
| #ifndef __CONFIG_CGTQMX6EVAL_H | ||||
| #define __CONFIG_CGTQMX6EVAL_H | ||||
| 
 | ||||
| #include <linux/stringify.h> | ||||
| 
 | ||||
| #include "mx6_common.h" | ||||
| 
 | ||||
| #define CONFIG_MACH_TYPE	4122 | ||||
| 
 | ||||
| #ifdef CONFIG_SPL | ||||
| #include "imx6_spl.h" | ||||
| #endif | ||||
| 
 | ||||
| /* Size of malloc() pool */ | ||||
| #define CONFIG_SYS_MALLOC_LEN		(10 * 1024 * 1024) | ||||
| 
 | ||||
| #define CONFIG_MXC_UART_BASE	       UART2_BASE | ||||
| 
 | ||||
| /* MMC Configs */ | ||||
| #define CONFIG_SYS_FSL_ESDHC_ADDR      0 | ||||
| 
 | ||||
| /* SPI NOR */ | ||||
| #define CONFIG_SPI_FLASH_STMICRO | ||||
| #define CONFIG_SPI_FLASH_SST | ||||
| 
 | ||||
| /* Thermal support */ | ||||
| 
 | ||||
| /* I2C Configs */ | ||||
| #define CONFIG_SYS_I2C | ||||
| #define CONFIG_SYS_I2C_MXC | ||||
| #define CONFIG_SYS_I2C_MXC_I2C1		/* enable I2C bus 1 */ | ||||
| #define CONFIG_SYS_I2C_MXC_I2C2		/* enable I2C bus 2 */ | ||||
| #define CONFIG_SYS_I2C_MXC_I2C2		/* enable I2C bus 2 */ | ||||
| #define CONFIG_SYS_I2C_SPEED		  100000 | ||||
| 
 | ||||
| /* PMIC */ | ||||
| #define CONFIG_POWER | ||||
| #define CONFIG_POWER_I2C | ||||
| #define CONFIG_POWER_PFUZE100 | ||||
| #define CONFIG_POWER_PFUZE100_I2C_ADDR	0x08 | ||||
| 
 | ||||
| /* USB Configs */ | ||||
| #define CONFIG_EHCI_HCD_INIT_AFTER_RESET | ||||
| #define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW) | ||||
| #define CONFIG_MXC_USB_FLAGS	0 | ||||
| #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 /* Enabled USB controller number */ | ||||
| 
 | ||||
| #define CONFIG_USBD_HS | ||||
| 
 | ||||
| /* Framebuffer */ | ||||
| #define CONFIG_VIDEO_LOGO | ||||
| #define CONFIG_VIDEO_BMP_LOGO | ||||
| #define CONFIG_IMX_HDMI | ||||
| 
 | ||||
| /* SATA */ | ||||
| #define CONFIG_SYS_SATA_MAX_DEVICE	1 | ||||
| #define CONFIG_DWC_AHSATA_PORT_ID	0 | ||||
| #define CONFIG_DWC_AHSATA_BASE_ADDR	SATA_ARB_BASE_ADDR | ||||
| #define CONFIG_LBA48 | ||||
| 
 | ||||
| /* Ethernet */ | ||||
| #define CONFIG_FEC_MXC | ||||
| #define IMX_FEC_BASE			ENET_BASE_ADDR | ||||
| #define CONFIG_FEC_XCV_TYPE		RGMII | ||||
| #define CONFIG_ETHPRIME			"FEC" | ||||
| #define CONFIG_FEC_MXC_PHYADDR		6 | ||||
| 
 | ||||
| /* Command definition */ | ||||
| 
 | ||||
| #define CONFIG_MXC_UART_BASE	UART2_BASE | ||||
| #define CONSOLE_DEV	"ttymxc1" | ||||
| #define CONFIG_MMCROOT		"/dev/mmcblk0p2" | ||||
| 
 | ||||
| #define CONFIG_EXTRA_ENV_SETTINGS \ | ||||
| 	"script=boot.scr\0" \ | ||||
| 	"image=zImage\0" \ | ||||
| 	"fdtfile=undefined\0" \ | ||||
| 	"fdt_addr_r=0x18000000\0" \ | ||||
| 	"boot_fdt=try\0" \ | ||||
| 	"ip_dyn=yes\0" \ | ||||
| 	"console=" CONSOLE_DEV "\0" \ | ||||
| 	"dfuspi=dfu 0 sf 0:0:10000000:0\0" \ | ||||
| 	"dfu_alt_info_spl=spl raw 0x400\0" \ | ||||
| 	"dfu_alt_info_img=u-boot raw 0x10000\0" \ | ||||
| 	"dfu_alt_info=spl raw 0x400\0" \ | ||||
| 	"bootm_size=0x10000000\0" \ | ||||
| 	"mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ | ||||
| 	"mmcpart=1\0" \ | ||||
| 	"mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \ | ||||
| 	"update_sd_firmware=" \ | ||||
| 		"if test ${ip_dyn} = yes; then " \ | ||||
| 			"setenv get_cmd dhcp; " \ | ||||
| 		"else " \ | ||||
| 			"setenv get_cmd tftp; " \ | ||||
| 		"fi; " \ | ||||
| 		"if mmc dev ${mmcdev}; then "	\ | ||||
| 			"if ${get_cmd} ${update_sd_firmware_filename}; then " \ | ||||
| 				"setexpr fw_sz ${filesize} / 0x200; " \ | ||||
| 				"setexpr fw_sz ${fw_sz} + 1; "	\ | ||||
| 				"mmc write ${loadaddr} 0x2 ${fw_sz}; " \ | ||||
| 			"fi; "	\ | ||||
| 		"fi\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_r} ${fdtfile}\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_r}; " \ | ||||
| 			"else " \ | ||||
| 				"if test ${boot_fdt} = try; then " \ | ||||
| 					"bootz; " \ | ||||
| 				"else " \ | ||||
| 					"echo WARN: Cannot load the DT; " \ | ||||
| 				"fi; " \ | ||||
| 			"fi; " \ | ||||
| 		"else " \ | ||||
| 			"bootz; " \ | ||||
| 		"fi;\0" \ | ||||
| 	"findfdt="\ | ||||
| 		"if test $board_rev = MX6Q ; then " \ | ||||
| 			"setenv fdtfile imx6q-qmx6.dtb; fi; " \ | ||||
| 		"if test $board_rev = MX6DL ; then " \ | ||||
| 			"setenv fdtfile imx6dl-qmx6.dtb; fi; " \ | ||||
| 		"if test $fdtfile = undefined; then " \ | ||||
| 			"echo WARNING: Could not determine dtb to use; 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_r} ${fdtfile}; then " \ | ||||
| 				"bootz ${loadaddr} - ${fdt_addr_r}; " \ | ||||
| 			"else " \ | ||||
| 				"if test ${boot_fdt} = try; then " \ | ||||
| 					"bootz; " \ | ||||
| 				"else " \ | ||||
| 					"echo WARN: Cannot load the DT; " \ | ||||
| 				"fi; " \ | ||||
| 			"fi; " \ | ||||
| 		"else " \ | ||||
| 			"bootz; " \ | ||||
| 		"fi;\0" \ | ||||
| 	"spilock=sf probe && sf protect lock 0x3f0000 0x10000;"\ | ||||
| 
 | ||||
| #define CONFIG_BOOTCOMMAND \ | ||||
| 	"run spilock;"	    \ | ||||
| 	"run findfdt; "	\ | ||||
| 	"mmc dev ${mmcdev};" \ | ||||
| 	"if mmc rescan; then " \ | ||||
| 		"if run loadbootscript; then " \ | ||||
| 		"run bootscript; " \ | ||||
| 		"else " \ | ||||
| 			"if run loadimage; then " \ | ||||
| 				"run mmcboot; " \ | ||||
| 			"else run netboot; " \ | ||||
| 			"fi; " \ | ||||
| 		"fi; " \ | ||||
| 	"else run netboot; fi" | ||||
| 
 | ||||
| /* Physical Memory Map */ | ||||
| #define PHYS_SDRAM		       MMDC0_ARB_BASE_ADDR | ||||
| 
 | ||||
| #define CONFIG_SYS_SDRAM_BASE	       PHYS_SDRAM | ||||
| #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR | ||||
| #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE | ||||
| 
 | ||||
| #define CONFIG_SYS_INIT_SP_OFFSET \ | ||||
| 	(CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | ||||
| #define CONFIG_SYS_INIT_SP_ADDR \ | ||||
| 	(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) | ||||
| 
 | ||||
| #endif			       /* __CONFIG_CGTQMX6EVAL_H */ | ||||
		Loading…
	
		Reference in New Issue