Lines Matching defs:image
1658 * il3945_verify_inst_full - verify runtime uCode image in card vs. host,
1662 il3945_verify_inst_full(struct il_priv *il, __le32 * image, u32 len)
1669 D_INFO("ucode inst image size is %u\n", len);
1674 for (; len > 0; len -= sizeof(u32), image++) {
1679 if (val != le32_to_cpu(*image)) {
1682 save_len - len, val, le32_to_cpu(*image));
1691 D_INFO("ucode image in INSTRUCTION memory is good\n");
1697 * il3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
1702 il3945_verify_inst_sparse(struct il_priv *il, __le32 * image, u32 len)
1709 D_INFO("ucode inst image size is %u\n", len);
1711 for (i = 0; i < len; i += 100, image += 100 / sizeof(u32)) {
1717 if (val != le32_to_cpu(*image)) {
1721 *image);
1734 * il3945_verify_ucode - determine which instruction image is in SRAM,
1740 __le32 *image;
1745 image = (__le32 *) il->ucode_boot.v_addr;
1747 rc = il3945_verify_inst_sparse(il, image, len);
1754 image = (__le32 *) il->ucode_init.v_addr;
1756 rc = il3945_verify_inst_sparse(il, image, len);
1763 image = (__le32 *) il->ucode_code.v_addr;
1765 rc = il3945_verify_inst_sparse(il, image, len);
1775 * Selection of bootstrap image (vs. other images) is arbitrary. */
1776 image = (__le32 *) il->ucode_boot.v_addr;
1778 rc = il3945_verify_inst_full(il, image, len);
1913 /* Verify size of file vs. image size info in file's header */
2069 /* Tell bootstrap uCode where to find image to load */
2102 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2112 /* Send pointers to protocol/runtime uCode image ... init code will
2148 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2391 /* Copy original ucode data image from disk into backup cache.