diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/am65x_evm.h | 3 | ||||
| -rw-r--r-- | include/configs/omapl138_lcdk.h | 39 | ||||
| -rw-r--r-- | include/configs/ti_armv7_common.h | 8 | ||||
| -rw-r--r-- | include/usb.h | 11 | 
4 files changed, 16 insertions, 45 deletions
| diff --git a/include/configs/am65x_evm.h b/include/configs/am65x_evm.h index 6072e4a48c8..0249a20ba8f 100644 --- a/include/configs/am65x_evm.h +++ b/include/configs/am65x_evm.h @@ -94,11 +94,14 @@  		"done;\0"						\  	"get_kern_mmc=load mmc ${bootpart} ${loadaddr} "		\  		"${bootdir}/${name_kern}\0"				\ +	"get_fit_mmc=load mmc ${bootpart} ${addr_fit} "			\ +		"${bootdir}/${name_fit}\0"				\  	"partitions=" PARTS_DEFAULT  /* Incorporate settings into the U-Boot environment */  #define CONFIG_EXTRA_ENV_SETTINGS					\  	DEFAULT_MMC_TI_ARGS						\ +	DEFAULT_FIT_TI_ARGS						\  	EXTRA_ENV_AM65X_BOARD_SETTINGS					\  	EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC diff --git a/include/configs/omapl138_lcdk.h b/include/configs/omapl138_lcdk.h index cab402a484c..1c41e7e97ad 100644 --- a/include/configs/omapl138_lcdk.h +++ b/include/configs/omapl138_lcdk.h @@ -13,8 +13,6 @@  /*   * Board   */ -#undef CONFIG_USE_SPIFLASH -#undef	CONFIG_SYS_USE_NOR  /*   * SoC Configuration @@ -104,21 +102,10 @@   * Serial Driver info   */  #define CONFIG_SYS_NS16550_CLK	clk_get(DAVINCI_UART2_CLKID) -#if !defined(CONFIG_DM_SERIAL) -#define CONFIG_SYS_NS16550_SERIAL -#define CONFIG_SYS_NS16550_REG_SIZE	-4	/* NS16550 register size */ -#define CONFIG_SYS_NS16550_COM1	DAVINCI_UART2_BASE /* Base address of UART2 */ -#define CONFIG_SYS_NS16550_CLK	clk_get(DAVINCI_UART2_CLKID) -#define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200 } -#endif  #define CONFIG_SYS_SPI_BASE		DAVINCI_SPI1_BASE  #define CONFIG_SYS_SPI_CLK		clk_get(DAVINCI_SPI1_CLKID) -#ifdef CONFIG_USE_SPIFLASH -#define CONFIG_SYS_SPI_U_BOOT_SIZE	0x30000 -#endif -  /*   * I2C Configuration   */ @@ -168,24 +155,6 @@  #define CONFIG_SPL_NAND_LOAD  #endif -#ifdef CONFIG_SYS_USE_NOR -#define CONFIG_SYS_MAX_FLASH_BANKS	1 /* max number of flash banks */ -#define CONFIG_SYS_FLASH_SECT_SZ	(128 << 10) /* 128KB */ -#define CONFIG_ENV_OFFSET		(CONFIG_SYS_FLASH_SECT_SZ * 3) -#define CONFIG_ENV_SIZE			(128 << 10) -#define CONFIG_SYS_FLASH_BASE		DAVINCI_ASYNC_EMIF_DATA_CE2_BASE -#define PHYS_FLASH_SIZE			(8 << 20) /* Flash size 8MB */ -#define CONFIG_SYS_MAX_FLASH_SECT ((PHYS_FLASH_SIZE/CONFIG_SYS_FLASH_SECT_SZ)\ -	       + 3) -#define CONFIG_ENV_SECT_SIZE		CONFIG_SYS_FLASH_SECT_SZ -#endif - -#ifdef CONFIG_USE_SPIFLASH -#define CONFIG_ENV_SIZE			(64 << 10) -#define CONFIG_ENV_OFFSET		(256 << 10) -#define CONFIG_ENV_SECT_SIZE		(64 << 10) -#endif -  /*   * Network & Ethernet Configuration   */ @@ -244,12 +213,6 @@  #define CONFIG_CLOCKS  #endif -#if !defined(CONFIG_NAND) && \ -	!defined(CONFIG_SYS_USE_NOR) && \ -	!defined(CONFIG_USE_SPIFLASH) -#define CONFIG_ENV_SIZE		(16 << 10) -#endif -  /* SD/MMC */  #ifdef CONFIG_ENV_IS_IN_MMC @@ -259,7 +222,6 @@  #define CONFIG_ENV_OFFSET	(51 << 9)	/* Sector 51 */  #endif -#ifndef CONFIG_DIRECT_NOR_BOOT  /* defines for SPL */  #define CONFIG_SYS_SPL_MALLOC_START	(CONFIG_SYS_TEXT_BASE - \  						CONFIG_SYS_MALLOC_LEN) @@ -267,7 +229,6 @@  #define CONFIG_SPL_STACK	0x8001ff00  #define CONFIG_SPL_MAX_FOOTPRINT	32768  #define CONFIG_SPL_PAD_TO	32768 -#endif  /* additions for new relocation code, must added to all boards */  #define CONFIG_SYS_SDRAM_BASE		0xc0000000 diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h index 2058f8de0fd..2de6bc23909 100644 --- a/include/configs/ti_armv7_common.h +++ b/include/configs/ti_armv7_common.h @@ -55,7 +55,13 @@  	"addr_fit=0x90000000\0" \  	"name_fit=fitImage\0" \  	"update_to_fit=setenv loadaddr ${addr_fit}; setenv bootfile ${name_fit}\0" \ -	"loadfit=run args_mmc; bootm ${loadaddr}#${fdtfile};\0" \ +	"get_overlaystring=" \ +		"for overlay in $overlay_files;" \ +		"do;" \ +		"setenv overlaystring ${overlaystring}'#'${overlay};" \ +		"done;\0" \ +	"run_fit=bootm ${loadaddr}#${fdtfile}${overlaystring}\0" \ +	"loadfit=run args_mmc; run run_fit;\0" \  /*   * DDR information.  If the CONFIG_NR_DRAM_BANKS is not defined, diff --git a/include/usb.h b/include/usb.h index 420a30e49fa..bcad552f85f 100644 --- a/include/usb.h +++ b/include/usb.h @@ -184,7 +184,7 @@ int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,  int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,  			int transfer_len, struct devrequest *setup);  int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer, -			int transfer_len, int interval); +			int transfer_len, int interval, bool nonblock);  #if defined CONFIG_USB_EHCI_HCD || defined CONFIG_USB_MUSB_HOST \  	|| CONFIG_IS_ENABLED(DM_USB) @@ -261,8 +261,8 @@ int usb_control_msg(struct usb_device *dev, unsigned int pipe,  			void *data, unsigned short size, int timeout);  int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,  			void *data, int len, int *actual_length, int timeout); -int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe, -			void *buffer, int transfer_len, int interval); +int usb_int_msg(struct usb_device *dev, unsigned long pipe, +		void *buffer, int transfer_len, int interval, bool nonblock);  int usb_disable_asynch(int disable);  int usb_maxpacket(struct usb_device *dev, unsigned long pipe);  int usb_get_configuration_no(struct usb_device *dev, int cfgno, @@ -708,7 +708,7 @@ struct dm_usb_ops {  	 */  	int (*interrupt)(struct udevice *bus, struct usb_device *udev,  			 unsigned long pipe, void *buffer, int length, -			 int interval); +			 int interval, bool nonblock);  	/**  	 * create_int_queue() - Create and queue interrupt packets @@ -1029,7 +1029,8 @@ int usb_emul_bulk(struct udevice *emul, struct usb_device *udev,   * @return 0 if OK, -ve on error   */  int usb_emul_int(struct udevice *emul, struct usb_device *udev, -		  unsigned long pipe, void *buffer, int length, int interval); +		  unsigned long pipe, void *buffer, int length, int interval, +		  bool nonblock);  /**   * usb_emul_find() - Find an emulator for a particular device | 
