Lines Matching defs:image

1650  * il3945_verify_inst_full - verify runtime uCode image in card vs. host,
1654 il3945_verify_inst_full(struct il_priv *il, __le32 * image, u32 len)
1661 D_INFO("ucode inst image size is %u\n", len);
1666 for (; len > 0; len -= sizeof(u32), image++) {
1671 if (val != le32_to_cpu(*image)) {
1674 save_len - len, val, le32_to_cpu(*image));
1683 D_INFO("ucode image in INSTRUCTION memory is good\n");
1689 * il3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
1694 il3945_verify_inst_sparse(struct il_priv *il, __le32 * image, u32 len)
1701 D_INFO("ucode inst image size is %u\n", len);
1703 for (i = 0; i < len; i += 100, image += 100 / sizeof(u32)) {
1709 if (val != le32_to_cpu(*image)) {
1713 *image);
1726 * il3945_verify_ucode - determine which instruction image is in SRAM,
1732 __le32 *image;
1737 image = (__le32 *) il->ucode_boot.v_addr;
1739 rc = il3945_verify_inst_sparse(il, image, len);
1746 image = (__le32 *) il->ucode_init.v_addr;
1748 rc = il3945_verify_inst_sparse(il, image, len);
1755 image = (__le32 *) il->ucode_code.v_addr;
1757 rc = il3945_verify_inst_sparse(il, image, len);
1767 * Selection of bootstrap image (vs. other images) is arbitrary. */
1768 image = (__le32 *) il->ucode_boot.v_addr;
1770 rc = il3945_verify_inst_full(il, image, len);
1905 /* Verify size of file vs. image size info in file's header */
2061 /* Tell bootstrap uCode where to find image to load */
2094 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2104 /* Send pointers to protocol/runtime uCode image ... init code will
2140 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2383 /* Copy original ucode data image from disk into backup cache.