mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 18:35:42 +01:00 
			
		
		
		
	Combine bootm_find_<thing> functions together
bootm_find_ramdisk_fdt() renamed to bootm_find_images() for readability. The function bootm_find_ramdisk_fdt() appears to be a simple wrapper for bootm_find_ramdisk(), bootm_find_fdt(), and now bootm_find_loadables(). I didn't see any other callers entering a bootm_find<thing>, so removing the wrapper, and condensing these together hopefully makes the code a little simpler. Signed-off-by: Karl Apsite <Karl.Apsite@dornerworks.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
		| @@ -206,7 +206,23 @@ static int bootm_find_os(cmd_tbl_t *cmdtp, int flag, int argc, | |||||||
| 	return 0; | 	return 0; | ||||||
| } | } | ||||||
|  |  | ||||||
| static int bootm_find_ramdisk(int flag, int argc, char * const argv[]) | /** | ||||||
|  |  * bootm_find_images - wrapper to find and locate various images | ||||||
|  |  * @flag: Ignored Argument | ||||||
|  |  * @argc: command argument count | ||||||
|  |  * @argv: command argument list | ||||||
|  |  * | ||||||
|  |  * boot_find_images() will attempt to load an available ramdisk, | ||||||
|  |  * flattened device tree, as well as specifically marked | ||||||
|  |  * "loadable" images (loadables are FIT only) | ||||||
|  |  * | ||||||
|  |  * Note: bootm_find_images will skip an image if it is not found | ||||||
|  |  * | ||||||
|  |  * @return: | ||||||
|  |  *     0, if all existing images were loaded correctly | ||||||
|  |  *     1, if an image is found but corrupted, or invalid | ||||||
|  |  */ | ||||||
|  | int bootm_find_images(int flag, int argc, char * const argv[]) | ||||||
| { | { | ||||||
| 	int ret; | 	int ret; | ||||||
|  |  | ||||||
| @@ -218,14 +234,7 @@ static int bootm_find_ramdisk(int flag, int argc, char * const argv[]) | |||||||
| 		return 1; | 		return 1; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	return 0; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| #if defined(CONFIG_OF_LIBFDT) | #if defined(CONFIG_OF_LIBFDT) | ||||||
| static int bootm_find_fdt(int flag, int argc, char * const argv[]) |  | ||||||
| { |  | ||||||
| 	int ret; |  | ||||||
|  |  | ||||||
| 	/* find flattened device tree */ | 	/* find flattened device tree */ | ||||||
| 	ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images, | 	ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images, | ||||||
| 			   &images.ft_addr, &images.ft_len); | 			   &images.ft_addr, &images.ft_len); | ||||||
| @@ -233,18 +242,10 @@ static int bootm_find_fdt(int flag, int argc, char * const argv[]) | |||||||
| 		puts("Could not find a valid device tree\n"); | 		puts("Could not find a valid device tree\n"); | ||||||
| 		return 1; | 		return 1; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	set_working_fdt_addr((ulong)images.ft_addr); | 	set_working_fdt_addr((ulong)images.ft_addr); | ||||||
|  |  | ||||||
| 	return 0; |  | ||||||
| } |  | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #if defined(CONFIG_FIT) | #if defined(CONFIG_FIT) | ||||||
| static int bootm_find_loadables(int flag, int argc, char * const argv[]) |  | ||||||
| { |  | ||||||
| 	int ret; |  | ||||||
|  |  | ||||||
| 	/* find all of the loadables */ | 	/* find all of the loadables */ | ||||||
| 	ret = boot_get_loadable(argc, argv, &images, IH_ARCH_DEFAULT, | 	ret = boot_get_loadable(argc, argv, &images, IH_ARCH_DEFAULT, | ||||||
| 			       NULL, NULL); | 			       NULL, NULL); | ||||||
| @@ -252,24 +253,6 @@ static int bootm_find_loadables(int flag, int argc, char * const argv[]) | |||||||
| 		printf("Loadable(s) is corrupt or invalid\n"); | 		printf("Loadable(s) is corrupt or invalid\n"); | ||||||
| 		return 1; | 		return 1; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	return 0; |  | ||||||
| } |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| int bootm_find_ramdisk_fdt(int flag, int argc, char * const argv[]) |  | ||||||
| { |  | ||||||
| 	if (bootm_find_ramdisk(flag, argc, argv)) |  | ||||||
| 		return 1; |  | ||||||
|  |  | ||||||
| #if defined(CONFIG_OF_LIBFDT) |  | ||||||
| 	if (bootm_find_fdt(flag, argc, argv)) |  | ||||||
| 		return 1; |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| #if defined(CONFIG_FIT) |  | ||||||
| 	if (bootm_find_loadables(flag, argc, argv)) |  | ||||||
| 		return 1; |  | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| 	return 0; | 	return 0; | ||||||
| @@ -283,7 +266,7 @@ static int bootm_find_other(cmd_tbl_t *cmdtp, int flag, int argc, | |||||||
| 	     (images.os.type == IH_TYPE_MULTI)) && | 	     (images.os.type == IH_TYPE_MULTI)) && | ||||||
| 	    (images.os.os == IH_OS_LINUX || | 	    (images.os.os == IH_OS_LINUX || | ||||||
| 		 images.os.os == IH_OS_VXWORKS)) | 		 images.os.os == IH_OS_VXWORKS)) | ||||||
| 		return bootm_find_ramdisk_fdt(flag, argc, argv); | 		return bootm_find_images(flag, argc, argv); | ||||||
|  |  | ||||||
| 	return 0; | 	return 0; | ||||||
| } | } | ||||||
|   | |||||||
| @@ -580,7 +580,7 @@ static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc, | |||||||
| 	 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not | 	 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not | ||||||
| 	 * have a header that provide this informaiton. | 	 * have a header that provide this informaiton. | ||||||
| 	 */ | 	 */ | ||||||
| 	if (bootm_find_ramdisk_fdt(flag, argc, argv)) | 	if (bootm_find_images(flag, argc, argv)) | ||||||
| 		return 1; | 		return 1; | ||||||
|  |  | ||||||
| 	return 0; | 	return 0; | ||||||
| @@ -721,7 +721,7 @@ static int booti_start(cmd_tbl_t *cmdtp, int flag, int argc, | |||||||
| 	 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not | 	 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not | ||||||
| 	 * have a header that provide this informaiton. | 	 * have a header that provide this informaiton. | ||||||
| 	 */ | 	 */ | ||||||
| 	if (bootm_find_ramdisk_fdt(flag, argc, argv)) | 	if (bootm_find_images(flag, argc, argv)) | ||||||
| 		return 1; | 		return 1; | ||||||
|  |  | ||||||
| 	return 0; | 	return 0; | ||||||
|   | |||||||
| @@ -49,7 +49,7 @@ int boot_selected_os(int argc, char * const argv[], int state, | |||||||
| ulong bootm_disable_interrupts(void); | ulong bootm_disable_interrupts(void); | ||||||
|  |  | ||||||
| /* This is a special function used by booti/bootz */ | /* This is a special function used by booti/bootz */ | ||||||
| int bootm_find_ramdisk_fdt(int flag, int argc, char * const argv[]); | int bootm_find_images(int flag, int argc, char * const argv[]); | ||||||
|  |  | ||||||
| int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[], | int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[], | ||||||
| 		    int states, bootm_headers_t *images, int boot_progress); | 		    int states, bootm_headers_t *images, int boot_progress); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user