mrccache.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2014 Google, Inc
  4. * Copyright (C) 2015 Bin Meng <bmeng.cn@gmail.com>
  5. */
  6. #ifndef _ASM_MRCCACHE_H
  7. #define _ASM_MRCCACHE_H
  8. #define MRC_DATA_ALIGN 0x1000
  9. #define MRC_DATA_SIGNATURE (('M' << 0) | ('R' << 8) | \
  10. ('C' << 16) | ('D'<<24))
  11. #define MRC_DATA_HEADER_SIZE 32
  12. struct __packed mrc_data_container {
  13. u32 signature; /* "MRCD" */
  14. u32 data_size; /* Size of the 'data' field */
  15. u32 checksum; /* IP style checksum */
  16. u32 reserved; /* For header alignment */
  17. u8 data[0]; /* Variable size, platform/run time dependent */
  18. };
  19. struct mrc_region {
  20. u32 base;
  21. u32 offset;
  22. u32 length;
  23. };
  24. struct udevice;
  25. /**
  26. * mrccache_find_current() - find the latest MRC cache record
  27. *
  28. * This searches the MRC cache region looking for the latest record to use
  29. * for setting up SDRAM
  30. *
  31. * @entry: Position and size of MRC cache in SPI flash
  32. * @return pointer to latest record, or NULL if none
  33. */
  34. struct mrc_data_container *mrccache_find_current(struct mrc_region *entry);
  35. /**
  36. * mrccache_update() - update the MRC cache with a new record
  37. *
  38. * This writes a new record to the end of the MRC cache region. If the new
  39. * record is the same as the latest record then the write is skipped
  40. *
  41. * @sf: SPI flash to write to
  42. * @entry: Position and size of MRC cache in SPI flash
  43. * @cur: Record to write
  44. * @return 0 if updated, -EEXIST if the record is the same as the latest
  45. * record, -EINVAL if the record is not valid, other error if SPI write failed
  46. */
  47. int mrccache_update(struct udevice *sf, struct mrc_region *entry,
  48. struct mrc_data_container *cur);
  49. /**
  50. * mrccache_reserve() - reserve MRC data on the stack
  51. *
  52. * This copies MRC data pointed by gd->arch.mrc_output to a new place on the
  53. * stack with length gd->arch.mrc_output_len, and updates gd->arch.mrc_output
  54. * to point to the new place once the migration is done.
  55. *
  56. * This routine should be called by reserve_arch() before U-Boot is relocated
  57. * when MRC cache is enabled.
  58. *
  59. * @return 0 always
  60. */
  61. int mrccache_reserve(void);
  62. /**
  63. * mrccache_get_region() - get MRC region on the SPI flash
  64. *
  65. * This gets MRC region whose offset and size are described in the device tree
  66. * as a subnode to the SPI flash. If a non-NULL device pointer is supplied,
  67. * this also probes the SPI flash device and returns its device pointer for
  68. * the caller to use later.
  69. *
  70. * Be careful when calling this routine with a non-NULL device pointer:
  71. * - driver model initialization must be complete
  72. * - calling in the pre-relocation phase may bring some side effects during
  73. * the SPI flash device probe (eg: for SPI controllers on a PCI bus, it
  74. * triggers PCI bus enumeration during which insufficient memory issue
  75. * might be exposed and it causes subsequent SPI flash probe fails).
  76. *
  77. * @devp: Returns pointer to the SPI flash device
  78. * @entry: Position and size of MRC cache in SPI flash
  79. * @return 0 if success, -ENOENT if SPI flash node does not exist in the
  80. * device tree, -EPERM if MRC region subnode does not exist in the device
  81. * tree, -EINVAL if MRC region properties format is incorrect, other error
  82. * if SPI flash probe failed.
  83. */
  84. int mrccache_get_region(struct udevice **devp, struct mrc_region *entry);
  85. /**
  86. * mrccache_save() - save MRC data to the SPI flash
  87. *
  88. * This saves MRC data stored previously by gd->arch.mrc_output to a proper
  89. * place within the MRC region on the SPI flash.
  90. *
  91. * @return 0 if saved to SPI flash successfully, other error if failed
  92. */
  93. int mrccache_save(void);
  94. #endif /* _ASM_MRCCACHE_H */