Lines Matching +full:0 +full:xff
18 K_SEM_DEFINE(card_sem, 0, 1);
26 zassert_equal(ret, 0, "SDHC host props api call failed"); in sdhc_power_on()
36 zassert_equal(ret, 0, "Setting io configuration failed"); in sdhc_power_on()
49 zassert_equal(ret, 0, "SDHC HW reset failed"); in ZTEST()
59 /* Set all host properties to 0xFF */ in ZTEST()
60 props.f_max = 0xFF; in ZTEST()
61 props.f_min = 0xFF; in ZTEST()
62 props.power_delay = 0xFF; in ZTEST()
63 props.max_current_330 = 0xFF; in ZTEST()
64 props.max_current_300 = 0xFF; in ZTEST()
65 props.max_current_180 = 0xFF; in ZTEST()
67 zassert_equal(ret, 0, "SDHC host props api call failed"); in ZTEST()
69 zassert_not_equal(props.f_max, 0xFF, "props structure not initialized"); in ZTEST()
70 zassert_not_equal(props.f_min, 0xFF, "props structure not initialized"); in ZTEST()
71 zassert_not_equal(props.power_delay, 0xFF, "props structure not initialized"); in ZTEST()
72 zassert_not_equal(props.max_current_330, 0xFF, "props structure not initialized"); in ZTEST()
73 zassert_not_equal(props.max_current_300, 0xFF, "props structure not initialized"); in ZTEST()
74 zassert_not_equal(props.max_current_180, 0xFF, "props structure not initialized"); in ZTEST()
92 zassert_equal(ret, 0, "IO configuration failed"); in ZTEST()
100 zassert_not_equal(ret, 0, "Invalid io configuration should not succeed"); in ZTEST()
124 if (ret == 0) { in ZTEST()
129 zassert_equal(ret, 0, "Could not install card insertion interrupt"); in ZTEST()
134 zassert_equal(ret, 0, "Card insertion interrupt did not fire"); in ZTEST()
155 zassert_equal(ret, 0, "Setting io configuration failed"); in ZTEST()
159 zassert_equal(ret, 0, "Setting io configuration failed"); in ZTEST()
163 memset(&cmd, 0, sizeof(struct sdhc_command)); in ZTEST()
169 zassert_equal(ret, 0, "Card reset command failed"); in ZTEST()
179 zassert_equal(ret, 0, "Read Interface condition failed"); in ZTEST()
183 resp = cmd.response[0]; in ZTEST()
185 if ((resp & 0xFF) == check_pattern) { in ZTEST()
190 } else if (resp & 0x4) { in ZTEST()