eeprom.c 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* Copyright 2017 Fred Sundvik
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "eeprom.h"
  17. #ifndef EEPROM_SIZE
  18. # include "eeconfig.h"
  19. # define EEPROM_SIZE (((EECONFIG_SIZE + 3) / 4) * 4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO
  20. #endif
  21. __attribute__((aligned(4))) static uint8_t buffer[EEPROM_SIZE];
  22. uint8_t eeprom_read_byte(const uint8_t *addr) {
  23. uintptr_t offset = (uintptr_t)addr;
  24. return buffer[offset];
  25. }
  26. void eeprom_write_byte(uint8_t *addr, uint8_t value) {
  27. uintptr_t offset = (uintptr_t)addr;
  28. buffer[offset] = value;
  29. }
  30. uint16_t eeprom_read_word(const uint16_t *addr) {
  31. const uint8_t *p = (const uint8_t *)addr;
  32. return eeprom_read_byte(p) | (eeprom_read_byte(p + 1) << 8);
  33. }
  34. uint32_t eeprom_read_dword(const uint32_t *addr) {
  35. const uint8_t *p = (const uint8_t *)addr;
  36. return eeprom_read_byte(p) | (eeprom_read_byte(p + 1) << 8) | (eeprom_read_byte(p + 2) << 16) | (eeprom_read_byte(p + 3) << 24);
  37. }
  38. void eeprom_read_block(void *buf, const void *addr, size_t len) {
  39. const uint8_t *p = (const uint8_t *)addr;
  40. uint8_t * dest = (uint8_t *)buf;
  41. while (len--) {
  42. *dest++ = eeprom_read_byte(p++);
  43. }
  44. }
  45. void eeprom_write_word(uint16_t *addr, uint16_t value) {
  46. uint8_t *p = (uint8_t *)addr;
  47. eeprom_write_byte(p++, value);
  48. eeprom_write_byte(p, value >> 8);
  49. }
  50. void eeprom_write_dword(uint32_t *addr, uint32_t value) {
  51. uint8_t *p = (uint8_t *)addr;
  52. eeprom_write_byte(p++, value);
  53. eeprom_write_byte(p++, value >> 8);
  54. eeprom_write_byte(p++, value >> 16);
  55. eeprom_write_byte(p, value >> 24);
  56. }
  57. void eeprom_write_block(const void *buf, void *addr, size_t len) {
  58. uint8_t * p = (uint8_t *)addr;
  59. const uint8_t *src = (const uint8_t *)buf;
  60. while (len--) {
  61. eeprom_write_byte(p++, *src++);
  62. }
  63. }
  64. void eeprom_update_byte(uint8_t *addr, uint8_t value) { eeprom_write_byte(addr, value); }
  65. void eeprom_update_word(uint16_t *addr, uint16_t value) {
  66. uint8_t *p = (uint8_t *)addr;
  67. eeprom_write_byte(p++, value);
  68. eeprom_write_byte(p, value >> 8);
  69. }
  70. void eeprom_update_dword(uint32_t *addr, uint32_t value) {
  71. uint8_t *p = (uint8_t *)addr;
  72. eeprom_write_byte(p++, value);
  73. eeprom_write_byte(p++, value >> 8);
  74. eeprom_write_byte(p++, value >> 16);
  75. eeprom_write_byte(p, value >> 24);
  76. }
  77. void eeprom_update_block(const void *buf, void *addr, size_t len) {
  78. uint8_t * p = (uint8_t *)addr;
  79. const uint8_t *src = (const uint8_t *)buf;
  80. while (len--) {
  81. eeprom_write_byte(p++, *src++);
  82. }
  83. }