qcacmn: Add support for QCA6490
Add the following support for QCA6490: 1. Initialize the qca6490_hal_hw_txrx_ops 2. Initialize the hw_srng_table 3. Attach hal_qca6490_attach Change-Id: Ic53c520ef804eb4fbe1434c704e9040c83011d3d CRs-Fixed: 2522133
This commit is contained in:

committed by
nshrivas

parent
5c5d409000
commit
e69c9c2ac0
@@ -33,6 +33,9 @@ void hal_qca8074v2_attach(struct hal_soc *hal);
|
||||
#ifdef QCA_WIFI_QCA6390
|
||||
void hal_qca6390_attach(struct hal_soc *hal);
|
||||
#endif
|
||||
#ifdef QCA_WIFI_QCA6490
|
||||
void hal_qca6490_attach(struct hal_soc *hal);
|
||||
#endif
|
||||
#ifdef QCA_WIFI_QCN9000
|
||||
void hal_qcn9000_attach(struct hal_soc *hal);
|
||||
#endif
|
||||
@@ -246,6 +249,12 @@ static void hal_target_based_configure(struct hal_soc *hal)
|
||||
hal_qca6390_attach(hal);
|
||||
break;
|
||||
#endif
|
||||
#ifdef QCA_WIFI_QCA6490
|
||||
case TARGET_TYPE_QCA6490:
|
||||
hal->use_register_windowing = true;
|
||||
hal_qca6490_attach(hal);
|
||||
break;
|
||||
#endif
|
||||
#if defined(QCA_WIFI_QCA8074) && defined(WIFI_TARGET_TYPE_3_0)
|
||||
case TARGET_TYPE_QCA8074:
|
||||
hal_qca8074_attach(hal);
|
||||
|
Reference in New Issue
Block a user