Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 2 | /* |
Bin Meng | 8575ab1 | 2015-10-11 21:37:38 -0700 | [diff] [blame] | 3 | * Copyright (C) 2014 Google, Inc |
Bin Meng | 1f81b59 | 2015-10-11 21:37:39 -0700 | [diff] [blame] | 4 | * Copyright (C) 2015 Bin Meng <bmeng.cn@gmail.com> |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
Bin Meng | 8575ab1 | 2015-10-11 21:37:38 -0700 | [diff] [blame] | 7 | #ifndef _ASM_MRCCACHE_H |
| 8 | #define _ASM_MRCCACHE_H |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 9 | |
Simon Glass | 91c0736 | 2019-12-06 21:42:01 -0700 | [diff] [blame] | 10 | #define MRC_DATA_ALIGN 0x100 |
Bin Meng | 8575ab1 | 2015-10-11 21:37:38 -0700 | [diff] [blame] | 11 | #define MRC_DATA_SIGNATURE (('M' << 0) | ('R' << 8) | \ |
| 12 | ('C' << 16) | ('D'<<24)) |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 13 | |
Bin Meng | 1f81b59 | 2015-10-11 21:37:39 -0700 | [diff] [blame] | 14 | #define MRC_DATA_HEADER_SIZE 32 |
| 15 | |
Bin Meng | 8575ab1 | 2015-10-11 21:37:38 -0700 | [diff] [blame] | 16 | struct __packed mrc_data_container { |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 17 | u32 signature; /* "MRCD" */ |
| 18 | u32 data_size; /* Size of the 'data' field */ |
| 19 | u32 checksum; /* IP style checksum */ |
| 20 | u32 reserved; /* For header alignment */ |
| 21 | u8 data[0]; /* Variable size, platform/run time dependent */ |
| 22 | }; |
| 23 | |
Bin Meng | 2845ead | 2015-10-11 21:37:41 -0700 | [diff] [blame] | 24 | struct mrc_region { |
| 25 | u32 base; |
| 26 | u32 offset; |
| 27 | u32 length; |
| 28 | }; |
| 29 | |
Simon Glass | 91efff5 | 2019-12-06 21:42:07 -0700 | [diff] [blame^] | 30 | /* Types of MRC data */ |
| 31 | enum mrc_type_t { |
| 32 | MRC_TYPE_NORMAL, |
| 33 | |
| 34 | MRC_TYPE_COUNT, |
| 35 | }; |
| 36 | |
Simon Glass | 35f15f6 | 2015-03-26 09:29:26 -0600 | [diff] [blame] | 37 | struct udevice; |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 38 | |
| 39 | /** |
| 40 | * mrccache_find_current() - find the latest MRC cache record |
| 41 | * |
| 42 | * This searches the MRC cache region looking for the latest record to use |
| 43 | * for setting up SDRAM |
| 44 | * |
Bin Meng | 8575ab1 | 2015-10-11 21:37:38 -0700 | [diff] [blame] | 45 | * @entry: Position and size of MRC cache in SPI flash |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 46 | * @return pointer to latest record, or NULL if none |
| 47 | */ |
Bin Meng | 2845ead | 2015-10-11 21:37:41 -0700 | [diff] [blame] | 48 | struct mrc_data_container *mrccache_find_current(struct mrc_region *entry); |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 49 | |
| 50 | /** |
| 51 | * mrccache_update() - update the MRC cache with a new record |
| 52 | * |
Bin Meng | 8575ab1 | 2015-10-11 21:37:38 -0700 | [diff] [blame] | 53 | * This writes a new record to the end of the MRC cache region. If the new |
| 54 | * record is the same as the latest record then the write is skipped |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 55 | * |
| 56 | * @sf: SPI flash to write to |
| 57 | * @entry: Position and size of MRC cache in SPI flash |
| 58 | * @cur: Record to write |
| 59 | * @return 0 if updated, -EEXIST if the record is the same as the latest |
Bin Meng | d61a7b4 | 2015-10-11 21:37:37 -0700 | [diff] [blame] | 60 | * record, -EINVAL if the record is not valid, other error if SPI write failed |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 61 | */ |
Bin Meng | 2845ead | 2015-10-11 21:37:41 -0700 | [diff] [blame] | 62 | int mrccache_update(struct udevice *sf, struct mrc_region *entry, |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 63 | struct mrc_data_container *cur); |
| 64 | |
Bin Meng | 1f81b59 | 2015-10-11 21:37:39 -0700 | [diff] [blame] | 65 | /** |
| 66 | * mrccache_reserve() - reserve MRC data on the stack |
| 67 | * |
| 68 | * This copies MRC data pointed by gd->arch.mrc_output to a new place on the |
| 69 | * stack with length gd->arch.mrc_output_len, and updates gd->arch.mrc_output |
| 70 | * to point to the new place once the migration is done. |
| 71 | * |
| 72 | * This routine should be called by reserve_arch() before U-Boot is relocated |
| 73 | * when MRC cache is enabled. |
| 74 | * |
| 75 | * @return 0 always |
| 76 | */ |
| 77 | int mrccache_reserve(void); |
| 78 | |
| 79 | /** |
| 80 | * mrccache_get_region() - get MRC region on the SPI flash |
| 81 | * |
| 82 | * This gets MRC region whose offset and size are described in the device tree |
| 83 | * as a subnode to the SPI flash. If a non-NULL device pointer is supplied, |
| 84 | * this also probes the SPI flash device and returns its device pointer for |
| 85 | * the caller to use later. |
| 86 | * |
| 87 | * Be careful when calling this routine with a non-NULL device pointer: |
| 88 | * - driver model initialization must be complete |
| 89 | * - calling in the pre-relocation phase may bring some side effects during |
| 90 | * the SPI flash device probe (eg: for SPI controllers on a PCI bus, it |
| 91 | * triggers PCI bus enumeration during which insufficient memory issue |
| 92 | * might be exposed and it causes subsequent SPI flash probe fails). |
| 93 | * |
Simon Glass | 91efff5 | 2019-12-06 21:42:07 -0700 | [diff] [blame^] | 94 | * @type: Type of MRC data to use |
Bin Meng | 1f81b59 | 2015-10-11 21:37:39 -0700 | [diff] [blame] | 95 | * @devp: Returns pointer to the SPI flash device |
| 96 | * @entry: Position and size of MRC cache in SPI flash |
| 97 | * @return 0 if success, -ENOENT if SPI flash node does not exist in the |
| 98 | * device tree, -EPERM if MRC region subnode does not exist in the device |
| 99 | * tree, -EINVAL if MRC region properties format is incorrect, other error |
| 100 | * if SPI flash probe failed. |
| 101 | */ |
Simon Glass | 91efff5 | 2019-12-06 21:42:07 -0700 | [diff] [blame^] | 102 | int mrccache_get_region(enum mrc_type_t type, struct udevice **devp, |
| 103 | struct mrc_region *entry); |
Bin Meng | 1f81b59 | 2015-10-11 21:37:39 -0700 | [diff] [blame] | 104 | |
| 105 | /** |
| 106 | * mrccache_save() - save MRC data to the SPI flash |
| 107 | * |
| 108 | * This saves MRC data stored previously by gd->arch.mrc_output to a proper |
| 109 | * place within the MRC region on the SPI flash. |
| 110 | * |
| 111 | * @return 0 if saved to SPI flash successfully, other error if failed |
| 112 | */ |
| 113 | int mrccache_save(void); |
| 114 | |
Simon Glass | 48fd856 | 2019-04-25 21:58:57 -0600 | [diff] [blame] | 115 | /** |
| 116 | * mrccache_spl_save() - Save to the MRC region from SPL |
| 117 | * |
| 118 | * When SPL is used to set up the memory controller we want to save the MRC |
| 119 | * data in SPL to avoid needing to pass it up to U-Boot proper to save. This |
| 120 | * function handles that. |
| 121 | * |
| 122 | * @return 0 if saved to SPI flash successfully, other error if failed |
| 123 | */ |
| 124 | int mrccache_spl_save(void); |
| 125 | |
Bin Meng | 8575ab1 | 2015-10-11 21:37:38 -0700 | [diff] [blame] | 126 | #endif /* _ASM_MRCCACHE_H */ |