wacom_i2c_flash.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /*
  2. * wacom_i2c_flash.h - Wacom G5 Digitizer Controller (I2C bus)
  3. *
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #include "wacom_i2c_func.h"
  20. #include "wacom_i2c_firm.h"
  21. #include <linux/firmware.h>
  22. #define WACOM_I2C_MODE_BOOT 1
  23. #define WACOM_I2C_MODE_NORMAL 0
  24. #define FLASH_START0 'f'
  25. #define FLASH_START1 'l'
  26. #define FLASH_START2 'a'
  27. #define FLASH_START3 's'
  28. #define FLASH_START4 'h'
  29. #define FLASH_START5 '\r'
  30. #define FLASH_ACK 0x06
  31. #define PANA_QUERY 0x11
  32. #define FLASH_END 0x80
  33. #define FLASH_VERIFY 0x81
  34. #define FLASH_WRITE 0x82
  35. #define FLASH_READ 0x83
  36. #define FLASH_ERASE 0x84
  37. #define FLASH_SET_INFO 0x85
  38. #define FLASH_END_TO_BOOT 0x87
  39. #define FLASH_BAUDRATE 0x88
  40. #define FLASH_QUERY 0xE0
  41. #define FLASH_BLVER 0xE1
  42. #define FLASH_UNITID 0xE2
  43. #define FLASH_GET_INFO 0xE3
  44. #define FLASH_FWVER 0xE4
  45. #define FLASH_MPU 0xE8
  46. #define WRITE_BUFF 300
  47. #define BLOCK_SIZE_W 128
  48. #define NUM_BLOCK_2WRITE 16
  49. #define BANK 0
  50. #define START_ADDR 0x1000
  51. #define END_BLOCK 4
  52. #define MAX_BLOCK_W8501 31
  53. #define MPUVER_W8501 0x26
  54. #define BLVER_W8501 0x41
  55. #define MAX_ADDR_W8501 0x7FFF
  56. #define MAX_BLOCK_514 47
  57. #define MPUVER_514 0x27
  58. #define BLVER_514 0x50
  59. #define MAX_ADDR_514 0xBFFF
  60. #define MPUVER_505 0x28
  61. #define MAX_BLOCK_505 59
  62. #define MAX_ADDR_505 0xEFFF
  63. #define BLVER_505 0xFF
  64. #define RETRY 1
  65. #define ERR_FAILED_ENTER -1
  66. #define ERR_UNSENT -2
  67. #define ERR_NOT_FLASH -3
  68. #define ERR_FAILED_EXIT -4
  69. #define PEN_QUERY '*'
  70. #define START_ADDR_W9007 0x2000
  71. #define MAX_ADDR_W9007 0xfbff
  72. #define BLOCK_NUM_W9007 62
  73. #define CMD_GET_FEATURE 2
  74. #define CMD_SET_FEATURE 3
  75. #define MPU_W9001 0x28
  76. #define MPU_W9007 0x2A
  77. #define MPU_W9010 0x2C
  78. #define FLASH_BLOCK_SIZE 64
  79. /*#define WRITE 0*/
  80. #define VERIFY 1
  81. #define WRITEVERIFY 2
  82. #define ERASE 3
  83. #define GETVERSION 4
  84. #define USER_ADDRESS 0x56
  85. #define BOOT_ADDRESS 0x57
  86. //++
  87. #define ACK 0
  88. #define BOOT_CMD_SIZE 78
  89. #define BOOT_RSP_SIZE 6
  90. #define BOOT_CMD_REPORT_ID 7
  91. #define BOOT_ERASE_FLASH 0
  92. #define BOOT_WRITE_FLASH 1
  93. #define BOOT_VERIFY_FLASH 2
  94. #define BOOT_EXIT 3
  95. #define BOOT_BLVER 4
  96. #define BOOT_MPU 5
  97. #define BOOT_SECURITY_UNLOCK 6
  98. #define BOOT_QUERY 7
  99. #define QUERY_CMD 0x07
  100. #define QUERY_ECH 'D'
  101. #define QUERY_RSP 0x06
  102. #define BOOT_CMD 0x04
  103. #define BOOT_ECH 'D'
  104. #define MPU_CMD 0x05
  105. #define MPU_ECH 'D'
  106. #define SEC_CMD 0x06
  107. #define SEC_ECH 'D'
  108. #define SEC_RSP 0x00
  109. #define ERS_CMD 0x00
  110. #define ERS_ECH 'D'
  111. #define ERS_RSP 0x00
  112. #define MARK_CMD 0x02
  113. #define MARK_ECH 'D'
  114. #define MARK_RSP 0x00
  115. #define WRITE_CMD 0x01
  116. #define WRITE_ECH 'D'
  117. #define WRITE_RSP 0x00
  118. #define VERIFY_CMD 0x02
  119. #define VERIFY_ECH 'D'
  120. #define VERIFY_RSP 0x00
  121. //--
  122. //++
  123. #define CMD_SIZE (72+6)
  124. #define RSP_SIZE 6
  125. //--
  126. #define DATA_SIZE (65536 * 2)
  127. #define FIRM_VER_LB_ADDR_W9007 0xFBFE
  128. #define FIRM_VER_UB_ADDR_W9007 0xFBFF
  129. #define FIRM_VER_LB_ADDR_W9001 0xEFFE
  130. #define FIRM_VER_UB_ADDR_W9001 0xEFFF
  131. /* EXIT_RETURN_VALUE */
  132. enum {
  133. EXIT_OK = 0,
  134. EXIT_REBOOT,
  135. EXIT_FAIL,
  136. EXIT_USAGE,
  137. EXIT_NO_SUCH_FILE,
  138. EXIT_NO_INTEL_HEX,
  139. EXIT_FAIL_OPEN_COM_PORT,
  140. EXIT_FAIL_ENTER_FLASH_MODE,
  141. EXIT_FAIL_FLASH_QUERY,
  142. EXIT_FAIL_BAUDRATE_CHANGE,
  143. EXIT_FAIL_WRITE_FIRMWARE,
  144. EXIT_FAIL_EXIT_FLASH_MODE,
  145. EXIT_CANCEL_UPDATE,
  146. EXIT_SUCCESS_UPDATE,
  147. EXIT_FAIL_HID2SERIAL,
  148. EXIT_FAIL_VERIFY_FIRMWARE,
  149. EXIT_FAIL_MAKE_WRITING_MARK,
  150. EXIT_FAIL_ERASE_WRITING_MARK,
  151. EXIT_FAIL_READ_WRITING_MARK,
  152. EXIT_EXIST_MARKING,
  153. EXIT_FAIL_MISMATCHING,
  154. EXIT_FAIL_ERASE,
  155. EXIT_FAIL_GET_BOOT_LOADER_VERSION,
  156. EXIT_FAIL_GET_MPU_TYPE,
  157. EXIT_MISMATCH_BOOTLOADER,
  158. EXIT_MISMATCH_MPUTYPE,
  159. EXIT_FAIL_ERASE_BOOT,
  160. EXIT_FAIL_WRITE_BOOTLOADER,
  161. EXIT_FAIL_SWAP_BOOT,
  162. EXIT_FAIL_WRITE_DATA,
  163. EXIT_FAIL_GET_FIRMWARE_VERSION,
  164. EXIT_FAIL_GET_UNIT_ID,
  165. EXIT_FAIL_SEND_STOP_COMMAND,
  166. EXIT_FAIL_SEND_QUERY_COMMAND,
  167. EXIT_NOT_FILE_FOR_535,
  168. EXIT_NOT_FILE_FOR_514,
  169. EXIT_NOT_FILE_FOR_503,
  170. EXIT_MISMATCH_MPU_TYPE,
  171. EXIT_NOT_FILE_FOR_515,
  172. EXIT_NOT_FILE_FOR_1024,
  173. EXIT_FAIL_VERIFY_WRITING_MARK,
  174. EXIT_DEVICE_NOT_FOUND,
  175. EXIT_FAIL_WRITING_MARK_NOT_SET,
  176. EXIT_FAIL_SET_PDCT,
  177. ERR_SET_PDCT,
  178. ERR_GET_PDCT,
  179. ERR_SET_PDCT_IRQ,
  180. };
  181. extern int wacom_i2c_flash_chksum(struct wacom_i2c *wac_i2c,
  182. unsigned char *flash_data,
  183. unsigned long *max_address);
  184. extern int wacom_i2c_flash_cmd(struct wacom_i2c *wac_i2c);
  185. extern int wacom_i2c_flash_query(struct wacom_i2c *wac_i2c,
  186. u8 query, u8 recvdQuery);
  187. extern int wacom_i2c_flash_end(struct wacom_i2c *wac_i2c);
  188. extern int wacom_i2c_flash_enter(struct wacom_i2c *wac_i2c);
  189. extern int wacom_i2c_flash_BLVer(struct wacom_i2c *wac_i2c);
  190. extern int wacom_i2c_flash_mucId(struct wacom_i2c *wac_i2c);
  191. extern int wacom_i2c_flash_erase(struct wacom_i2c *wac_i2c,
  192. u8 cmd_erase, u8 cmd_block, u8 endBlock);
  193. extern int wacom_i2c_flash_write(struct wacom_i2c *wac_i2c,
  194. unsigned long startAddr, u8 size,
  195. unsigned long maxAddr);
  196. extern int wacom_i2c_flash_verify(struct wacom_i2c *wac_i2c,
  197. unsigned long startAddr, u8 size,
  198. unsigned long maxAddr);
  199. extern int wacom_i2c_flash(struct wacom_i2c *wac_i2c);
  200. extern int wacom_i2c_flash_9007(struct wacom_i2c *wac_i2c);
  201. extern int wacom_i2c_flash_fw_check(struct wacom_i2c *wac_i2c);
  202. extern int wacom_check_mpu_version(struct wacom_i2c *wac_i2c);
  203. extern int wacom_i2c_select_flash_code(struct wacom_i2c *wac_i2c);
  204. extern int wacom_fw_load_from_UMS(struct wacom_i2c *wac_i2c);
  205. extern int wacom_load_fw_from_req_fw(struct wacom_i2c *wac_i2c);
  206. extern int wacom_enter_bootloader(struct wacom_i2c *wac_i2c);
  207. extern int wacom_check_flash_mode(struct wacom_i2c *wac_i2c, int mode);