eeprom.c 2.8 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. #define EEPROM_SIZE 32
  18. static uint8_t buffer[EEPROM_SIZE];
  19. uint8_t eeprom_read_byte(const uint8_t *addr) {
  20. uintptr_t offset = (uintptr_t)addr;
  21. return buffer[offset];
  22. }
  23. void eeprom_write_byte(uint8_t *addr, uint8_t value) {
  24. uintptr_t offset = (uintptr_t)addr;
  25. buffer[offset] = value;
  26. }
  27. uint16_t eeprom_read_word(const uint16_t *addr) {
  28. const uint8_t *p = (const uint8_t *)addr;
  29. return eeprom_read_byte(p) | (eeprom_read_byte(p+1) << 8);
  30. }
  31. uint32_t eeprom_read_dword(const uint32_t *addr) {
  32. const uint8_t *p = (const uint8_t *)addr;
  33. return eeprom_read_byte(p) | (eeprom_read_byte(p+1) << 8)
  34. | (eeprom_read_byte(p+2) << 16) | (eeprom_read_byte(p+3) << 24);
  35. }
  36. void eeprom_read_block(void *buf, const void *addr, uint32_t len) {
  37. const uint8_t *p = (const uint8_t *)addr;
  38. uint8_t *dest = (uint8_t *)buf;
  39. while (len--) {
  40. *dest++ = eeprom_read_byte(p++);
  41. }
  42. }
  43. void eeprom_write_word(uint16_t *addr, uint16_t value) {
  44. uint8_t *p = (uint8_t *)addr;
  45. eeprom_write_byte(p++, value);
  46. eeprom_write_byte(p, value >> 8);
  47. }
  48. void eeprom_write_dword(uint32_t *addr, uint32_t value) {
  49. uint8_t *p = (uint8_t *)addr;
  50. eeprom_write_byte(p++, value);
  51. eeprom_write_byte(p++, value >> 8);
  52. eeprom_write_byte(p++, value >> 16);
  53. eeprom_write_byte(p, value >> 24);
  54. }
  55. void eeprom_write_block(const void *buf, void *addr, uint32_t len) {
  56. uint8_t *p = (uint8_t *)addr;
  57. const uint8_t *src = (const uint8_t *)buf;
  58. while (len--) {
  59. eeprom_write_byte(p++, *src++);
  60. }
  61. }
  62. void eeprom_update_byte(uint8_t *addr, uint8_t value) {
  63. eeprom_write_byte(addr, value);
  64. }
  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, uint32_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. }