Lines Matching defs:argument

22 	uint32_t argument = 0x0; /* Go to IDLE state. */
25 res = send_cmd(handle, SD_CMD_GO_IDLE_STATE, argument, 0, NULL);
72 uint32_t argument;
77 argument = handle->device->ctrl.rca << SD_CMD7_ARG_RCA_SHIFT;
84 res = send_cmd(handle, SD_CMD_MMC_SET_RCA, argument, options, &resp);
95 uint32_t argument, options;
98 argument = (rca << SD_CMD7_ARG_RCA_SHIFT);
113 res = send_cmd(handle, SD_CMD_SELECT_DESELECT_CARD, argument, options,
153 uint32_t argument, options, iBlkNum, multiFactor = 1;
157 argument = handle->device->ctrl.rca << SD_CMD7_ARG_RCA_SHIFT;
163 res = send_cmd(handle, SD_CMD_SEND_CSD, argument, options, &resp);
247 uint32_t argument, options;
250 argument = handle->device->ctrl.rca << SD_CMD7_ARG_RCA_SHIFT;
257 res = send_cmd(handle, SD_CMD_SEND_STATUS, argument, options, &resp);
269 uint32_t argument, options, ntry;
272 argument = length;
307 res = send_cmd(handle, SD_CMD_SET_BLOCKLEN, argument, options, &resp);
316 uint32_t argument, options, ntry;
350 argument = addr;
355 res = send_cmd(handle, SD_CMD_READ_SINGLE_BLOCK, argument, options,
370 uint32_t argument, options, ntry;
402 argument = addr;
411 res = send_cmd(handle, SD_CMD_READ_MULTIPLE_BLOCK, argument, options,
460 uint32_t argument, options;
467 argument = start;
475 argument, options, &resp);
486 uint32_t argument, options;
493 argument = end;
501 argument, options, &resp);
512 uint32_t argument, options;
519 argument = 0;
526 res = send_cmd(handle, SD_CMD_ERASE, argument, options, &resp);
541 uint32_t argument, options, ntry;
574 argument = addr;
581 res = send_cmd(handle, SD_CMD_WRITE_BLOCK, argument, options, &resp);
595 uint32_t argument, options, ntry;
627 argument = addr;
637 argument, options, &resp);
648 int mmc_cmd6(struct sd_handle *handle, uint32_t argument)
657 EMMC_TRACE("Sending CMD6 with argument 0x%X\n", argument);
660 res = send_cmd(handle, SD_ACMD_SET_BUS_WIDTH, argument, options, &resp);
701 int send_cmd(struct sd_handle *handle, uint32_t cmdIndex, uint32_t argument,
738 handle->device->ctrl.argReg = argument;
801 cmdIndex, argument, present);