diff options
| author | Timur Tabi <timur@freescale.com> | 2012-05-04 12:21:29 +0000 | 
|---|---|---|
| committer | Andy Fleming <afleming@freescale.com> | 2012-07-06 17:30:32 -0500 | 
| commit | 84e34b6572d4368784e1e1e732f30595fa1f918e (patch) | |
| tree | 9114a1effab9051877aec791906ca79a17190c8c | |
| parent | 1fc0d59486571bad2a2c4e4a3e5c8b764c46b583 (diff) | |
| download | olio-uboot-2014.01-84e34b6572d4368784e1e1e732f30595fa1f918e.tar.xz olio-uboot-2014.01-84e34b6572d4368784e1e1e732f30595fa1f918e.zip | |
powerpc/85xx: clean up P1022DS board configuration header file
Remove some unused default environment variables (memctl_intlv_ctl,
perf_mode, diuregs, dium, and diuerr), update 'tftpflash' variable,
and add videobootargs as a Linux command line variable (so that we can
easily pass video= to the kernel).
Signed-off-by: Timur Tabi <timur@freescale.com>
| -rw-r--r-- | include/configs/P1022DS.h | 43 | 
1 files changed, 19 insertions, 24 deletions
| diff --git a/include/configs/P1022DS.h b/include/configs/P1022DS.h index fcd0190a1..50d3f8d70 100644 --- a/include/configs/P1022DS.h +++ b/include/configs/P1022DS.h @@ -490,35 +490,30 @@  #define CONFIG_LOADADDR		1000000  #define CONFIG_BOOTDELAY	10	/* -1 disables auto-boot */ -#define CONFIG_BOOTARGS  #define CONFIG_BAUDRATE	115200 -#define	CONFIG_EXTRA_ENV_SETTINGS					\ -	"perf_mode=stable\0"						\ -	"memctl_intlv_ctl=2\0"						\ -	"netdev=eth0\0"							\ -	"uboot=" MK_STR(CONFIG_UBOOTPATH) "\0"				\ -	"tftpflash=tftpboot $loadaddr $uboot; "				\ -		"protect off " MK_STR(CONFIG_SYS_TEXT_BASE) " +$filesize; "	\ -		"erase " MK_STR(CONFIG_SYS_TEXT_BASE) " +$filesize; "		\ -		"cp.b $loadaddr " MK_STR(CONFIG_SYS_TEXT_BASE) " $filesize; "	\ -		"protect on " MK_STR(CONFIG_SYS_TEXT_BASE) " +$filesize; "		\ -		"cmp.b $loadaddr " MK_STR(CONFIG_SYS_TEXT_BASE) " $filesize\0"	\ -	"consoledev=ttyS0\0"						\ -	"ramdiskaddr=2000000\0"						\ -	"ramdiskfile=uramdisk\0"  		      	        	\ -	"fdtaddr=c00000\0"	  			      		\ -	"fdtfile=p1022ds.dtb\0"	  					\ -	"bdev=sda3\0"		  			      		\ -	"diuregs=md e002c000 1d\0"			 		\ -	"dium=mw e002c01c\0" 						\ -	"diuerr=md e002c014 1\0" 					\ +#define	CONFIG_EXTRA_ENV_SETTINGS				\ +	"netdev=eth0\0"						\ +	"uboot=" MK_STR(CONFIG_UBOOTPATH) "\0"			\ +	"ubootaddr=" MK_STR(CONFIG_SYS_TEXT_BASE) "\0"		\ +	"tftpflash=tftpboot $loadaddr $uboot && "		\ +		"protect off $ubootaddr +$filesize && "		\ +		"erase $ubootaddr +$filesize && "		\ +		"cp.b $loadaddr $ubootaddr $filesize && "	\ +		"protect on $ubootaddr +$filesize && "		\ +		"cmp.b $loadaddr $ubootaddr $filesize\0"	\ +	"consoledev=ttyS0\0"					\ +	"ramdiskaddr=2000000\0"					\ +	"ramdiskfile=rootfs.ext2.gz.uboot\0"			\ +	"fdtaddr=c00000\0"	  			      	\ +	"fdtfile=p1022ds.dtb\0"	  				\ +	"bdev=sda3\0"		  			      	\  	"hwconfig=esdhc;audclk:12\0"  #define CONFIG_HDBOOT					\  	"setenv bootargs root=/dev/$bdev rw "		\ -	"console=$consoledev,$baudrate $othbootargs;"	\ +	"console=$consoledev,$baudrate $othbootargs $videobootargs;"	\  	"tftp $loadaddr $bootfile;"			\  	"tftp $fdtaddr $fdtfile;"			\  	"bootm $loadaddr - $fdtaddr" @@ -527,14 +522,14 @@  	"setenv bootargs root=/dev/nfs rw "				\  	"nfsroot=$serverip:$rootpath "					\  	"ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \ -	"console=$consoledev,$baudrate $othbootargs;"			\ +	"console=$consoledev,$baudrate $othbootargs $videobootargs;"	\  	"tftp $loadaddr $bootfile;"					\  	"tftp $fdtaddr $fdtfile;"					\  	"bootm $loadaddr - $fdtaddr"  #define CONFIG_RAMBOOTCOMMAND						\  	"setenv bootargs root=/dev/ram rw "				\ -	"console=$consoledev,$baudrate $othbootargs;"			\ +	"console=$consoledev,$baudrate $othbootargs $videobootargs;"	\  	"tftp $ramdiskaddr $ramdiskfile;"				\  	"tftp $loadaddr $bootfile;"					\  	"tftp $fdtaddr $fdtfile;"					\ |