You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
2.9 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  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. static uint8_t buffer[TOTAL_EEPROM_BYTE_COUNT];
  18. uint8_t eeprom_read_byte(const uint8_t *addr) {
  19. uintptr_t offset = (uintptr_t)addr;
  20. return buffer[offset];
  21. }
  22. void eeprom_write_byte(uint8_t *addr, uint8_t value) {
  23. uintptr_t offset = (uintptr_t)addr;
  24. buffer[offset] = value;
  25. }
  26. uint16_t eeprom_read_word(const uint16_t *addr) {
  27. const uint8_t *p = (const uint8_t *)addr;
  28. return eeprom_read_byte(p) | (eeprom_read_byte(p + 1) << 8);
  29. }
  30. uint32_t eeprom_read_dword(const uint32_t *addr) {
  31. const uint8_t *p = (const uint8_t *)addr;
  32. return eeprom_read_byte(p) | (eeprom_read_byte(p + 1) << 8) | (eeprom_read_byte(p + 2) << 16) | (eeprom_read_byte(p + 3) << 24);
  33. }
  34. void eeprom_read_block(void *buf, const void *addr, size_t len) {
  35. const uint8_t *p = (const uint8_t *)addr;
  36. uint8_t * dest = (uint8_t *)buf;
  37. while (len--) {
  38. *dest++ = eeprom_read_byte(p++);
  39. }
  40. }
  41. void eeprom_write_word(uint16_t *addr, uint16_t value) {
  42. uint8_t *p = (uint8_t *)addr;
  43. eeprom_write_byte(p++, value);
  44. eeprom_write_byte(p, value >> 8);
  45. }
  46. void eeprom_write_dword(uint32_t *addr, uint32_t value) {
  47. uint8_t *p = (uint8_t *)addr;
  48. eeprom_write_byte(p++, value);
  49. eeprom_write_byte(p++, value >> 8);
  50. eeprom_write_byte(p++, value >> 16);
  51. eeprom_write_byte(p, value >> 24);
  52. }
  53. void eeprom_write_block(const void *buf, void *addr, size_t len) {
  54. uint8_t * p = (uint8_t *)addr;
  55. const uint8_t *src = (const uint8_t *)buf;
  56. while (len--) {
  57. eeprom_write_byte(p++, *src++);
  58. }
  59. }
  60. void eeprom_update_byte(uint8_t *addr, uint8_t value) {
  61. eeprom_write_byte(addr, value);
  62. }
  63. void eeprom_update_word(uint16_t *addr, uint16_t value) {
  64. uint8_t *p = (uint8_t *)addr;
  65. eeprom_write_byte(p++, value);
  66. eeprom_write_byte(p, value >> 8);
  67. }
  68. void eeprom_update_dword(uint32_t *addr, uint32_t value) {
  69. uint8_t *p = (uint8_t *)addr;
  70. eeprom_write_byte(p++, value);
  71. eeprom_write_byte(p++, value >> 8);
  72. eeprom_write_byte(p++, value >> 16);
  73. eeprom_write_byte(p, value >> 24);
  74. }
  75. void eeprom_update_block(const void *buf, void *addr, size_t len) {
  76. uint8_t * p = (uint8_t *)addr;
  77. const uint8_t *src = (const uint8_t *)buf;
  78. while (len--) {
  79. eeprom_write_byte(p++, *src++);
  80. }
  81. }