1 /* 2 * Copyright 2017 Rockchip Electronics Co., Ltd 3 * Frank Wang <frank.wang@rock-chips.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef __ROCKUSB_H__ 9 #define __ROCKUSB_H__ 10 11 #include <common.h> 12 #include <part.h> 13 #include <linux/usb/composite.h> 14 15 enum rkusb_cmd { 16 RKUSB_TEST_UNIT_READY = 0x00, 17 RKUSB_READ_FLASH_ID = 0x01, 18 RKUSB_SET_DEVICE_ID = 0x02, 19 RKUSB_TEST_BAD_BLOCK = 0x03, 20 RKUSB_READ_10 = 0x04, 21 RKUSB_WRITE_10 = 0x05, 22 RKUSB_ERASE_10 = 0x06, 23 RKUSB_WRITE_SPARE = 0x07, 24 RKUSB_READ_SPARE = 0x08, 25 RKUSB_ERASE_10_FORCE = 0x0B, 26 RKUSB_GET_VERSION = 0x0C, 27 RKUSB_LBA_READ_10 = 0x14, 28 RKUSB_LBA_WRITE_10 = 0x15, 29 RKUSB_ERASE_SYS_DISK = 0x16, 30 RKUSB_SDRAM_READ_10 = 0x17, 31 RKUSB_SDRAM_WRITE_10 = 0x18, 32 RKUSB_SDRAM_EXECUTE = 0x19, 33 RKUSB_READ_FLASH_INFO = 0x1A, 34 RKUSB_GET_CHIP_VER = 0x1B, 35 RKUSB_LOW_FORMAT = 0x1C, 36 RKUSB_SET_RESET_FLAG = 0x1E, 37 RKUSB_SPI_READ_10 = 0x21, 38 RKUSB_SPI_WRITE_10 = 0x22, 39 RKUSB_LBA_ERASE = 0x25, 40 RKUSB_SESSION = 0x30, 41 RKUSB_READ_CAPACITY = 0xAA, 42 RKUSB_RESET = 0xFF, 43 }; 44 45 enum rkusb_rc { 46 RKUSB_RC_ERROR = -1, 47 RKUSB_RC_CONTINUE = 0, 48 RKUSB_RC_FINISHED = 1, 49 RKUSB_RC_UNKNOWN_CMND = 2, 50 }; 51 52 #ifdef CONFIG_CMD_ROCKUSB 53 #define IS_RKUSB_UMS_DNL(name) (!strncmp((name), "rkusb_ums_dnl", 13)) 54 #else 55 #define IS_RKUSB_UMS_DNL(name) 0 56 57 struct fsg_buffhd; 58 struct fsg_dev; 59 struct fsg_common; 60 struct fsg_config; 61 62 static struct usb_descriptor_header *rkusb_fs_function[]; 63 static struct usb_descriptor_header *rkusb_hs_function[]; 64 65 static inline int rkusb_cmd_process(struct fsg_common *common, 66 struct fsg_buffhd *bh, int *reply) 67 { 68 return -EPERM; 69 } 70 #endif 71 72 /* Wait at maximum 60 seconds for cable connection */ 73 #define RKUSB_CABLE_READY_TIMEOUT 60 74 #define SECTOR_SIZE 0x200 75 76 struct rockusb { 77 struct ums *ums; 78 int ums_cnt; 79 }; 80 81 #endif /* __ROCKUSB_H__ */ 82