2012-08-06 12:41:07 +00:00
|
|
|
/*
|
|
|
|
* dfu.h - DFU flashable area description
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Samsung Electronics
|
|
|
|
* authors: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
|
|
|
|
* Lukasz Majewski <l.majewski@samsung.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-08-06 12:41:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DFU_ENTITY_H_
|
|
|
|
#define __DFU_ENTITY_H_
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <mmc.h>
|
2014-06-11 22:03:36 +00:00
|
|
|
#include <spi_flash.h>
|
2013-09-17 13:58:23 +00:00
|
|
|
#include <linux/usb/composite.h>
|
2012-08-06 12:41:07 +00:00
|
|
|
|
|
|
|
enum dfu_device_type {
|
|
|
|
DFU_DEV_MMC = 1,
|
|
|
|
DFU_DEV_ONENAND,
|
|
|
|
DFU_DEV_NAND,
|
2013-09-17 19:45:24 +00:00
|
|
|
DFU_DEV_RAM,
|
2014-06-11 22:03:36 +00:00
|
|
|
DFU_DEV_SF,
|
2012-08-06 12:41:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum dfu_layout {
|
|
|
|
DFU_RAW_ADDR = 1,
|
|
|
|
DFU_FS_FAT,
|
|
|
|
DFU_FS_EXT2,
|
|
|
|
DFU_FS_EXT3,
|
|
|
|
DFU_FS_EXT4,
|
2013-09-17 19:45:24 +00:00
|
|
|
DFU_RAM_ADDR,
|
2012-08-06 12:41:07 +00:00
|
|
|
};
|
|
|
|
|
2013-09-17 19:44:50 +00:00
|
|
|
enum dfu_op {
|
|
|
|
DFU_OP_READ = 1,
|
|
|
|
DFU_OP_WRITE,
|
2014-06-11 18:47:27 +00:00
|
|
|
DFU_OP_SIZE,
|
2013-09-17 19:44:50 +00:00
|
|
|
};
|
|
|
|
|
2012-08-06 12:41:07 +00:00
|
|
|
struct mmc_internal_data {
|
2014-06-11 22:03:33 +00:00
|
|
|
int dev_num;
|
|
|
|
|
2012-08-06 12:41:07 +00:00
|
|
|
/* RAW programming */
|
|
|
|
unsigned int lba_start;
|
|
|
|
unsigned int lba_size;
|
|
|
|
unsigned int lba_blk_size;
|
|
|
|
|
2014-05-09 14:58:15 +00:00
|
|
|
/* eMMC HW partition access */
|
|
|
|
int hw_partition;
|
|
|
|
|
2012-08-06 12:41:07 +00:00
|
|
|
/* FAT/EXT */
|
|
|
|
unsigned int dev;
|
|
|
|
unsigned int part;
|
|
|
|
};
|
|
|
|
|
2013-03-14 05:32:52 +00:00
|
|
|
struct nand_internal_data {
|
|
|
|
/* RAW programming */
|
|
|
|
u64 start;
|
|
|
|
u64 size;
|
|
|
|
|
|
|
|
unsigned int dev;
|
|
|
|
unsigned int part;
|
2013-07-25 04:43:11 +00:00
|
|
|
/* for nand/ubi use */
|
|
|
|
unsigned int ubi;
|
2013-03-14 05:32:52 +00:00
|
|
|
};
|
|
|
|
|
2013-09-17 19:45:24 +00:00
|
|
|
struct ram_internal_data {
|
|
|
|
void *start;
|
|
|
|
unsigned int size;
|
|
|
|
};
|
|
|
|
|
2014-06-11 22:03:36 +00:00
|
|
|
struct sf_internal_data {
|
|
|
|
struct spi_flash *dev;
|
|
|
|
|
|
|
|
/* RAW programming */
|
|
|
|
u64 start;
|
|
|
|
u64 size;
|
|
|
|
};
|
|
|
|
|
2013-03-14 05:32:49 +00:00
|
|
|
#define DFU_NAME_SIZE 32
|
|
|
|
#define DFU_CMD_BUF_SIZE 128
|
2013-06-12 04:05:51 +00:00
|
|
|
#ifndef CONFIG_SYS_DFU_DATA_BUF_SIZE
|
|
|
|
#define CONFIG_SYS_DFU_DATA_BUF_SIZE (1024*1024*8) /* 8 MiB */
|
|
|
|
#endif
|
2013-03-14 05:32:48 +00:00
|
|
|
#ifndef CONFIG_SYS_DFU_MAX_FILE_SIZE
|
2013-09-10 13:29:23 +00:00
|
|
|
#define CONFIG_SYS_DFU_MAX_FILE_SIZE CONFIG_SYS_DFU_DATA_BUF_SIZE
|
2013-03-14 05:32:48 +00:00
|
|
|
#endif
|
2013-12-09 15:20:14 +00:00
|
|
|
#ifndef DFU_DEFAULT_POLL_TIMEOUT
|
|
|
|
#define DFU_DEFAULT_POLL_TIMEOUT 0
|
|
|
|
#endif
|
2014-03-18 07:09:56 +00:00
|
|
|
#ifndef DFU_MANIFEST_POLL_TIMEOUT
|
|
|
|
#define DFU_MANIFEST_POLL_TIMEOUT DFU_DEFAULT_POLL_TIMEOUT
|
|
|
|
#endif
|
2012-08-06 12:41:07 +00:00
|
|
|
|
|
|
|
struct dfu_entity {
|
|
|
|
char name[DFU_NAME_SIZE];
|
|
|
|
int alt;
|
|
|
|
void *dev_private;
|
|
|
|
enum dfu_device_type dev_type;
|
|
|
|
enum dfu_layout layout;
|
2014-06-11 22:03:34 +00:00
|
|
|
unsigned long max_buf_size;
|
2012-08-06 12:41:07 +00:00
|
|
|
|
|
|
|
union {
|
|
|
|
struct mmc_internal_data mmc;
|
2013-03-14 05:32:52 +00:00
|
|
|
struct nand_internal_data nand;
|
2013-09-17 19:45:24 +00:00
|
|
|
struct ram_internal_data ram;
|
2014-06-11 22:03:36 +00:00
|
|
|
struct sf_internal_data sf;
|
2012-08-06 12:41:07 +00:00
|
|
|
} data;
|
|
|
|
|
2014-06-11 18:47:27 +00:00
|
|
|
long (*get_medium_size)(struct dfu_entity *dfu);
|
|
|
|
|
2013-03-14 05:32:48 +00:00
|
|
|
int (*read_medium)(struct dfu_entity *dfu,
|
|
|
|
u64 offset, void *buf, long *len);
|
|
|
|
|
|
|
|
int (*write_medium)(struct dfu_entity *dfu,
|
|
|
|
u64 offset, void *buf, long *len);
|
|
|
|
|
|
|
|
int (*flush_medium)(struct dfu_entity *dfu);
|
2014-04-11 05:59:47 +00:00
|
|
|
unsigned int (*poll_timeout)(struct dfu_entity *dfu);
|
2012-08-06 12:41:07 +00:00
|
|
|
|
2014-06-11 22:03:35 +00:00
|
|
|
void (*free_entity)(struct dfu_entity *dfu);
|
|
|
|
|
2012-08-06 12:41:07 +00:00
|
|
|
struct list_head list;
|
2013-03-14 05:32:48 +00:00
|
|
|
|
|
|
|
/* on the fly state */
|
|
|
|
u32 crc;
|
|
|
|
u64 offset;
|
|
|
|
int i_blk_seq_num;
|
|
|
|
u8 *i_buf;
|
|
|
|
u8 *i_buf_start;
|
|
|
|
u8 *i_buf_end;
|
|
|
|
long r_left;
|
|
|
|
long b_left;
|
|
|
|
|
2013-03-14 05:32:52 +00:00
|
|
|
u32 bad_skip; /* for nand use */
|
|
|
|
|
2013-03-14 05:32:48 +00:00
|
|
|
unsigned int inited:1;
|
2012-08-06 12:41:07 +00:00
|
|
|
};
|
|
|
|
|
2015-02-17 11:24:11 +00:00
|
|
|
#ifdef CONFIG_SET_DFU_ALT_INFO
|
|
|
|
void set_dfu_alt_info(char *interface, char *devstr);
|
|
|
|
#endif
|
2014-06-11 22:03:33 +00:00
|
|
|
int dfu_config_entities(char *s, char *interface, char *devstr);
|
2012-08-06 12:41:07 +00:00
|
|
|
void dfu_free_entities(void);
|
|
|
|
void dfu_show_entities(void);
|
|
|
|
int dfu_get_alt_number(void);
|
|
|
|
const char *dfu_get_dev_type(enum dfu_device_type t);
|
|
|
|
const char *dfu_get_layout(enum dfu_layout l);
|
|
|
|
struct dfu_entity *dfu_get_entity(int alt);
|
|
|
|
char *dfu_extract_token(char** e, int *n);
|
2013-07-18 11:19:14 +00:00
|
|
|
void dfu_trigger_reset(void);
|
2013-10-08 12:30:38 +00:00
|
|
|
int dfu_get_alt(char *name);
|
2014-06-11 22:03:33 +00:00
|
|
|
int dfu_init_env_entities(char *interface, char *devstr);
|
2014-06-11 22:03:34 +00:00
|
|
|
unsigned char *dfu_get_buf(struct dfu_entity *dfu);
|
2013-10-08 12:30:39 +00:00
|
|
|
unsigned char *dfu_free_buf(void);
|
2013-12-09 15:20:13 +00:00
|
|
|
unsigned long dfu_get_buf_size(void);
|
2014-08-25 09:07:28 +00:00
|
|
|
bool dfu_usb_get_reset(void);
|
2012-08-06 12:41:07 +00:00
|
|
|
|
|
|
|
int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
|
|
|
int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
2014-03-18 07:09:55 +00:00
|
|
|
int dfu_flush(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
2015-08-23 22:21:46 +00:00
|
|
|
|
2016-01-28 15:14:49 +00:00
|
|
|
/*
|
|
|
|
* dfu_defer_flush - pointer to store dfu_entity for deferred flashing.
|
|
|
|
* It should be NULL when not used.
|
|
|
|
*/
|
|
|
|
extern struct dfu_entity *dfu_defer_flush;
|
|
|
|
/**
|
|
|
|
* dfu_get_defer_flush - get current value of dfu_defer_flush pointer
|
|
|
|
*
|
|
|
|
* @return - value of the dfu_defer_flush pointer
|
|
|
|
*/
|
|
|
|
static inline struct dfu_entity *dfu_get_defer_flush(void)
|
|
|
|
{
|
|
|
|
return dfu_defer_flush;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dfu_set_defer_flush - set the dfu_defer_flush pointer
|
|
|
|
*
|
|
|
|
* @param dfu - pointer to the dfu_entity, which should be written
|
|
|
|
*/
|
|
|
|
static inline void dfu_set_defer_flush(struct dfu_entity *dfu)
|
|
|
|
{
|
|
|
|
dfu_defer_flush = dfu;
|
|
|
|
}
|
|
|
|
|
2015-08-23 22:21:46 +00:00
|
|
|
/**
|
|
|
|
* dfu_write_from_mem_addr - write data from memory to DFU managed medium
|
|
|
|
*
|
|
|
|
* This function adds support for writing data starting from fixed memory
|
|
|
|
* address (like $loadaddr) to dfu managed medium (e.g. NAND, MMC, file system)
|
|
|
|
*
|
|
|
|
* @param dfu - dfu entity to which we want to store data
|
|
|
|
* @param buf - fixed memory addres from where data starts
|
|
|
|
* @param size - number of bytes to write
|
|
|
|
*
|
|
|
|
* @return - 0 on success, other value on failure
|
|
|
|
*/
|
|
|
|
int dfu_write_from_mem_addr(struct dfu_entity *dfu, void *buf, int size);
|
|
|
|
|
2012-08-06 12:41:07 +00:00
|
|
|
/* Device specific */
|
|
|
|
#ifdef CONFIG_DFU_MMC
|
2014-06-11 22:03:33 +00:00
|
|
|
extern int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *devstr, char *s);
|
2012-08-06 12:41:07 +00:00
|
|
|
#else
|
2014-06-11 22:03:33 +00:00
|
|
|
static inline int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *devstr,
|
|
|
|
char *s)
|
2012-08-06 12:41:07 +00:00
|
|
|
{
|
|
|
|
puts("MMC support not available!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
2013-03-14 05:32:52 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_DFU_NAND
|
2014-06-11 22:03:33 +00:00
|
|
|
extern int dfu_fill_entity_nand(struct dfu_entity *dfu, char *devstr, char *s);
|
2013-03-14 05:32:52 +00:00
|
|
|
#else
|
2014-06-11 22:03:33 +00:00
|
|
|
static inline int dfu_fill_entity_nand(struct dfu_entity *dfu, char *devstr,
|
|
|
|
char *s)
|
2013-03-14 05:32:52 +00:00
|
|
|
{
|
|
|
|
puts("NAND support not available!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-09-17 19:45:24 +00:00
|
|
|
#ifdef CONFIG_DFU_RAM
|
2014-06-11 22:03:33 +00:00
|
|
|
extern int dfu_fill_entity_ram(struct dfu_entity *dfu, char *devstr, char *s);
|
2013-09-17 19:45:24 +00:00
|
|
|
#else
|
2014-06-11 22:03:33 +00:00
|
|
|
static inline int dfu_fill_entity_ram(struct dfu_entity *dfu, char *devstr,
|
|
|
|
char *s)
|
2013-09-17 19:45:24 +00:00
|
|
|
{
|
|
|
|
puts("RAM support not available!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-06-11 22:03:36 +00:00
|
|
|
#ifdef CONFIG_DFU_SF
|
|
|
|
extern int dfu_fill_entity_sf(struct dfu_entity *dfu, char *devstr, char *s);
|
|
|
|
#else
|
|
|
|
static inline int dfu_fill_entity_sf(struct dfu_entity *dfu, char *devstr,
|
|
|
|
char *s)
|
|
|
|
{
|
|
|
|
puts("SF support not available!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-23 22:21:45 +00:00
|
|
|
/**
|
|
|
|
* dfu_tftp_write - Write TFTP data to DFU medium
|
|
|
|
*
|
|
|
|
* This function is storing data received via TFTP on DFU supported medium.
|
|
|
|
*
|
|
|
|
* @param dfu_entity_name - name of DFU entity to write
|
|
|
|
* @param addr - address of data buffer to write
|
|
|
|
* @param len - number of bytes
|
|
|
|
* @param interface - destination DFU medium (e.g. "mmc")
|
|
|
|
* @param devstring - instance number of destination DFU medium (e.g. "1")
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise error code
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_DFU_TFTP
|
|
|
|
int dfu_tftp_write(char *dfu_entity_name, unsigned int addr, unsigned int len,
|
|
|
|
char *interface, char *devstring);
|
|
|
|
#else
|
|
|
|
static inline int dfu_tftp_write(char *dfu_entity_name, unsigned int addr,
|
|
|
|
unsigned int len, char *interface,
|
|
|
|
char *devstring)
|
|
|
|
{
|
|
|
|
puts("TFTP write support for DFU not available!\n");
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-09-17 13:58:23 +00:00
|
|
|
int dfu_add(struct usb_configuration *c);
|
2012-08-06 12:41:07 +00:00
|
|
|
#endif /* __DFU_ENTITY_H_ */
|