summaryrefslogtreecommitdiffstats
path: root/bsps/include/libchip/spi-fram-fm25l256.h
blob: a2d312d26819c20698a10f2cf35ad961c53d16e1 (plain) (blame)
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
/*
 * SPI driver for FM25L256 like spi fram device
 *
 * FIXME: currently, this driver only supports read/write accesses
 * erase accesses are to be completed
 */

/*
 * Copyright (c) 2008 embedded brains GmbH. All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#ifndef _LIBCHIP_SPI_FRAM_FM25L256_H
#define _LIBCHIP_SPI_FRAM_FM25L256_H

#include <libchip/spi-memdrv.h>

#ifdef __cplusplus
extern "C" {
#endif

/*
 * pass one of these descriptor pointers to rtems_libi2c_register_drv
 */
extern rtems_libi2c_drv_t *spi_fram_fm25l256_rw_driver_descriptor;

extern rtems_libi2c_drv_t *spi_fram_fm25l256_ro_driver_descriptor;

#ifdef __cplusplus
}
#endif

#endif /* _LIBCHIP_SPI_FRAM_FM25L256_H */