summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/lm32/shared/milkymist_flash/milkymist_flash.h
blob: 065e55df73337236c90be6145aa9c85fe1323a41 (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
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
64
/**
 * @file
 * @ingroup lm32_milkymist_flash lm32_milkymist_shared
 * @brief Milkymist Flash
 */

/*  milkymist_flash.h
 *  
 *  Copyright (C) 2010 Sebastien Bourdeauducq
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 */

/**
 * @defgroup lm32_milkymist_flash Milkymist Flash
 * @ingroup lm32_milkymist_shared
 * @brief Milkymist Flash
 * @{
 */

#ifndef __MILKYMIST_FLASH_H_
#define __MILKYMIST_FLASH_H_

/* Ioctls */
#define FLASH_GET_SIZE            0x4600
#define FLASH_GET_BLOCKSIZE       0x4601
#define FLASH_ERASE_BLOCK         0x4602

struct flash_partition {
	unsigned int start_address;
	unsigned int length;
};

rtems_device_driver flash_initialize(
  rtems_device_major_number major,
  rtems_device_minor_number minor,
  void *arg
);

rtems_device_driver flash_read(
  rtems_device_major_number major,
  rtems_device_minor_number minor,
  void *arg
);

rtems_device_driver flash_write(
  rtems_device_major_number major,
  rtems_device_minor_number minor,
  void *arg
);

rtems_device_driver flash_control(
  rtems_device_major_number major,
  rtems_device_minor_number minor,
  void *arg
);

#define FLASH_DRIVER_TABLE_ENTRY {flash_initialize, \
NULL, NULL, flash_read, flash_write, flash_control}

#endif /* __MILKYMIST_FLASH_H_ */