summaryrefslogtreecommitdiff
path: root/include/bsp/milkymist_flash.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bsp/milkymist_flash.h')
-rw-r--r--include/bsp/milkymist_flash.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/include/bsp/milkymist_flash.h b/include/bsp/milkymist_flash.h
new file mode 100644
index 0000000000..2acf855096
--- /dev/null
+++ b/include/bsp/milkymist_flash.h
@@ -0,0 +1,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.org/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_ */