]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/dfu.h
Convert CONFIG_BOOTCOUNT_ENV to Kconfig
[people/ms/u-boot.git] / include / dfu.h
CommitLineData
f22b11c1
ŁM
1/*
2 * dfu.h - DFU flashable area description
3 *
4 * Copyright (C) 2012 Samsung Electronics
5 * authors: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
6 * Lukasz Majewski <l.majewski@samsung.com>
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
f22b11c1
ŁM
9 */
10
11#ifndef __DFU_ENTITY_H_
12#define __DFU_ENTITY_H_
13
14#include <common.h>
15#include <linux/list.h>
16#include <mmc.h>
6f12ebf6 17#include <spi_flash.h>
a6921adc 18#include <linux/usb/composite.h>
f22b11c1
ŁM
19
20enum dfu_device_type {
21 DFU_DEV_MMC = 1,
22 DFU_DEV_ONENAND,
23 DFU_DEV_NAND,
a9479f04 24 DFU_DEV_RAM,
6f12ebf6 25 DFU_DEV_SF,
f22b11c1
ŁM
26};
27
28enum dfu_layout {
29 DFU_RAW_ADDR = 1,
30 DFU_FS_FAT,
31 DFU_FS_EXT2,
32 DFU_FS_EXT3,
33 DFU_FS_EXT4,
a9479f04 34 DFU_RAM_ADDR,
f22b11c1
ŁM
35};
36
5a127c84
AM
37enum dfu_op {
38 DFU_OP_READ = 1,
39 DFU_OP_WRITE,
0e285b50 40 DFU_OP_SIZE,
5a127c84
AM
41};
42
f22b11c1 43struct mmc_internal_data {
dd64827e
SW
44 int dev_num;
45
f22b11c1
ŁM
46 /* RAW programming */
47 unsigned int lba_start;
48 unsigned int lba_size;
49 unsigned int lba_blk_size;
50
c8151b4a
ŁM
51 /* eMMC HW partition access */
52 int hw_partition;
53
f22b11c1
ŁM
54 /* FAT/EXT */
55 unsigned int dev;
56 unsigned int part;
57};
58
c6631764
PA
59struct nand_internal_data {
60 /* RAW programming */
61 u64 start;
62 u64 size;
63
64 unsigned int dev;
65 unsigned int part;
815c30b2
HS
66 /* for nand/ubi use */
67 unsigned int ubi;
c6631764
PA
68};
69
a9479f04
AM
70struct ram_internal_data {
71 void *start;
72 unsigned int size;
73};
74
6f12ebf6
SW
75struct sf_internal_data {
76 struct spi_flash *dev;
77
78 /* RAW programming */
79 u64 start;
80 u64 size;
81};
82
a24c3155
TR
83#define DFU_NAME_SIZE 32
84#define DFU_CMD_BUF_SIZE 128
e7e75c70
HS
85#ifndef CONFIG_SYS_DFU_DATA_BUF_SIZE
86#define CONFIG_SYS_DFU_DATA_BUF_SIZE (1024*1024*8) /* 8 MiB */
87#endif
ea2453d5 88#ifndef CONFIG_SYS_DFU_MAX_FILE_SIZE
7a813d5b 89#define CONFIG_SYS_DFU_MAX_FILE_SIZE CONFIG_SYS_DFU_DATA_BUF_SIZE
ea2453d5 90#endif
33fac4a6
ŁM
91#ifndef DFU_DEFAULT_POLL_TIMEOUT
92#define DFU_DEFAULT_POLL_TIMEOUT 0
93#endif
001a8319
HS
94#ifndef DFU_MANIFEST_POLL_TIMEOUT
95#define DFU_MANIFEST_POLL_TIMEOUT DFU_DEFAULT_POLL_TIMEOUT
96#endif
f22b11c1
ŁM
97
98struct dfu_entity {
99 char name[DFU_NAME_SIZE];
100 int alt;
101 void *dev_private;
f22b11c1
ŁM
102 enum dfu_device_type dev_type;
103 enum dfu_layout layout;
7ac1b410 104 unsigned long max_buf_size;
f22b11c1
ŁM
105
106 union {
107 struct mmc_internal_data mmc;
c6631764 108 struct nand_internal_data nand;
a9479f04 109 struct ram_internal_data ram;
6f12ebf6 110 struct sf_internal_data sf;
f22b11c1
ŁM
111 } data;
112
15970d87 113 int (*get_medium_size)(struct dfu_entity *dfu, u64 *size);
0e285b50 114
ea2453d5
PA
115 int (*read_medium)(struct dfu_entity *dfu,
116 u64 offset, void *buf, long *len);
117
118 int (*write_medium)(struct dfu_entity *dfu,
119 u64 offset, void *buf, long *len);
120
121 int (*flush_medium)(struct dfu_entity *dfu);
fc25fa27 122 unsigned int (*poll_timeout)(struct dfu_entity *dfu);
f22b11c1 123
cb7bd2e0
SW
124 void (*free_entity)(struct dfu_entity *dfu);
125
f22b11c1 126 struct list_head list;
ea2453d5
PA
127
128 /* on the fly state */
129 u32 crc;
130 u64 offset;
131 int i_blk_seq_num;
132 u8 *i_buf;
133 u8 *i_buf_start;
134 u8 *i_buf_end;
15970d87 135 u64 r_left;
ea2453d5
PA
136 long b_left;
137
c6631764
PA
138 u32 bad_skip; /* for nand use */
139
ea2453d5 140 unsigned int inited:1;
f22b11c1
ŁM
141};
142
899a5282
PM
143#ifdef CONFIG_SET_DFU_ALT_INFO
144void set_dfu_alt_info(char *interface, char *devstr);
145#endif
dd64827e 146int dfu_config_entities(char *s, char *interface, char *devstr);
f22b11c1
ŁM
147void dfu_free_entities(void);
148void dfu_show_entities(void);
149int dfu_get_alt_number(void);
150const char *dfu_get_dev_type(enum dfu_device_type t);
151const char *dfu_get_layout(enum dfu_layout l);
152struct dfu_entity *dfu_get_entity(int alt);
153char *dfu_extract_token(char** e, int *n);
6bed7ce5 154void dfu_trigger_reset(void);
fed936ed 155int dfu_get_alt(char *name);
dd64827e 156int dfu_init_env_entities(char *interface, char *devstr);
7ac1b410 157unsigned char *dfu_get_buf(struct dfu_entity *dfu);
d4278263 158unsigned char *dfu_free_buf(void);
4fb12789 159unsigned long dfu_get_buf_size(void);
1cc03c5c 160bool dfu_usb_get_reset(void);
f22b11c1
ŁM
161
162int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
163int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
a2199afe 164int dfu_flush(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
2092e461 165
fc18f8d1
ŁM
166/*
167 * dfu_defer_flush - pointer to store dfu_entity for deferred flashing.
168 * It should be NULL when not used.
169 */
170extern struct dfu_entity *dfu_defer_flush;
171/**
172 * dfu_get_defer_flush - get current value of dfu_defer_flush pointer
173 *
174 * @return - value of the dfu_defer_flush pointer
175 */
176static inline struct dfu_entity *dfu_get_defer_flush(void)
177{
178 return dfu_defer_flush;
179}
180
181/**
182 * dfu_set_defer_flush - set the dfu_defer_flush pointer
183 *
184 * @param dfu - pointer to the dfu_entity, which should be written
185 */
186static inline void dfu_set_defer_flush(struct dfu_entity *dfu)
187{
188 dfu_defer_flush = dfu;
189}
190
2092e461
LM
191/**
192 * dfu_write_from_mem_addr - write data from memory to DFU managed medium
193 *
194 * This function adds support for writing data starting from fixed memory
195 * address (like $loadaddr) to dfu managed medium (e.g. NAND, MMC, file system)
196 *
197 * @param dfu - dfu entity to which we want to store data
198 * @param buf - fixed memory addres from where data starts
199 * @param size - number of bytes to write
200 *
201 * @return - 0 on success, other value on failure
202 */
203int dfu_write_from_mem_addr(struct dfu_entity *dfu, void *buf, int size);
204
f22b11c1
ŁM
205/* Device specific */
206#ifdef CONFIG_DFU_MMC
dd64827e 207extern int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *devstr, char *s);
f22b11c1 208#else
dd64827e
SW
209static inline int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *devstr,
210 char *s)
f22b11c1
ŁM
211{
212 puts("MMC support not available!\n");
213 return -1;
214}
215#endif
c6631764
PA
216
217#ifdef CONFIG_DFU_NAND
dd64827e 218extern int dfu_fill_entity_nand(struct dfu_entity *dfu, char *devstr, char *s);
c6631764 219#else
dd64827e
SW
220static inline int dfu_fill_entity_nand(struct dfu_entity *dfu, char *devstr,
221 char *s)
c6631764
PA
222{
223 puts("NAND support not available!\n");
224 return -1;
225}
226#endif
227
a9479f04 228#ifdef CONFIG_DFU_RAM
dd64827e 229extern int dfu_fill_entity_ram(struct dfu_entity *dfu, char *devstr, char *s);
a9479f04 230#else
dd64827e
SW
231static inline int dfu_fill_entity_ram(struct dfu_entity *dfu, char *devstr,
232 char *s)
a9479f04
AM
233{
234 puts("RAM support not available!\n");
235 return -1;
236}
237#endif
238
6f12ebf6
SW
239#ifdef CONFIG_DFU_SF
240extern int dfu_fill_entity_sf(struct dfu_entity *dfu, char *devstr, char *s);
241#else
242static inline int dfu_fill_entity_sf(struct dfu_entity *dfu, char *devstr,
243 char *s)
244{
245 puts("SF support not available!\n");
246 return -1;
247}
248#endif
249
2d50d68a
LM
250/**
251 * dfu_tftp_write - Write TFTP data to DFU medium
252 *
253 * This function is storing data received via TFTP on DFU supported medium.
254 *
255 * @param dfu_entity_name - name of DFU entity to write
256 * @param addr - address of data buffer to write
257 * @param len - number of bytes
258 * @param interface - destination DFU medium (e.g. "mmc")
259 * @param devstring - instance number of destination DFU medium (e.g. "1")
260 *
261 * @return 0 on success, otherwise error code
262 */
263#ifdef CONFIG_DFU_TFTP
264int dfu_tftp_write(char *dfu_entity_name, unsigned int addr, unsigned int len,
265 char *interface, char *devstring);
266#else
267static inline int dfu_tftp_write(char *dfu_entity_name, unsigned int addr,
268 unsigned int len, char *interface,
269 char *devstring)
270{
271 puts("TFTP write support for DFU not available!\n");
272 return -ENOSYS;
273}
274#endif
275
a6921adc 276int dfu_add(struct usb_configuration *c);
f22b11c1 277#endif /* __DFU_ENTITY_H_ */