nvram_storage.h 904 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief NVRAM storage interface
  9. */
  10. #ifndef __NVRAM_STORAGE_H__
  11. #define __NVRAM_STORAGE_H__
  12. #ifndef PC
  13. #include <kernel.h>
  14. #include <device.h>
  15. #endif
  16. #define NVRAM_MAX_NAME_SIZE 112
  17. #define NVRAM_MAX_DATA_SIZE 512
  18. #if defined(CONFIG_BOARD_NANDBOOT) || defined(CONFIG_BOARD_EMMCBOOT)
  19. extern void nvram_storage_flush(struct device *dev);
  20. #else
  21. #define nvram_storage_flush(dev) do{}while(false)
  22. #endif
  23. extern struct device *nvram_storage_init(void);
  24. extern int nvram_storage_read(struct device *dev, uint64_t addr,
  25. void *buf, int32_t size);
  26. extern int nvram_storage_write(struct device *dev, uint64_t addr,
  27. const void *buf, int32_t size);
  28. extern int nvram_storage_erase(struct device *dev, uint64_t addr, int32_t size);
  29. #endif/* #define __NVRAM_STORAGE_H__ */