lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1 | // Copyright lowRISC contributors. |
| 2 | // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | // SPDX-License-Identifier: Apache-2.0 |
| 4 | |
Miguel Young de la Sota | 960fd8e | 2020-01-14 13:52:13 -0500 | [diff] [blame] | 5 | #ifndef OPENTITAN_SW_DEVICE_LIB_FLASH_CTRL_H_ |
| 6 | #define OPENTITAN_SW_DEVICE_LIB_FLASH_CTRL_H_ |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 7 | |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 8 | #include <stdbool.h> |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 9 | #include <stdint.h> |
| 10 | |
Miguel Young de la Sota | 2b592fc | 2020-02-12 14:43:29 -0500 | [diff] [blame] | 11 | // Flash memory base defines, _SZ are presented in bytes |
| 12 | #define FLASH_MEM_BASE_ADDR 0x20000000 |
Miguel Young de la Sota | 2b592fc | 2020-02-12 14:43:29 -0500 | [diff] [blame] | 13 | |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 14 | /** |
| 15 | * Flash bank IDs |
| 16 | */ |
| 17 | typedef enum bank_index { FLASH_BANK_0 = 0, FLASH_BANK_1 = 1 } bank_index_t; |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 18 | |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 19 | /** |
Timothy Chen | 4851176 | 2020-05-13 22:32:25 -0700 | [diff] [blame] | 20 | * Flash partitions |
| 21 | */ |
| 22 | typedef enum partition_type { |
| 23 | kDataPartition = 0, |
| 24 | kInfoPartition = 1 |
| 25 | } part_type_t; |
| 26 | |
| 27 | /** |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 28 | * Memory protection configuration options. |
Timothy Chen | 479690a | 2020-09-01 17:05:21 -0700 | [diff] [blame] | 29 | * Data partitions and Info partitions are handled differently. |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 30 | */ |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 31 | typedef struct mp_region { |
Timothy Chen | 479690a | 2020-09-01 17:05:21 -0700 | [diff] [blame] | 32 | /** Which region to program for data partition. |
| 33 | Which page to program for info partition. |
| 34 | */ |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 35 | uint32_t num; |
| 36 | /** Region offset. */ |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 37 | uint32_t base; |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 38 | /** Region config size. */ |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 39 | uint32_t size; |
Timothy Chen | 4851176 | 2020-05-13 22:32:25 -0700 | [diff] [blame] | 40 | /** Region partition size. */ |
| 41 | part_type_t part; |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 42 | /** Read enable flag. */ |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 43 | uint32_t rd_en; |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 44 | /** Program enable flag. */ |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 45 | uint32_t prog_en; |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 46 | /** Erase enable flag. */ |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 47 | uint32_t erase_en; |
Timothy Chen | f58c17c | 2020-09-18 14:02:49 -0700 | [diff] [blame] | 48 | /** Scramble / ECC enable flag. */ |
| 49 | uint32_t scramble_en; |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 50 | } mp_region_t; |
| 51 | |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 52 | /** |
| 53 | * Block until flash is initialized. |
| 54 | */ |
| 55 | void flash_init_block(void); |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 56 | |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 57 | /** |
| 58 | * Returns 1 if flash is empty, otherwise 0. |
| 59 | */ |
| 60 | int flash_check_empty(void); |
| 61 | |
Tim Shepard | ae281b6 | 2019-10-17 10:33:33 -0400 | [diff] [blame] | 62 | /** |
Sam Elliott | 812eb33 | 2020-03-31 17:29:35 +0100 | [diff] [blame] | 63 | * Erase flash bank `bank_idx`. Blocks until erase is complete. |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 64 | * |
| 65 | * @param idx Flash bank index. |
| 66 | * @return Non zero on failure. |
| 67 | */ |
| 68 | int flash_bank_erase(bank_index_t idx); |
Timothy Chen | 4851176 | 2020-05-13 22:32:25 -0700 | [diff] [blame] | 69 | int flash_page_erase(uint32_t addr, part_type_t part); |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 70 | |
| 71 | /** |
Sam Elliott | 812eb33 | 2020-03-31 17:29:35 +0100 | [diff] [blame] | 72 | * Write `data` at `addr` offset with `size` in 4B words |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 73 | * |
| 74 | * @param addr Flash address 32bit aligned. |
Timothy Chen | 4851176 | 2020-05-13 22:32:25 -0700 | [diff] [blame] | 75 | * @param part Flash parittion to access. |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 76 | * @param data Data to write. |
Sam Elliott | 812eb33 | 2020-03-31 17:29:35 +0100 | [diff] [blame] | 77 | * @param size Number of 4B words to write from `data` buffer. |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 78 | * @return Non zero on failure. |
| 79 | */ |
Timothy Chen | 4851176 | 2020-05-13 22:32:25 -0700 | [diff] [blame] | 80 | int flash_write(uint32_t addr, part_type_t part, const uint32_t *data, |
| 81 | uint32_t size); |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 82 | |
| 83 | /** |
Sam Elliott | 812eb33 | 2020-03-31 17:29:35 +0100 | [diff] [blame] | 84 | * Read `size` 4B words and write result to `data`. |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 85 | * |
| 86 | * @param addr Read start address. |
Timothy Chen | 4851176 | 2020-05-13 22:32:25 -0700 | [diff] [blame] | 87 | * @param part Flash parittion to access. |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 88 | * @param size Number of 4B words to read. |
Sam Elliott | ff85e05 | 2020-08-28 12:58:55 +0100 | [diff] [blame] | 89 | * @param[out] data Output buffer. |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 90 | * @return Non zero on failure. |
| 91 | */ |
Timothy Chen | 4851176 | 2020-05-13 22:32:25 -0700 | [diff] [blame] | 92 | int flash_read(uint32_t addr, part_type_t part, uint32_t size, uint32_t *data); |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 93 | |
| 94 | /** |
Timothy Chen | c45ce16 | 2019-09-30 22:37:42 -0700 | [diff] [blame] | 95 | * Configure bank erase enable |
| 96 | */ |
| 97 | void flash_cfg_bank_erase(bank_index_t bank, bool erase_en); |
| 98 | |
| 99 | /** |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 100 | * Set flash controller default permissions. |
| 101 | * |
Tobias Wölfel | 01ec7cf | 2021-02-12 11:57:12 +0100 | [diff] [blame] | 102 | * @param rd_en Read enable. |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 103 | * @param prog_en Write enable. |
| 104 | * @param erase_en Erase enable. |
| 105 | */ |
| 106 | void flash_default_region_access(bool rd_en, bool prog_en, bool erase_en); |
| 107 | |
| 108 | /** |
| 109 | * Configure memory protection region. |
| 110 | * |
| 111 | * @param region_cfg Region configuration. |
| 112 | */ |
| 113 | void flash_cfg_region(const mp_region_t *region_cfg); |
| 114 | |
Timothy Chen | 20706b0 | 2020-10-29 18:41:17 -0700 | [diff] [blame] | 115 | /** Get number of flash banks */ |
Sam Elliott | 5e5a9dd | 2020-11-10 10:45:48 +0000 | [diff] [blame] | 116 | uint32_t flash_get_banks(void); |
Timothy Chen | 20706b0 | 2020-10-29 18:41:17 -0700 | [diff] [blame] | 117 | |
| 118 | /** Get number of pages per bank */ |
Sam Elliott | 5e5a9dd | 2020-11-10 10:45:48 +0000 | [diff] [blame] | 119 | uint32_t flash_get_pages_per_bank(void); |
Timothy Chen | 20706b0 | 2020-10-29 18:41:17 -0700 | [diff] [blame] | 120 | |
| 121 | /** Get number of words per page */ |
Sam Elliott | 5e5a9dd | 2020-11-10 10:45:48 +0000 | [diff] [blame] | 122 | uint32_t flash_get_words_per_page(void); |
Timothy Chen | 20706b0 | 2020-10-29 18:41:17 -0700 | [diff] [blame] | 123 | |
| 124 | /** Get size of each bank in bytes */ |
Sam Elliott | 5e5a9dd | 2020-11-10 10:45:48 +0000 | [diff] [blame] | 125 | uint32_t flash_get_bank_size(void); |
Timothy Chen | 20706b0 | 2020-10-29 18:41:17 -0700 | [diff] [blame] | 126 | |
| 127 | /** Get size of each page in bytes */ |
Sam Elliott | 5e5a9dd | 2020-11-10 10:45:48 +0000 | [diff] [blame] | 128 | uint32_t flash_get_page_size(void); |
Timothy Chen | 20706b0 | 2020-10-29 18:41:17 -0700 | [diff] [blame] | 129 | |
| 130 | /** Get size of each flash word in bytes */ |
Sam Elliott | 5e5a9dd | 2020-11-10 10:45:48 +0000 | [diff] [blame] | 131 | uint32_t flash_get_word_size(void); |
Timothy Chen | 20706b0 | 2020-10-29 18:41:17 -0700 | [diff] [blame] | 132 | |
Miguel Osorio | 968c150 | 2019-09-13 22:51:38 -0700 | [diff] [blame] | 133 | /** Write value to flash scratch register */ |
| 134 | void flash_write_scratch_reg(uint32_t value); |
| 135 | |
| 136 | /** Read scratch register */ |
| 137 | uint32_t flash_read_scratch_reg(void); |
| 138 | |
Miguel Young de la Sota | 960fd8e | 2020-01-14 13:52:13 -0500 | [diff] [blame] | 139 | #endif // OPENTITAN_SW_DEVICE_LIB_FLASH_CTRL_H_ |