Tom Rini | 4549e78 | 2018-05-06 18:27:01 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 |
| 4 | * Ladislav Michl <ladis@linux-mips.org> |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <config.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 9 | #include <image.h> |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 10 | #include <nand.h> |
| 11 | #include <onenand_uboot.h> |
| 12 | #include <ubispl.h> |
| 13 | #include <spl.h> |
| 14 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 15 | int spl_ubi_load_image(struct spl_image_info *spl_image, |
| 16 | struct spl_boot_device *bootdev) |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 17 | { |
| 18 | struct image_header *header; |
| 19 | struct ubispl_info info; |
| 20 | struct ubispl_load volumes[2]; |
| 21 | int ret = 1; |
| 22 | |
Simon Glass | ecdfd69 | 2016-09-24 18:19:57 -0600 | [diff] [blame] | 23 | switch (bootdev->boot_device) { |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 24 | #ifdef CONFIG_SPL_NAND_SUPPORT |
| 25 | case BOOT_DEVICE_NAND: |
| 26 | nand_init(); |
| 27 | info.read = nand_spl_read_block; |
| 28 | info.peb_size = CONFIG_SYS_NAND_BLOCK_SIZE; |
| 29 | break; |
| 30 | #endif |
| 31 | #ifdef CONFIG_SPL_ONENAND_SUPPORT |
| 32 | case BOOT_DEVICE_ONENAND: |
| 33 | info.read = onenand_spl_read_block; |
| 34 | info.peb_size = CONFIG_SYS_ONENAND_BLOCK_SIZE; |
| 35 | break; |
| 36 | #endif |
| 37 | default: |
| 38 | goto out; |
| 39 | } |
| 40 | info.ubi = (struct ubi_scan_info *)CONFIG_SPL_UBI_INFO_ADDR; |
Ladislav Michl | ffc282e | 2017-06-25 10:26:11 +0200 | [diff] [blame] | 41 | info.fastmap = IS_ENABLED(CONFIG_MTD_UBI_FASTMAP); |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 42 | |
| 43 | info.peb_offset = CONFIG_SPL_UBI_PEB_OFFSET; |
| 44 | info.vid_offset = CONFIG_SPL_UBI_VID_OFFSET; |
| 45 | info.leb_start = CONFIG_SPL_UBI_LEB_START; |
| 46 | info.peb_count = CONFIG_SPL_UBI_MAX_PEBS - info.peb_offset; |
| 47 | |
Tom Rini | 7115007 | 2021-10-30 23:03:48 -0400 | [diff] [blame] | 48 | #if CONFIG_IS_ENABLED(OS_BOOT) |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 49 | if (!spl_start_uboot()) { |
| 50 | volumes[0].vol_id = CONFIG_SPL_UBI_LOAD_KERNEL_ID; |
| 51 | volumes[0].load_addr = (void *)CONFIG_SYS_LOAD_ADDR; |
| 52 | volumes[1].vol_id = CONFIG_SPL_UBI_LOAD_ARGS_ID; |
| 53 | volumes[1].load_addr = (void *)CONFIG_SYS_SPL_ARGS_ADDR; |
| 54 | |
| 55 | ret = ubispl_load_volumes(&info, volumes, 2); |
| 56 | if (!ret) { |
| 57 | header = (struct image_header *)volumes[0].load_addr; |
Pali Rohár | 2e0429b | 2022-01-14 14:31:38 +0100 | [diff] [blame] | 58 | spl_parse_image_header(spl_image, bootdev, header); |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 59 | puts("Linux loaded.\n"); |
| 60 | goto out; |
| 61 | } |
| 62 | puts("Loading Linux failed, falling back to U-Boot.\n"); |
| 63 | } |
| 64 | #endif |
Marek Vasut | 04ce542 | 2018-08-14 11:27:02 +0200 | [diff] [blame] | 65 | header = spl_get_load_buffer(-sizeof(*header), sizeof(header)); |
Hamish Guthrie | 6ea31cc | 2019-05-15 15:15:59 +0200 | [diff] [blame] | 66 | #ifdef CONFIG_SPL_UBI_LOAD_BY_VOLNAME |
| 67 | volumes[0].vol_id = -1; |
| 68 | strncpy(volumes[0].name, |
| 69 | CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME, |
| 70 | UBI_VOL_NAME_MAX + 1); |
| 71 | #else |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 72 | volumes[0].vol_id = CONFIG_SPL_UBI_LOAD_MONITOR_ID; |
Hamish Guthrie | 6ea31cc | 2019-05-15 15:15:59 +0200 | [diff] [blame] | 73 | #endif |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 74 | volumes[0].load_addr = (void *)header; |
| 75 | |
| 76 | ret = ubispl_load_volumes(&info, volumes, 1); |
| 77 | if (!ret) |
Pali Rohár | 2e0429b | 2022-01-14 14:31:38 +0100 | [diff] [blame] | 78 | spl_parse_image_header(spl_image, bootdev, header); |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 79 | out: |
| 80 | #ifdef CONFIG_SPL_NAND_SUPPORT |
Simon Glass | ecdfd69 | 2016-09-24 18:19:57 -0600 | [diff] [blame] | 81 | if (bootdev->boot_device == BOOT_DEVICE_NAND) |
Ladislav Michl | bf55cd4 | 2016-07-12 20:28:13 +0200 | [diff] [blame] | 82 | nand_deselect(); |
| 83 | #endif |
| 84 | return ret; |
| 85 | } |
Simon Glass | 7d7dd82 | 2016-09-24 18:20:01 -0600 | [diff] [blame] | 86 | /* Use priorty 0 so that Ubi will override NAND and ONENAND methods */ |
Simon Glass | ebc4ef6 | 2016-11-30 15:30:50 -0700 | [diff] [blame] | 87 | SPL_LOAD_IMAGE_METHOD("NAND", 0, BOOT_DEVICE_NAND, spl_ubi_load_image); |
| 88 | SPL_LOAD_IMAGE_METHOD("OneNAND", 0, BOOT_DEVICE_ONENAND, spl_ubi_load_image); |