dfu.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #ifndef __DFU_ENTITY_H_
  23. #define __DFU_ENTITY_H_
  24. #include <common.h>
  25. #include <linux/list.h>
  26. #include <mmc.h>
  27. enum dfu_device_type {
  28. DFU_DEV_MMC = 1,
  29. DFU_DEV_ONENAND,
  30. DFU_DEV_NAND,
  31. };
  32. enum dfu_layout {
  33. DFU_RAW_ADDR = 1,
  34. DFU_FS_FAT,
  35. DFU_FS_EXT2,
  36. DFU_FS_EXT3,
  37. DFU_FS_EXT4,
  38. };
  39. struct mmc_internal_data {
  40. /* RAW programming */
  41. unsigned int lba_start;
  42. unsigned int lba_size;
  43. unsigned int lba_blk_size;
  44. /* FAT/EXT */
  45. unsigned int dev;
  46. unsigned int part;
  47. };
  48. static inline unsigned int get_mmc_blk_size(int dev)
  49. {
  50. return find_mmc_device(dev)->read_bl_len;
  51. }
  52. #define DFU_NAME_SIZE 32
  53. #define DFU_CMD_BUF_SIZE 128
  54. #define DFU_DATA_BUF_SIZE (1024*1024*8) /* 8 MiB */
  55. #ifndef CONFIG_SYS_DFU_MAX_FILE_SIZE
  56. #define CONFIG_SYS_DFU_MAX_FILE_SIZE (4 << 20) /* 4 MiB */
  57. #endif
  58. struct dfu_entity {
  59. char name[DFU_NAME_SIZE];
  60. int alt;
  61. void *dev_private;
  62. int dev_num;
  63. enum dfu_device_type dev_type;
  64. enum dfu_layout layout;
  65. union {
  66. struct mmc_internal_data mmc;
  67. } data;
  68. int (*read_medium)(struct dfu_entity *dfu,
  69. u64 offset, void *buf, long *len);
  70. int (*write_medium)(struct dfu_entity *dfu,
  71. u64 offset, void *buf, long *len);
  72. int (*flush_medium)(struct dfu_entity *dfu);
  73. struct list_head list;
  74. /* on the fly state */
  75. u32 crc;
  76. u64 offset;
  77. int i_blk_seq_num;
  78. u8 *i_buf;
  79. u8 *i_buf_start;
  80. u8 *i_buf_end;
  81. long r_left;
  82. long b_left;
  83. unsigned int inited:1;
  84. };
  85. int dfu_config_entities(char *s, char *interface, int num);
  86. void dfu_free_entities(void);
  87. void dfu_show_entities(void);
  88. int dfu_get_alt_number(void);
  89. const char *dfu_get_dev_type(enum dfu_device_type t);
  90. const char *dfu_get_layout(enum dfu_layout l);
  91. struct dfu_entity *dfu_get_entity(int alt);
  92. char *dfu_extract_token(char** e, int *n);
  93. int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
  94. int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
  95. /* Device specific */
  96. #ifdef CONFIG_DFU_MMC
  97. extern int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *s);
  98. #else
  99. static inline int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *s)
  100. {
  101. puts("MMC support not available!\n");
  102. return -1;
  103. }
  104. #endif
  105. #endif /* __DFU_ENTITY_H_ */