2 * dfu.h - DFU flashable area description
4 * Copyright (C) 2012 Samsung Electronics
5 * authors: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
6 * Lukasz Majewski <l.majewski@samsung.com>
8 * SPDX-License-Identifier: GPL-2.0+
11 #ifndef __DFU_ENTITY_H_
12 #define __DFU_ENTITY_H_
15 #include <linux/list.h>
17 #include <linux/usb/composite.h>
19 enum dfu_device_type {
40 struct mmc_internal_data {
42 unsigned int lba_start;
43 unsigned int lba_size;
44 unsigned int lba_blk_size;
46 /* eMMC HW partition access */
54 struct nand_internal_data {
61 /* for nand/ubi use */
65 struct ram_internal_data {
70 #define DFU_NAME_SIZE 32
71 #define DFU_CMD_BUF_SIZE 128
72 #ifndef CONFIG_SYS_DFU_DATA_BUF_SIZE
73 #define CONFIG_SYS_DFU_DATA_BUF_SIZE (1024*1024*8) /* 8 MiB */
75 #ifndef CONFIG_SYS_DFU_MAX_FILE_SIZE
76 #define CONFIG_SYS_DFU_MAX_FILE_SIZE CONFIG_SYS_DFU_DATA_BUF_SIZE
78 #ifndef DFU_DEFAULT_POLL_TIMEOUT
79 #define DFU_DEFAULT_POLL_TIMEOUT 0
81 #ifndef DFU_MANIFEST_POLL_TIMEOUT
82 #define DFU_MANIFEST_POLL_TIMEOUT DFU_DEFAULT_POLL_TIMEOUT
86 char name[DFU_NAME_SIZE];
90 enum dfu_device_type dev_type;
91 enum dfu_layout layout;
94 struct mmc_internal_data mmc;
95 struct nand_internal_data nand;
96 struct ram_internal_data ram;
99 int (*read_medium)(struct dfu_entity *dfu,
100 u64 offset, void *buf, long *len);
102 int (*write_medium)(struct dfu_entity *dfu,
103 u64 offset, void *buf, long *len);
105 int (*flush_medium)(struct dfu_entity *dfu);
106 unsigned int (*poll_timeout)(struct dfu_entity *dfu);
108 struct list_head list;
110 /* on the fly state */
120 u32 bad_skip; /* for nand use */
122 unsigned int inited:1;
125 int dfu_config_entities(char *s, char *interface, int num);
126 void dfu_free_entities(void);
127 void dfu_show_entities(void);
128 int dfu_get_alt_number(void);
129 const char *dfu_get_dev_type(enum dfu_device_type t);
130 const char *dfu_get_layout(enum dfu_layout l);
131 struct dfu_entity *dfu_get_entity(int alt);
132 char *dfu_extract_token(char** e, int *n);
133 void dfu_trigger_reset(void);
134 int dfu_get_alt(char *name);
135 bool dfu_reset(void);
136 int dfu_init_env_entities(char *interface, int dev);
137 unsigned char *dfu_get_buf(void);
138 unsigned char *dfu_free_buf(void);
139 unsigned long dfu_get_buf_size(void);
141 int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
142 int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
143 int dfu_flush(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
144 /* Device specific */
145 #ifdef CONFIG_DFU_MMC
146 extern int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *s);
148 static inline int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *s)
150 puts("MMC support not available!\n");
155 #ifdef CONFIG_DFU_NAND
156 extern int dfu_fill_entity_nand(struct dfu_entity *dfu, char *s);
158 static inline int dfu_fill_entity_nand(struct dfu_entity *dfu, char *s)
160 puts("NAND support not available!\n");
165 #ifdef CONFIG_DFU_RAM
166 extern int dfu_fill_entity_ram(struct dfu_entity *dfu, char *s);
168 static inline int dfu_fill_entity_ram(struct dfu_entity *dfu, char *s)
170 puts("RAM support not available!\n");
175 int dfu_add(struct usb_configuration *c);
176 #endif /* __DFU_ENTITY_H_ */