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
  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) | (eeprom_read_byte(p + 2) << 16) | (eeprom_read_byte(p + 3) << 24);
  34. }
  35. void eeprom_read_block(void *buf, const void *addr, size_t len) {
  36. const uint8_t *p = (const uint8_t *)addr;
  37. uint8_t * dest = (uint8_t *)buf;
  38. while (len--) {
  39. *dest++ = eeprom_read_byte(p++);
  40. }
  41. }
  42. void eeprom_write_word(uint16_t *addr, uint16_t value) {
  43. uint8_t *p = (uint8_t *)addr;
  44. eeprom_write_byte(p++, value);
  45. eeprom_write_byte(p, value >> 8);
  46. }
  47. void eeprom_write_dword(uint32_t *addr, uint32_t value) {
  48. uint8_t *p = (uint8_t *)addr;
  49. eeprom_write_byte(p++, value);
  50. eeprom_write_byte(p++, value >> 8);
  51. eeprom_write_byte(p++, value >> 16);
  52. eeprom_write_byte(p, value >> 24);
  53. }
  54. void eeprom_write_block(const void *buf, void *addr, size_t len) {
  55. uint8_t * p = (uint8_t *)addr;
  56. const uint8_t *src = (const uint8_t *)buf;
  57. while (len--) {
  58. eeprom_write_byte(p++, *src++);
  59. }
  60. }
  61. void eeprom_update_byte(uint8_t *addr, uint8_t value) { eeprom_write_byte(addr, value); }
  62. void eeprom_update_word(uint16_t *addr, uint16_t value) {
  63. uint8_t *p = (uint8_t *)addr;
  64. eeprom_write_byte(p++, value);
  65. eeprom_write_byte(p, value >> 8);
  66. }
  67. void eeprom_update_dword(uint32_t *addr, uint32_t value) {
  68. uint8_t *p = (uint8_t *)addr;
  69. eeprom_write_byte(p++, value);
  70. eeprom_write_byte(p++, value >> 8);
  71. eeprom_write_byte(p++, value >> 16);
  72. eeprom_write_byte(p, value >> 24);
  73. }
  74. void eeprom_update_block(const void *buf, void *addr, size_t len) {
  75. uint8_t * p = (uint8_t *)addr;
  76. const uint8_t *src = (const uint8_t *)buf;
  77. while (len--) {
  78. eeprom_write_byte(p++, *src++);
  79. }
  80. }