blob: 33e3a955dd55e7ca871a57d7fe42ae4b90a51342 [file] [log] [blame]
lowRISC Contributors802543a2019-08-31 12:12:56 +01001// 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 Sota960fd8e2020-01-14 13:52:13 -05005#ifndef OPENTITAN_SW_DEVICE_LIB_FLASH_CTRL_H_
6#define OPENTITAN_SW_DEVICE_LIB_FLASH_CTRL_H_
lowRISC Contributors802543a2019-08-31 12:12:56 +01007
Miguel Osorio968c1502019-09-13 22:51:38 -07008#include <stdbool.h>
lowRISC Contributors802543a2019-08-31 12:12:56 +01009#include <stdint.h>
10
Miguel Young de la Sota2b592fc2020-02-12 14:43:29 -050011// Flash memory base defines, _SZ are presented in bytes
12#define FLASH_MEM_BASE_ADDR 0x20000000
Miguel Young de la Sota2b592fc2020-02-12 14:43:29 -050013
Miguel Osorio968c1502019-09-13 22:51:38 -070014/**
15 * Flash bank IDs
16 */
17typedef enum bank_index { FLASH_BANK_0 = 0, FLASH_BANK_1 = 1 } bank_index_t;
lowRISC Contributors802543a2019-08-31 12:12:56 +010018
Miguel Osorio968c1502019-09-13 22:51:38 -070019/**
Timothy Chen48511762020-05-13 22:32:25 -070020 * Flash partitions
21 */
22typedef enum partition_type {
23 kDataPartition = 0,
24 kInfoPartition = 1
25} part_type_t;
26
27/**
Miguel Osorio968c1502019-09-13 22:51:38 -070028 * Memory protection configuration options.
Timothy Chen479690a2020-09-01 17:05:21 -070029 * Data partitions and Info partitions are handled differently.
Miguel Osorio968c1502019-09-13 22:51:38 -070030 */
lowRISC Contributors802543a2019-08-31 12:12:56 +010031typedef struct mp_region {
Timothy Chen479690a2020-09-01 17:05:21 -070032 /** Which region to program for data partition.
33 Which page to program for info partition.
34 */
Miguel Osorio968c1502019-09-13 22:51:38 -070035 uint32_t num;
36 /** Region offset. */
lowRISC Contributors802543a2019-08-31 12:12:56 +010037 uint32_t base;
Miguel Osorio968c1502019-09-13 22:51:38 -070038 /** Region config size. */
lowRISC Contributors802543a2019-08-31 12:12:56 +010039 uint32_t size;
Timothy Chen48511762020-05-13 22:32:25 -070040 /** Region partition size. */
41 part_type_t part;
Miguel Osorio968c1502019-09-13 22:51:38 -070042 /** Read enable flag. */
lowRISC Contributors802543a2019-08-31 12:12:56 +010043 uint32_t rd_en;
Miguel Osorio968c1502019-09-13 22:51:38 -070044 /** Program enable flag. */
lowRISC Contributors802543a2019-08-31 12:12:56 +010045 uint32_t prog_en;
Miguel Osorio968c1502019-09-13 22:51:38 -070046 /** Erase enable flag. */
lowRISC Contributors802543a2019-08-31 12:12:56 +010047 uint32_t erase_en;
Timothy Chenf58c17c2020-09-18 14:02:49 -070048 /** Scramble / ECC enable flag. */
49 uint32_t scramble_en;
lowRISC Contributors802543a2019-08-31 12:12:56 +010050} mp_region_t;
51
Miguel Osorio968c1502019-09-13 22:51:38 -070052/**
53 * Block until flash is initialized.
54 */
55void flash_init_block(void);
lowRISC Contributors802543a2019-08-31 12:12:56 +010056
Miguel Osorio968c1502019-09-13 22:51:38 -070057/**
58 * Returns 1 if flash is empty, otherwise 0.
59 */
60int flash_check_empty(void);
61
Tim Shepardae281b62019-10-17 10:33:33 -040062/**
Sam Elliott812eb332020-03-31 17:29:35 +010063 * Erase flash bank `bank_idx`. Blocks until erase is complete.
Miguel Osorio968c1502019-09-13 22:51:38 -070064 *
65 * @param idx Flash bank index.
66 * @return Non zero on failure.
67 */
68int flash_bank_erase(bank_index_t idx);
Timothy Chen48511762020-05-13 22:32:25 -070069int flash_page_erase(uint32_t addr, part_type_t part);
Miguel Osorio968c1502019-09-13 22:51:38 -070070
71/**
Sam Elliott812eb332020-03-31 17:29:35 +010072 * Write `data` at `addr` offset with `size` in 4B words
Miguel Osorio968c1502019-09-13 22:51:38 -070073 *
74 * @param addr Flash address 32bit aligned.
Timothy Chen48511762020-05-13 22:32:25 -070075 * @param part Flash parittion to access.
Miguel Osorio968c1502019-09-13 22:51:38 -070076 * @param data Data to write.
Sam Elliott812eb332020-03-31 17:29:35 +010077 * @param size Number of 4B words to write from `data` buffer.
Miguel Osorio968c1502019-09-13 22:51:38 -070078 * @return Non zero on failure.
79 */
Timothy Chen48511762020-05-13 22:32:25 -070080int flash_write(uint32_t addr, part_type_t part, const uint32_t *data,
81 uint32_t size);
Miguel Osorio968c1502019-09-13 22:51:38 -070082
83/**
Sam Elliott812eb332020-03-31 17:29:35 +010084 * Read `size` 4B words and write result to `data`.
Miguel Osorio968c1502019-09-13 22:51:38 -070085 *
86 * @param addr Read start address.
Timothy Chen48511762020-05-13 22:32:25 -070087 * @param part Flash parittion to access.
Miguel Osorio968c1502019-09-13 22:51:38 -070088 * @param size Number of 4B words to read.
Sam Elliottff85e052020-08-28 12:58:55 +010089 * @param[out] data Output buffer.
Miguel Osorio968c1502019-09-13 22:51:38 -070090 * @return Non zero on failure.
91 */
Timothy Chen48511762020-05-13 22:32:25 -070092int flash_read(uint32_t addr, part_type_t part, uint32_t size, uint32_t *data);
Miguel Osorio968c1502019-09-13 22:51:38 -070093
94/**
Timothy Chenc45ce162019-09-30 22:37:42 -070095 * Configure bank erase enable
96 */
97void flash_cfg_bank_erase(bank_index_t bank, bool erase_en);
98
99/**
Miguel Osorio968c1502019-09-13 22:51:38 -0700100 * Set flash controller default permissions.
101 *
Tobias Wölfel01ec7cf2021-02-12 11:57:12 +0100102 * @param rd_en Read enable.
Miguel Osorio968c1502019-09-13 22:51:38 -0700103 * @param prog_en Write enable.
104 * @param erase_en Erase enable.
105 */
106void 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 */
113void flash_cfg_region(const mp_region_t *region_cfg);
114
Timothy Chen20706b02020-10-29 18:41:17 -0700115/** Get number of flash banks */
Sam Elliott5e5a9dd2020-11-10 10:45:48 +0000116uint32_t flash_get_banks(void);
Timothy Chen20706b02020-10-29 18:41:17 -0700117
118/** Get number of pages per bank */
Sam Elliott5e5a9dd2020-11-10 10:45:48 +0000119uint32_t flash_get_pages_per_bank(void);
Timothy Chen20706b02020-10-29 18:41:17 -0700120
121/** Get number of words per page */
Sam Elliott5e5a9dd2020-11-10 10:45:48 +0000122uint32_t flash_get_words_per_page(void);
Timothy Chen20706b02020-10-29 18:41:17 -0700123
124/** Get size of each bank in bytes */
Sam Elliott5e5a9dd2020-11-10 10:45:48 +0000125uint32_t flash_get_bank_size(void);
Timothy Chen20706b02020-10-29 18:41:17 -0700126
127/** Get size of each page in bytes */
Sam Elliott5e5a9dd2020-11-10 10:45:48 +0000128uint32_t flash_get_page_size(void);
Timothy Chen20706b02020-10-29 18:41:17 -0700129
130/** Get size of each flash word in bytes */
Sam Elliott5e5a9dd2020-11-10 10:45:48 +0000131uint32_t flash_get_word_size(void);
Timothy Chen20706b02020-10-29 18:41:17 -0700132
Miguel Osorio968c1502019-09-13 22:51:38 -0700133/** Write value to flash scratch register */
134void flash_write_scratch_reg(uint32_t value);
135
136/** Read scratch register */
137uint32_t flash_read_scratch_reg(void);
138
Miguel Young de la Sota960fd8e2020-01-14 13:52:13 -0500139#endif // OPENTITAN_SW_DEVICE_LIB_FLASH_CTRL_H_