Bug fix for SAP in 6G/WPA3_SAE mode

To enable SAP properly at 6G:
1) enable 11AX compilation flag if WIFI_FEATURE_HOSTAPD_11AX is set
(will be set on a per device basis)
2) set sae_pwe = 1 (hash-to-element only) for 6G band only mode and
sae_pwe = 2 for other modes (both hunting-and-pecking loop and
hash-to-element enabled) when WPA3_SAE mode is enabled

Bug: 168348861
Test: manual test with SAP and clients in 6G/WPA3_SAE mode, 5G/OPEN, 5G/WPA2, 5G/WPA3_SAE modes.
Change-Id: I9b72f98a9da96a4814f45f3df2dfcb0dd71e3a6f
diff --git a/hostapd/android.config b/hostapd/android.config
index bf21fc6..be56ad5 100644
--- a/hostapd/android.config
+++ b/hostapd/android.config
@@ -132,6 +132,11 @@
 # IEEE 802.11ac (Very High Throughput) support
 CONFIG_IEEE80211AC=y
 
+# IEEE 802.11ax (High Efficiency) support
+ifeq ($(WIFI_FEATURE_HOSTAPD_11AX), true)
+CONFIG_IEEE80211AX=y
+endif
+
 # Remove debugging code that is printing out debug messages to stdout.
 # This can be used to reduce the size of the hostapd considerably if debugging
 # code is not needed.