fcb_rotate.c 915 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Runtime Inc
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #include <fs/fcb.h>
  8. #include "fcb_priv.h"
  9. int
  10. fcb_rotate(struct fcb *fcb)
  11. {
  12. struct flash_sector *sector;
  13. int rc = 0;
  14. rc = k_mutex_lock(&fcb->f_mtx, K_FOREVER);
  15. if (rc) {
  16. return -EINVAL;
  17. }
  18. rc = fcb_erase_sector(fcb, fcb->f_oldest);
  19. if (rc) {
  20. rc = -EIO;
  21. goto out;
  22. }
  23. if (fcb->f_oldest == fcb->f_active.fe_sector) {
  24. /*
  25. * Need to create a new active area, as we're wiping
  26. * the current.
  27. */
  28. sector = fcb_getnext_sector(fcb, fcb->f_oldest);
  29. rc = fcb_sector_hdr_init(fcb, sector, fcb->f_active_id + 1);
  30. if (rc) {
  31. goto out;
  32. }
  33. fcb->f_active.fe_sector = sector;
  34. fcb->f_active.fe_elem_off = sizeof(struct fcb_disk_area);
  35. fcb->f_active_id++;
  36. }
  37. fcb->f_oldest = fcb_getnext_sector(fcb, fcb->f_oldest);
  38. out:
  39. k_mutex_unlock(&fcb->f_mtx);
  40. return rc;
  41. }