Lines Matching +full:0 +full:x77

27 	0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc,
28 0xc3, 0x3c, 0xcc, 0xff, 0xfe, 0xff, 0xfe, 0xef,
29 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xfb, 0xff, 0xfb,
30 0xbf, 0xff, 0x7f, 0xff, 0x77, 0xf7, 0xbd, 0xef,
31 0xff, 0xf0, 0xff, 0xf0, 0x0f, 0xfc, 0xcc, 0x3c,
32 0xcc, 0x33, 0xcc, 0xcf, 0xff, 0xef, 0xff, 0xee,
33 0xff, 0xfd, 0xff, 0xfd, 0xdf, 0xff, 0xbf, 0xff,
34 0xbb, 0xff, 0xf7, 0xff, 0xf7, 0x7f, 0x7b, 0xde,
38 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
39 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, 0xcc,
40 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, 0xff,
41 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff,
42 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd,
43 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xbb,
44 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff,
45 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, 0xff,
46 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00,
47 0x00, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc,
48 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff,
49 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee,
50 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd,
51 0xdd, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff,
52 0xbb, 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff,
53 0xff, 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee,
74 *status = cmd.resp[0]; in __mmc_send_status()
76 return 0; in __mmc_send_status()
96 cmd.arg = 0; in _mmc_select_card()
128 cmd.arg = (host->dsr << 16) | 0xffff; in mmc_set_dsr()
154 cmd.arg = 0; in mmc_go_idle()
157 err = mmc_wait_for_cmd(host, &cmd, 0); in mmc_go_idle()
166 host->use_spi_crc = 0; in mmc_go_idle()
174 int i, err = 0; in mmc_send_op_cond()
177 cmd.arg = mmc_host_is_spi(host) ? 0 : ocr; in mmc_send_op_cond()
181 err = mmc_wait_for_cmd(host, &cmd, 0); in mmc_send_op_cond()
187 if (!(cmd.resp[0] & R1_SPI_IDLE)) in mmc_send_op_cond()
190 if (cmd.resp[0] & MMC_CARD_BUSY) in mmc_send_op_cond()
206 cmd.arg = cmd.resp[0] | BIT(30); in mmc_send_op_cond()
210 *rocr = cmd.resp[0]; in mmc_send_op_cond()
242 return 0; in mmc_send_cxd_native()
262 cmd.arg = 0; in mmc_send_cxd_data()
284 data.timeout_ns = 0; in mmc_send_cxd_data()
296 return 0; in mmc_send_cxd_data()
312 for (i = 0; i < 4; i++) in mmc_spi_send_csd()
342 for (i = 0; i < 4; i++) in mmc_spi_send_cid()
355 return mmc_send_cxd_native(host, 0, cid, MMC_ALL_SEND_CID); in mmc_send_cid()
394 cmd.arg = highcap ? (1 << 30) : 0; in mmc_spi_read_ocr()
397 err = mmc_wait_for_cmd(host, &cmd, 0); in mmc_spi_read_ocr()
412 err = mmc_wait_for_cmd(host, &cmd, 0); in mmc_spi_set_crc()
430 return 0; in mmc_switch_status_error()
441 return 0; in mmc_switch_status()
452 u32 status = 0; in mmc_busy_status()
457 return 0; in mmc_busy_status()
463 return 0; in mmc_busy_status()
473 err = R1_STATUS(status) ? -EIO : 0; in mmc_busy_status()
485 return 0; in mmc_busy_status()
506 return 0; in __mmc_poll_for_busy()
536 return 0; in __mmc_poll_for_busy()
635 return __mmc_switch(card, set, index, value, timeout_ms, 0, in mmc_switch()
648 int size, err = 0; in mmc_send_tuning()
719 return 0; in mmc_abort_tuning()
730 return mmc_wait_for_cmd(host, &cmd, 0); in mmc_abort_tuning()
745 static u8 testdata_8bit[8] = { 0x55, 0xaa, 0, 0, 0, 0, 0, 0 }; in mmc_send_bus_test()
746 static u8 testdata_4bit[4] = { 0x5a, 0, 0, 0 }; in mmc_send_bus_test()
772 cmd.arg = 0; in mmc_send_bus_test()
793 err = 0; in mmc_send_bus_test()
795 for (i = 0; i < len / 4; i++) in mmc_send_bus_test()
796 if ((test_buf[i] ^ data_buf[i]) != 0xff) { in mmc_send_bus_test()
820 return 0; /* no need for test */ in mmc_bus_test()
859 err = mmc_wait_for_cmd(host, &cmd, 0); in mmc_send_hpi_cmd()
862 mmc_hostname(host), err, cmd.resp[0]); in mmc_send_hpi_cmd()
868 return 0; in mmc_send_hpi_cmd()
939 return 0; in mmc_read_bkops_status()
989 int err = 0; in mmc_flush_cache()
992 (card->ext_csd.cache_size > 0) && in mmc_flush_cache()
1008 u8 val = enable ? EXT_CSD_CMDQ_MODE_ENABLED : 0; in mmc_cmdq_switch()