]> Git Repo - u-boot.git/blame - include/dfu.h
Merge branch 'next'
[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 <[email protected]>
6 * Lukasz Majewski <[email protected]>
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>
a6921adc 17#include <linux/usb/composite.h>
f22b11c1
ŁM
18
19enum dfu_device_type {
20 DFU_DEV_MMC = 1,
21 DFU_DEV_ONENAND,
22 DFU_DEV_NAND,
a9479f04 23 DFU_DEV_RAM,
f22b11c1
ŁM
24};
25
26enum dfu_layout {
27 DFU_RAW_ADDR = 1,
28 DFU_FS_FAT,
29 DFU_FS_EXT2,
30 DFU_FS_EXT3,
31 DFU_FS_EXT4,
a9479f04 32 DFU_RAM_ADDR,
f22b11c1
ŁM
33};
34
5a127c84
AM
35enum dfu_op {
36 DFU_OP_READ = 1,
37 DFU_OP_WRITE,
38};
39
f22b11c1
ŁM
40struct mmc_internal_data {
41 /* RAW programming */
42 unsigned int lba_start;
43 unsigned int lba_size;
44 unsigned int lba_blk_size;
45
46 /* FAT/EXT */
47 unsigned int dev;
48 unsigned int part;
49};
50
c6631764
PA
51struct nand_internal_data {
52 /* RAW programming */
53 u64 start;
54 u64 size;
55
56 unsigned int dev;
57 unsigned int part;
815c30b2
HS
58 /* for nand/ubi use */
59 unsigned int ubi;
c6631764
PA
60};
61
a9479f04
AM
62struct ram_internal_data {
63 void *start;
64 unsigned int size;
65};
66
f22b11c1
ŁM
67static inline unsigned int get_mmc_blk_size(int dev)
68{
69 return find_mmc_device(dev)->read_bl_len;
70}
71
a24c3155
TR
72#define DFU_NAME_SIZE 32
73#define DFU_CMD_BUF_SIZE 128
e7e75c70
HS
74#ifndef CONFIG_SYS_DFU_DATA_BUF_SIZE
75#define CONFIG_SYS_DFU_DATA_BUF_SIZE (1024*1024*8) /* 8 MiB */
76#endif
ea2453d5 77#ifndef CONFIG_SYS_DFU_MAX_FILE_SIZE
7a813d5b 78#define CONFIG_SYS_DFU_MAX_FILE_SIZE CONFIG_SYS_DFU_DATA_BUF_SIZE
ea2453d5 79#endif
33fac4a6
ŁM
80#ifndef DFU_DEFAULT_POLL_TIMEOUT
81#define DFU_DEFAULT_POLL_TIMEOUT 0
82#endif
001a8319
HS
83#ifndef DFU_MANIFEST_POLL_TIMEOUT
84#define DFU_MANIFEST_POLL_TIMEOUT DFU_DEFAULT_POLL_TIMEOUT
85#endif
f22b11c1
ŁM
86
87struct dfu_entity {
88 char name[DFU_NAME_SIZE];
89 int alt;
90 void *dev_private;
91 int dev_num;
92 enum dfu_device_type dev_type;
93 enum dfu_layout layout;
94
95 union {
96 struct mmc_internal_data mmc;
c6631764 97 struct nand_internal_data nand;
a9479f04 98 struct ram_internal_data ram;
f22b11c1
ŁM
99 } data;
100
ea2453d5
PA
101 int (*read_medium)(struct dfu_entity *dfu,
102 u64 offset, void *buf, long *len);
103
104 int (*write_medium)(struct dfu_entity *dfu,
105 u64 offset, void *buf, long *len);
106
107 int (*flush_medium)(struct dfu_entity *dfu);
f22b11c1
ŁM
108
109 struct list_head list;
ea2453d5
PA
110
111 /* on the fly state */
112 u32 crc;
113 u64 offset;
114 int i_blk_seq_num;
115 u8 *i_buf;
116 u8 *i_buf_start;
117 u8 *i_buf_end;
118 long r_left;
119 long b_left;
120
c6631764
PA
121 u32 bad_skip; /* for nand use */
122
ea2453d5 123 unsigned int inited:1;
f22b11c1
ŁM
124};
125
126int dfu_config_entities(char *s, char *interface, int num);
127void dfu_free_entities(void);
128void dfu_show_entities(void);
129int dfu_get_alt_number(void);
130const char *dfu_get_dev_type(enum dfu_device_type t);
131const char *dfu_get_layout(enum dfu_layout l);
132struct dfu_entity *dfu_get_entity(int alt);
133char *dfu_extract_token(char** e, int *n);
6bed7ce5 134void dfu_trigger_reset(void);
fed936ed 135int dfu_get_alt(char *name);
6bed7ce5 136bool dfu_reset(void);
765c5ae5 137int dfu_init_env_entities(char *interface, int dev);
d4278263
ŁM
138unsigned char *dfu_get_buf(void);
139unsigned char *dfu_free_buf(void);
4fb12789 140unsigned long dfu_get_buf_size(void);
f22b11c1
ŁM
141
142int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
143int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
a2199afe 144int dfu_flush(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
f22b11c1
ŁM
145/* Device specific */
146#ifdef CONFIG_DFU_MMC
147extern int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *s);
148#else
149static inline int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *s)
150{
151 puts("MMC support not available!\n");
152 return -1;
153}
154#endif
c6631764
PA
155
156#ifdef CONFIG_DFU_NAND
157extern int dfu_fill_entity_nand(struct dfu_entity *dfu, char *s);
158#else
159static inline int dfu_fill_entity_nand(struct dfu_entity *dfu, char *s)
160{
161 puts("NAND support not available!\n");
162 return -1;
163}
164#endif
165
a9479f04
AM
166#ifdef CONFIG_DFU_RAM
167extern int dfu_fill_entity_ram(struct dfu_entity *dfu, char *s);
168#else
169static inline int dfu_fill_entity_ram(struct dfu_entity *dfu, char *s)
170{
171 puts("RAM support not available!\n");
172 return -1;
173}
174#endif
175
a6921adc
ŁM
176#ifdef CONFIG_DFU_FUNCTION
177int dfu_add(struct usb_configuration *c);
178#else
179int dfu_add(struct usb_configuration *c)
180{
181 return 0;
182}
183#endif
f22b11c1 184#endif /* __DFU_ENTITY_H_ */
This page took 0.142162 seconds and 4 git commands to generate.