1 /* 2 * aQuantia Corporation Network Driver 3 * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms and conditions of the GNU General Public License, 7 * version 2, as published by the Free Software Foundation. 8 */ 9 10 /* File hw_atl_b0.h: Declaration of abstract interface for Atlantic hardware 11 * specific functions. 12 */ 13 14 #ifndef HW_ATL_B0_H 15 #define HW_ATL_B0_H 16 17 #include "../aq_common.h" 18 19 extern const struct aq_hw_caps_s hw_atl_b0_caps_aqc100; 20 extern const struct aq_hw_caps_s hw_atl_b0_caps_aqc107; 21 extern const struct aq_hw_caps_s hw_atl_b0_caps_aqc108; 22 extern const struct aq_hw_caps_s hw_atl_b0_caps_aqc109; 23 24 #define hw_atl_b0_caps_aqc111 hw_atl_b0_caps_aqc108 25 #define hw_atl_b0_caps_aqc112 hw_atl_b0_caps_aqc109 26 27 #define hw_atl_b0_caps_aqc100s hw_atl_b0_caps_aqc100 28 #define hw_atl_b0_caps_aqc107s hw_atl_b0_caps_aqc107 29 #define hw_atl_b0_caps_aqc108s hw_atl_b0_caps_aqc108 30 #define hw_atl_b0_caps_aqc109s hw_atl_b0_caps_aqc109 31 32 #define hw_atl_b0_caps_aqc111s hw_atl_b0_caps_aqc108 33 #define hw_atl_b0_caps_aqc112s hw_atl_b0_caps_aqc109 34 35 #define hw_atl_b0_caps_aqc111e hw_atl_b0_caps_aqc108 36 #define hw_atl_b0_caps_aqc112e hw_atl_b0_caps_aqc109 37 38 extern const struct aq_hw_ops hw_atl_ops_b0; 39 40 #define hw_atl_ops_b1 hw_atl_ops_b0 41 42 #endif /* HW_ATL_B0_H */ 43