aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/hal_ee25xx.h
blob: e520bd64ac186c77128b94ab8d3661d8aa471693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
  Copyright 2012 Uladzimir Pylinski aka barthess.
  You may use this work without restrictions, as long as this notice is included.
  The work is provided "as is" without warranty of any kind, neither express nor implied.
*/

#ifndef HAL_EE25XX_H
#define HAL_EE25XX_H

#include "hal.h"

#if defined(HAL_USE_EEPROM) && HAL_USE_EEPROM && EEPROM_USE_EE25XX

#define EEPROM_DEV_25XX 25

/**
 * @extends EepromFileConfig
 */
typedef struct {
  _eeprom_file_config_data
  /**
   * Driver connected to IC.
   */
  SPIDriver       *spip;
  /**
   * Config associated with SPI driver.
   */
  const SPIConfig *spicfg;
} SPIEepromFileConfig;

/**
 * @brief   @p SPIEepromFileStream specific data.
 */
#define _eeprom_file_stream_data_spi                                       \
  _eeprom_file_stream_data

/**
 * @extends EepromFileStream
 *
 * @brief   EEPROM file stream driver class for SPI device.
 */
typedef struct {
  const struct EepromFileStreamVMT *vmt;
  _eeprom_file_stream_data_spi
  /* Overwritten parent data member. */
  const SPIEepromFileConfig *cfg;
} SPIEepromFileStream;

/**
 * Open SPI EEPROM IC as file and return pointer to the file stream object
 * @note      Fucntion allways successfully open file. All checking makes
 *            in read/write functions.
 */
EepromFileStream *SPIEepromFileOpen(SPIEepromFileStream *efs,
                                    const SPIEepromFileConfig *eepcfg,
                                    const EepromDevice *eepdev);

#define SPIEepromFileOpen(efs, eepcfg, eepdev) \
  EepromFileOpen((EepromFileStream *)efs, (EepromFileConfig *)eepcfg, eepdev);

#endif /* #if defined(EEPROM_USE_EE25XX) && EEPROM_USE_EE25XX */

#endif // HAL_EE25XX_H