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.

83 lines
3.6 KiB

  1. /*
  2. * This software is experimental and a work in progress.
  3. * Under no circumstances should these files be used in relation to any critical system(s).
  4. * Use of these files is at your own risk.
  5. *
  6. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  7. * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  8. * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  9. * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  10. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  11. * DEALINGS IN THE SOFTWARE.
  12. *
  13. * This files are free to use from http://engsta.com/stm32-flash-memory-eeprom-emulator/ by
  14. * Artur F.
  15. *
  16. * Modifications for QMK and STM32F303 by Yiancar
  17. *
  18. * This library assumes 8-bit data locations. To add a new MCU, please provide the flash
  19. * page size and the total flash size in Kb. The number of available pages must be a multiple
  20. * of 2. Only half of the pages account for the total EEPROM size.
  21. * This library also assumes that the pages are not used by the firmware.
  22. */
  23. #ifndef __EEPROM_H
  24. #define __EEPROM_H
  25. #include "ch.h"
  26. #include "hal.h"
  27. #include "flash_stm32.h"
  28. // HACK ALERT. This definition may not match your processor
  29. // To Do. Work out correct value for EEPROM_PAGE_SIZE on the STM32F103CT6 etc
  30. #if defined(EEPROM_EMU_STM32F303xC)
  31. #define MCU_STM32F303CC
  32. #elif defined(EEPROM_EMU_STM32F103xB)
  33. #define MCU_STM32F103RB
  34. #elif defined(EEPROM_EMU_STM32F072xB)
  35. #define MCU_STM32F072CB
  36. #else
  37. #error "not implemented."
  38. #endif
  39. #ifndef EEPROM_PAGE_SIZE
  40. #if defined (MCU_STM32F103RB)
  41. #define FEE_PAGE_SIZE (uint16_t)0x400 // Page size = 1KByte
  42. #define FEE_DENSITY_PAGES 2 // How many pages are used
  43. #elif defined (MCU_STM32F103ZE) || defined (MCU_STM32F103RE) || defined (MCU_STM32F103RD) || defined (MCU_STM32F303CC) || defined(MCU_STM32F072CB)
  44. #define FEE_PAGE_SIZE (uint16_t)0x800 // Page size = 2KByte
  45. #define FEE_DENSITY_PAGES 4 // How many pages are used
  46. #else
  47. #error "No MCU type specified. Add something like -DMCU_STM32F103RB to your compiler arguments (probably in a Makefile)."
  48. #endif
  49. #endif
  50. #ifndef EEPROM_START_ADDRESS
  51. #if defined (MCU_STM32F103RB) || defined(MCU_STM32F072CB)
  52. #define FEE_MCU_FLASH_SIZE 128 // Size in Kb
  53. #elif defined (MCU_STM32F103ZE) || defined (MCU_STM32F103RE)
  54. #define FEE_MCU_FLASH_SIZE 512 // Size in Kb
  55. #elif defined (MCU_STM32F103RD)
  56. #define FEE_MCU_FLASH_SIZE 384 // Size in Kb
  57. #elif defined (MCU_STM32F303CC)
  58. #define FEE_MCU_FLASH_SIZE 256 // Size in Kb
  59. #else
  60. #error "No MCU type specified. Add something like -DMCU_STM32F103RB to your compiler arguments (probably in a Makefile)."
  61. #endif
  62. #endif
  63. // DONT CHANGE
  64. // Choose location for the first EEPROM Page address on the top of flash
  65. #define FEE_PAGE_BASE_ADDRESS ((uint32_t)(0x8000000 + FEE_MCU_FLASH_SIZE * 1024 - FEE_DENSITY_PAGES * FEE_PAGE_SIZE))
  66. #define FEE_DENSITY_BYTES ((FEE_PAGE_SIZE / 2) * FEE_DENSITY_PAGES - 1)
  67. #define FEE_LAST_PAGE_ADDRESS (FEE_PAGE_BASE_ADDRESS + (FEE_PAGE_SIZE * FEE_DENSITY_PAGES))
  68. #define FEE_EMPTY_WORD ((uint16_t)0xFFFF)
  69. #define FEE_ADDR_OFFSET(Address)(Address * 2) // 1Byte per Word will be saved to preserve Flash
  70. // Use this function to initialize the functionality
  71. uint16_t EEPROM_Init(void);
  72. void EEPROM_Erase (void);
  73. uint16_t EEPROM_WriteDataByte (uint16_t Address, uint8_t DataByte);
  74. uint8_t EEPROM_ReadDataByte (uint16_t Address);
  75. #endif /* __EEPROM_H */