mrccache.h 3.5 KB

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