Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 1 | #include "mboxd_pnor_partition_table.h" |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 2 | #include "common.h" |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 3 | #include "mbox.h" |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 4 | #include "mboxd_flash.h" |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 5 | #include "pnor_partition_table.hpp" |
Deepak Kodihalli | 64ec3e4 | 2017-07-17 06:15:16 -0500 | [diff] [blame] | 6 | #include "config.h" |
Deepak Kodihalli | 6e6aa3a | 2017-08-28 06:13:43 -0500 | [diff] [blame] | 7 | #include "xyz/openbmc_project/Common/error.hpp" |
| 8 | #include <phosphor-logging/elog-errors.hpp> |
Ratan Gupta | 3214b51 | 2017-05-11 08:58:19 +0530 | [diff] [blame] | 9 | #include <experimental/filesystem> |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 10 | |
| 11 | struct vpnor_partition_table |
| 12 | { |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 13 | openpower::virtual_pnor::partition::Table *table = nullptr; |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 14 | }; |
| 15 | |
Deepak Kodihalli | 64ec3e4 | 2017-07-17 06:15:16 -0500 | [diff] [blame] | 16 | void init_vpnor(struct mbox_context *context) |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 17 | { |
Ratan Gupta | 3214b51 | 2017-05-11 08:58:19 +0530 | [diff] [blame] | 18 | if (context && !context->vpnor) |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 19 | { |
Deepak Kodihalli | 64ec3e4 | 2017-07-17 06:15:16 -0500 | [diff] [blame] | 20 | strcpy(context->paths.ro_loc, PARTITION_FILES_RO_LOC); |
| 21 | strcpy(context->paths.rw_loc, PARTITION_FILES_RW_LOC); |
| 22 | strcpy(context->paths.prsv_loc, PARTITION_FILES_PRSV_LOC); |
Adriana Kobylak | c71dfd7 | 2017-07-22 11:10:43 -0500 | [diff] [blame] | 23 | strcpy(context->paths.patch_loc, PARTITION_FILES_PATCH_LOC); |
Deepak Kodihalli | 64ec3e4 | 2017-07-17 06:15:16 -0500 | [diff] [blame] | 24 | |
Ratan Gupta | 3214b51 | 2017-05-11 08:58:19 +0530 | [diff] [blame] | 25 | context->vpnor = new vpnor_partition_table; |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 26 | context->vpnor->table = new openpower::virtual_pnor::partition::Table( |
| 27 | 1 << context->erase_size_shift, context->flash_size); |
Ratan Gupta | 3214b51 | 2017-05-11 08:58:19 +0530 | [diff] [blame] | 28 | } |
| 29 | } |
| 30 | |
| 31 | void vpnor_create_partition_table_from_path(struct mbox_context *context, |
| 32 | const char *path) |
| 33 | { |
| 34 | std::experimental::filesystem::path dir(path); |
| 35 | |
| 36 | if (context && !context->vpnor) |
| 37 | { |
| 38 | context->vpnor = new vpnor_partition_table; |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 39 | context->vpnor->table = new openpower::virtual_pnor::partition::Table( |
| 40 | std::move(dir), 1 << context->erase_size_shift, |
| 41 | context->flash_size); |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 42 | } |
| 43 | } |
| 44 | |
| 45 | size_t vpnor_get_partition_table_size(const struct mbox_context *context) |
| 46 | { |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 47 | return context && context->vpnor ? context->vpnor->table->size() : 0; |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 48 | } |
| 49 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 50 | const struct pnor_partition_table * |
| 51 | vpnor_get_partition_table(const struct mbox_context *context) |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 52 | { |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 53 | return context && context->vpnor ? &(context->vpnor->table->getHostTable()) |
| 54 | : nullptr; |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 55 | } |
| 56 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 57 | const struct pnor_partition * |
| 58 | vpnor_get_partition(const struct mbox_context *context, const size_t offset) |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 59 | { |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 60 | return context && context->vpnor |
| 61 | ? &(context->vpnor->table->partition(offset)) |
| 62 | : nullptr; |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 63 | } |
| 64 | |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 65 | void vpnor_copy_bootloader_partition(const struct mbox_context *context) |
| 66 | { |
| 67 | // The hostboot bootloader has certain size/offset assumptions, so |
| 68 | // we need a special partition table here. |
| 69 | // It assumes the PNOR is 64M, the TOC size is 32K, the erase block is |
| 70 | // 4K, the page size is 4K. |
| 71 | // It also assumes the TOC is at the 'end of pnor - toc size - 1 page size' |
| 72 | // offset, and first looks for the TOC here, before proceeding to move up |
| 73 | // page by page looking for the TOC. So it is optimal to place the TOC at |
| 74 | // this offset. |
| 75 | constexpr size_t eraseSize = 0x1000; |
| 76 | constexpr size_t pageSize = 0x1000; |
| 77 | constexpr size_t pnorSize = 0x4000000; |
| 78 | constexpr size_t tocMaxSize = 0x8000; |
| 79 | constexpr size_t tocStart = pnorSize - tocMaxSize - pageSize; |
| 80 | constexpr auto blPartitionName = "HBB"; |
| 81 | |
| 82 | openpower::virtual_pnor::partition::Table blTable(eraseSize, pnorSize); |
| 83 | vpnor_partition_table vtbl{}; |
| 84 | vtbl.table = &blTable; |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 85 | struct mbox_context local |
| 86 | { |
| 87 | }; |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 88 | local.vpnor = &vtbl; |
| 89 | local.block_size_shift = log_2(eraseSize); |
| 90 | memcpy(&local.paths, &context->paths, sizeof(local.paths)); |
| 91 | |
| 92 | size_t tocOffset = 0; |
Deepak Kodihalli | 7ee307c | 2017-07-12 03:41:08 -0500 | [diff] [blame] | 93 | uint32_t tocSize = blTable.size() * eraseSize; |
Deepak Kodihalli | 6e6aa3a | 2017-08-28 06:13:43 -0500 | [diff] [blame] | 94 | using namespace phosphor::logging; |
| 95 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
| 96 | try |
| 97 | { |
| 98 | // Copy TOC |
| 99 | copy_flash(&local, tocOffset, |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 100 | static_cast<uint8_t *>(context->mem) + tocStart, tocSize); |
| 101 | const pnor_partition &partition = blTable.partition(blPartitionName); |
Deepak Kodihalli | 6e6aa3a | 2017-08-28 06:13:43 -0500 | [diff] [blame] | 102 | size_t hbbOffset = partition.data.base * eraseSize; |
| 103 | uint32_t hbbSize = partition.data.actual; |
| 104 | // Copy HBB |
| 105 | copy_flash(&local, hbbOffset, |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 106 | static_cast<uint8_t *>(context->mem) + hbbOffset, hbbSize); |
Deepak Kodihalli | 6e6aa3a | 2017-08-28 06:13:43 -0500 | [diff] [blame] | 107 | } |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 108 | catch (InternalFailure &e) |
Deepak Kodihalli | 6e6aa3a | 2017-08-28 06:13:43 -0500 | [diff] [blame] | 109 | { |
| 110 | commit<InternalFailure>(); |
| 111 | } |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 112 | } |
| 113 | |
Deepak Kodihalli | 64ec3e4 | 2017-07-17 06:15:16 -0500 | [diff] [blame] | 114 | void destroy_vpnor(struct mbox_context *context) |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 115 | { |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 116 | if (context && context->vpnor) |
Deepak Kodihalli | b6a446f | 2017-04-29 13:01:49 -0500 | [diff] [blame] | 117 | { |
| 118 | delete context->vpnor->table; |
| 119 | delete context->vpnor; |
| 120 | context->vpnor = nullptr; |
| 121 | } |
| 122 | } |