Check if reset has been triggered by PF */
| 1831 | |
| 1832 | /* Check if reset has been triggered by PF */ |
| 1833 | static inline bool |
| 1834 | ice_dcf_is_reset(struct rte_eth_dev *dev) |
| 1835 | { |
| 1836 | struct ice_dcf_adapter *ad = dev->data->dev_private; |
| 1837 | struct iavf_hw *hw = &ad->real_hw.avf; |
| 1838 | |
| 1839 | return !(IAVF_READ_REG(hw, IAVF_VF_ARQLEN1) & |
| 1840 | IAVF_VF_ARQLEN1_ARQENABLE_MASK); |
| 1841 | } |
| 1842 | |
| 1843 | static int |
| 1844 | ice_dcf_dev_reset(struct rte_eth_dev *dev) |