Lines Matching defs:netlist

628  * ice_read_netlist_module - Read data from the netlist module area
631 * @offset: offset into the netlist to read from
634 * Read a word from the specified netlist bank.
1029 * @netlist: pointer to netlist version info structure
1031 * Get the netlist version information from the requested bank. Reads the Link
1033 * information into the netlist version structure.
1037 struct ice_netlist_info *netlist)
1048 ice_debug(hw, ICE_DBG_NVM, "Expected netlist module_id ID of 0x%04x, but got 0x%04x\n",
1057 /* sanity check that we have at least enough words to store the netlist ID block */
1083 netlist->major = id_blk[ICE_NETLIST_ID_BLK_MAJOR_VER_HIGH] << 16 |
1085 netlist->minor = id_blk[ICE_NETLIST_ID_BLK_MINOR_VER_HIGH] << 16 |
1087 netlist->type = id_blk[ICE_NETLIST_ID_BLK_TYPE_HIGH] << 16 |
1089 netlist->rev = id_blk[ICE_NETLIST_ID_BLK_REV_HIGH] << 16 |
1091 netlist->cust_ver = id_blk[ICE_NETLIST_ID_BLK_CUST_VER];
1093 netlist->hash = id_blk[ICE_NETLIST_ID_BLK_SHA_HASH_WORD(15)] << 16 |
1105 * @netlist: pointer to netlist version info structure
1107 * Get the netlist version information
1109 enum ice_status ice_get_netlist_ver_info(struct ice_hw *hw, struct ice_netlist_info *netlist)
1111 return ice_get_netlist_info(hw, ICE_ACTIVE_FLASH_BANK, netlist);
1117 * @netlist: pointer to netlist version info structure
1119 * Read the netlist version data from the inactive netlist bank. Used to
1123 enum ice_status ice_get_inactive_netlist_ver(struct ice_hw *hw, struct ice_netlist_info *netlist)
1125 return ice_get_netlist_info(hw, ICE_INACTIVE_FLASH_BANK, netlist);
1382 /* read the netlist version information */
1383 status = ice_get_netlist_info(hw, ICE_ACTIVE_FLASH_BANK, &flash->netlist);
1385 ice_debug(hw, ICE_DBG_INIT, "Failed to read netlist info.\n");