mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 17:42:41 +00:00
ipq807x: add edgecore eap104 support
Fixes: WIFI-7117 Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
2
.github/workflows/build-dev.yml
vendored
2
.github/workflows/build-dev.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target: ['actiontec_web7200', 'cig_wf188n', 'cig_wf194c', 'cig_wf194c4', 'cig_wf160d', 'cig_wf808', 'cybertan_eww622-a1', 'edgecore_eap101', 'edgecore_eap102', 'edgecore_ecs4100-12ph', 'edgecore_ecw5211', 'edgecore_ecw5410', 'edgecore_oap100', 'edgecore_ssw2ac2600', 'edgecore_spw2ac1200', 'edgecore_spw2ac1200-lan-poe', 'hfcl_ion4', 'hfcl_ion4xe', 'hfcl_ion4xi', 'indio_um-305ac', 'linksys_ea6350-v4', 'linksys_e8450-ubi', 'linksys_ea8300', 'tp-link_ec420-g1', 'tplink_ex227', 'tplink_ex228', 'tplink_ex447', 'wallys_dr40x9', 'wallys_dr6018', 'wallys_dr6018_v4' ]
|
||||
target: ['actiontec_web7200', 'cig_wf188n', 'cig_wf194c', 'cig_wf194c4', 'cig_wf160d', 'cig_wf808', 'cybertan_eww622-a1', 'edgecore_eap101', 'edgecore_eap102', 'edgecore_eap104', 'edgecore_ecs4100-12ph', 'edgecore_ecw5211', 'edgecore_ecw5410', 'edgecore_oap100', 'edgecore_ssw2ac2600', 'edgecore_spw2ac1200', 'edgecore_spw2ac1200-lan-poe', 'hfcl_ion4', 'hfcl_ion4xe', 'hfcl_ion4xi', 'indio_um-305ac', 'linksys_ea6350-v4', 'linksys_e8450-ubi', 'linksys_ea8300', 'tp-link_ec420-g1', 'tplink_ex227', 'tplink_ex228', 'tplink_ex447', 'wallys_dr40x9', 'wallys_dr6018', 'wallys_dr6018_v4' ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
@@ -37,6 +37,9 @@ define Package/cc2652/install
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_BIN) ./files/tisbl.config $(1)/etc/config/tisbl
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||
$(INSTALL_BIN) ./files/tisbl.defaults $(1)/etc/uci-defaults
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,cc2652))
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
config tisbl 'tisbl'
|
||||
option firmware '/etc/tifirmware/ble5_host_test_bd9.bin'
|
||||
option tty '/dev/ttyMSM1' # for EAP101 board
|
||||
# option tty '/dev/ttyACM0' # for virtualbox openwrt 19.07 with TI CC26X2R launchpad
|
||||
option tichip '2652'
|
||||
option baudrate '115200'
|
||||
option resetpin '79'
|
||||
option backdoorpin '34' #EAP101-R1
|
||||
# option backdoorpin '67' #EAP101-R0A-HW-modification
|
||||
option firmware '/etc/tifirmware/ble5_host_test_bd9.bin'
|
||||
option tty '/dev/ttyMSM1'
|
||||
option tichip '2652'
|
||||
option baudrate '115200'
|
||||
option resetpin '79'
|
||||
option backdoorpin '34'
|
||||
|
||||
13
feeds/bluetooth-cc2652/cc2652/files/tisbl.defaults
Executable file
13
feeds/bluetooth-cc2652/cc2652/files/tisbl.defaults
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/system.sh
|
||||
|
||||
board=$(board_name)
|
||||
|
||||
case $board in
|
||||
edgecore,eap104)
|
||||
uci set tisbl.tisbl.backdoorpin=31
|
||||
uci set tisbl.tisbl.resetpin=35
|
||||
;;
|
||||
esac
|
||||
@@ -17,9 +17,6 @@ cig,wf194c4)
|
||||
ucidef_set_led_wlan "wlan5g" "WLAN5G" "green:wifi5" "phy0tpt"
|
||||
ucidef_set_led_wlan "wlan2g" "WLAN2G" "green:wifi2" "phy1tpt"
|
||||
;;
|
||||
esac
|
||||
|
||||
case "$board" in
|
||||
edgecore,eap101)
|
||||
ucidef_set_led_wlan "wlan5g" "WLAN5G" "green:wifi5" "phy0tpt"
|
||||
ucidef_set_led_wlan "wlan2g" "WLAN2G" "green:wifi2" "phy1tpt"
|
||||
@@ -32,6 +29,11 @@ edgecore,eap102)
|
||||
ucidef_set_led_wlan "wlan5g" "WLAN5G" "green:wifi5" "phy0tpt"
|
||||
ucidef_set_led_wlan "wlan2g" "WLAN2G" "green:wifi2" "phy1tpt"
|
||||
;;
|
||||
edgecore,eap104)
|
||||
ucidef_set_led_wlan "wlan2g" "WLAN2G" "green:wifi2" "phy0tpt"
|
||||
ucidef_set_led_wlan "wlan5g" "WLAN5G" "green:wifi5" "phy1tpt"
|
||||
ucidef_set_led_netdev "wan" "wan" "yellow:uplink" "eth0"
|
||||
;;
|
||||
hfcl,ion4xi|\
|
||||
hfcl,ion4xe)
|
||||
ucidef_set_led_wlan "wlan5g" "WLAN5G" "blue:wifi5" "phy0tpt"
|
||||
|
||||
@@ -41,6 +41,7 @@ qcom_setup_interfaces()
|
||||
ucidef_set_interface_wan "eth0"
|
||||
;;
|
||||
edgecore,eap102|\
|
||||
edgecore,eap104|\
|
||||
wallys,dr6018|\
|
||||
cig,wf188n|\
|
||||
cig,wf196)
|
||||
|
||||
@@ -104,11 +104,19 @@ case "$FIRMWARE" in
|
||||
ath11k/IPQ5018/hw1.0/caldata.bin)
|
||||
case "$board" in
|
||||
cybertan,eww622-a1|\
|
||||
edgecore,eap104|\
|
||||
qcom,ipq5018-mp03.1)
|
||||
caldata_extract "0:ART" 0x1000 0x20000
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
ath11k/qcn6122/hw1.0/caldata_2.bin)
|
||||
case "$board" in
|
||||
edgecore,eap104)
|
||||
caldata_extract "0:ART" 0x4c000 0x20000
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
ath11k/QCN9074/hw1.0/caldata_1.bin)
|
||||
case "$board" in
|
||||
cig,wf196|\
|
||||
|
||||
@@ -30,6 +30,7 @@ platform_check_image() {
|
||||
wallys,dr6018-v4|\
|
||||
edgecore,eap101|\
|
||||
edgecore,eap102|\
|
||||
edgecore,eap104|\
|
||||
edgecore,eap106|\
|
||||
hfcl,ion4xi|\
|
||||
hfcl,ion4xe|\
|
||||
@@ -60,6 +61,7 @@ platform_do_upgrade() {
|
||||
cig,wf194c4|\
|
||||
cig,wf196|\
|
||||
cybertan,eww622-a1|\
|
||||
edgecore,eap104|\
|
||||
hfcl,ion4xi|\
|
||||
hfcl,ion4xe|\
|
||||
qcom,ipq6018-cp01|\
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "../../../arm64/boot/dts/qcom/qcom-ipq5018-eap104.dts"
|
||||
|
||||
/ {
|
||||
pmuv8: pmu {
|
||||
compatible = "arm,cortex-a7-pmu";
|
||||
};
|
||||
};
|
||||
1015
feeds/ipq807x/ipq807x/files/arch/arm64/boot/dts/qcom/qcom-ipq5018-eap104.dts
Executable file
1015
feeds/ipq807x/ipq807x/files/arch/arm64/boot/dts/qcom/qcom-ipq5018-eap104.dts
Executable file
File diff suppressed because it is too large
Load Diff
@@ -9,6 +9,15 @@ define Device/cybertan_eww622_a1
|
||||
endef
|
||||
TARGET_DEVICES += cybertan_eww622_a1
|
||||
|
||||
define Device/edgecore_eap104
|
||||
DEVICE_TITLE := EdgeCore EAP104
|
||||
DEVICE_DTS := qcom-ipq5018-eap104
|
||||
SUPPORTED_DEVICES := edgecore,eap104
|
||||
DEVICE_PACKAGES := ath11k-wifi-edgecore-eap104 ath11k-firmware-ipq50xx-spruce ath11k-firmware-qcn6122
|
||||
DEVICE_DTS_CONFIG := config@mp03.5-c1
|
||||
endef
|
||||
TARGET_DEVICES += edgecore_eap104
|
||||
|
||||
define Device/qcom_mp03_1
|
||||
DEVICE_TITLE := Qualcomm Maple 03.1
|
||||
DEVICE_DTS := qcom-ipq5018-mp03.1
|
||||
|
||||
@@ -3,7 +3,7 @@ SUBTARGET:=ipq50xx
|
||||
BOARDNAME:=IPQ50XX
|
||||
CPU_TYPE:=cortex-a7
|
||||
|
||||
DEFAULT_PACKAGES += ath11k-firmware-ipq50xx qca-nss-fw-ipq50xx
|
||||
DEFAULT_PACKAGES += qca-nss-fw-ipq50xx
|
||||
|
||||
define Target/Description
|
||||
Build firmware image for IPQ50xx SoC devices.
|
||||
|
||||
14
feeds/ipq807x/ipq807x/patches/108-add-W25N01GW.patch
Normal file
14
feeds/ipq807x/ipq807x/patches/108-add-W25N01GW.patch
Normal file
@@ -0,0 +1,14 @@
|
||||
Index: linux-4.4.60-qsdk-11f09717303ecd83c3a64e9efe23f25921dc1016/drivers/mtd/nand/qcom_nandc.c
|
||||
===================================================================
|
||||
--- linux-4.4.60-qsdk-11f09717303ecd83c3a64e9efe23f25921dc1016.orig/drivers/mtd/nand/qcom_nandc.c
|
||||
+++ linux-4.4.60-qsdk-11f09717303ecd83c3a64e9efe23f25921dc1016/drivers/mtd/nand/qcom_nandc.c
|
||||
@@ -405,6 +405,9 @@ struct nand_flash_dev qspinand_flash_ids
|
||||
{"MX35UF1GE4AC SPI NAND 1G 1.8V",
|
||||
{ .id = {0xc2, 0x92} },
|
||||
SZ_2K, SZ_128, SZ_128K, 0, 2, 64, NAND_ECC_INFO(4, SZ_512), 0},
|
||||
+ {"W25N01GW SPI NAND 1.8V 1G-BIT",
|
||||
+ { .id = {0xef, 0xba} },
|
||||
+ SZ_2K, SZ_128, SZ_128K, 0, 2, 64, NAND_ECC_INFO(4, SZ_512), 0},
|
||||
{NULL}
|
||||
};
|
||||
|
||||
@@ -6,7 +6,7 @@ PKG_RELEASE:=1
|
||||
PKG_SOURCE_URL=https://github.com/blogic/ucentral-schema.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_DATE:=2022-01-17
|
||||
PKG_SOURCE_VERSION:=07cb6e9fc7a4a8f9868e6efd29edcaf1f3245716
|
||||
PKG_SOURCE_VERSION:=b8fdfb157fdb85b69e5456f84992a1a70e33ad7a
|
||||
|
||||
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
||||
PKG_LICENSE:=BSD-3-Clause
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
"radios": [
|
||||
{
|
||||
"band": "2G",
|
||||
"country": "CA",
|
||||
"country": "US",
|
||||
"channel-mode": "HE",
|
||||
"channel-width": 40
|
||||
}, {
|
||||
"band": "5G",
|
||||
"country": "CA",
|
||||
"country": "US",
|
||||
"channel-mode": "HE",
|
||||
"channel-width": 80
|
||||
}
|
||||
|
||||
@@ -20,6 +20,12 @@ $(Package/ath11k-firmware-default)
|
||||
DEPENDS:=@TARGET_ipq807x_ipq50xx
|
||||
endef
|
||||
|
||||
define Package/ath11k-firmware-ipq50xx-spruce
|
||||
$(Package/ath11k-firmware-default)
|
||||
TITLE:=ath11k firmware for IPQ50xx devices with spruce
|
||||
DEPENDS:=@TARGET_ipq807x_ipq50xx
|
||||
endef
|
||||
|
||||
define Package/ath11k-firmware-ipq60xx
|
||||
$(Package/ath11k-firmware-default)
|
||||
TITLE:=ath11k firmware for IPQ60xx devices
|
||||
@@ -48,6 +54,10 @@ define Package/ath11k-firmware-ipq50xx/description
|
||||
Standard ath11k firmware for IPQ50xx from QCA
|
||||
endef
|
||||
|
||||
define Package/ath11k-firmware-ipq50xx-spruce/description
|
||||
Standard ath11k firmware for IPQ50xx/spruce from QCA
|
||||
endef
|
||||
|
||||
define Package/ath11k-firmware-ipq60xx/description
|
||||
Standard ath11k firmware for IPQ60xx from QCA
|
||||
endef
|
||||
@@ -74,6 +84,12 @@ define Package/ath11k-firmware-ipq50xx/install
|
||||
$(1)/lib/firmware/IPQ5018/
|
||||
endef
|
||||
|
||||
define Package/ath11k-firmware-ipq50xx-spruce/install
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/IPQ5018
|
||||
$(INSTALL_DATA) ./files/IPQ5018_spruce/* \
|
||||
$(1)/lib/firmware/IPQ5018/
|
||||
endef
|
||||
|
||||
define Package/ath11k-firmware-ipq60xx/install
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/IPQ6018
|
||||
$(INSTALL_DATA) ./files/IPQ6018/* \
|
||||
@@ -87,6 +103,7 @@ define Package/ath11k-firmware-ipq807x/install
|
||||
endef
|
||||
|
||||
define Package/ath11k-firmware-qcn6122/install
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/ath11k/qcn6122
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/qcn6122
|
||||
$(INSTALL_DATA) ./files/QCN6122/* \
|
||||
$(1)/lib/firmware/qcn6122/
|
||||
@@ -99,6 +116,7 @@ define Package/ath11k-firmware-qcn9000/install
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,ath11k-firmware-ipq50xx))
|
||||
$(eval $(call BuildPackage,ath11k-firmware-ipq50xx-spruce))
|
||||
$(eval $(call BuildPackage,ath11k-firmware-ipq60xx))
|
||||
$(eval $(call BuildPackage,ath11k-firmware-ipq807x))
|
||||
$(eval $(call BuildPackage,ath11k-firmware-qcn6122))
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
WLAN.HK.2.5.r4-00745-QCAHKSWPL_SILICONZ-1 v1
|
||||
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/m3_fw.b00
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/m3_fw.b00
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/m3_fw.b01
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/m3_fw.b01
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/m3_fw.b02
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/m3_fw.b02
Normal file
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/m3_fw.b00
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/m3_fw.b01
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/m3_fw.b02
|
||||
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/m3_fw.mdt
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/m3_fw.mdt
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/mpnv10.bin
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/mpnv10.bin
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b00
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b00
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b01
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b01
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b02
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b02
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b03
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b03
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b04
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b04
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b05
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b05
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b07
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b07
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b08
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b08
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b09
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b09
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b10
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b10
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b11
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b11
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b13
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b13
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b14
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b14
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b15
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b15
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b16
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b16
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b17
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b17
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b18
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b18
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b20
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b20
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b21
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b21
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b22
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b22
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b23
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b23
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b25
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b25
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b26
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.b26
Normal file
Binary file not shown.
@@ -0,0 +1,23 @@
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b00
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b01
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b02
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b03
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b04
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b05
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b07
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b08
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b09
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b10
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b11
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b13
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b14
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b15
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b16
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b17
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b18
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b20
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b21
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b22
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b23
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b25
|
||||
build/ms/bin/5018.wlanfw2.map_spr_spr_eval_cs/PIL_IMAGES/q6_fw.b26
|
||||
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.mdt
Normal file
BIN
feeds/wifi-ax/ath11k-firmware/files/IPQ5018_spruce/q6_fw.mdt
Normal file
Binary file not shown.
@@ -33,6 +33,7 @@ ALLWIFIBOARDS:= \
|
||||
edgecore-eap101 \
|
||||
sercomm-wallaby \
|
||||
edgecore-eap102 \
|
||||
edgecore-eap104 \
|
||||
wallys-dr6018 \
|
||||
wallys-dr6018-v4 \
|
||||
tplink-ex227 \
|
||||
@@ -96,6 +97,9 @@ define ath11k-wifi-install-one
|
||||
$(if $(filter $(suffix $(1)),.QCN9074),\
|
||||
$(call ath11k-wifi-install-one-to,$(1),$(2),ath11k/QCN9074/hw1.0/),\
|
||||
)
|
||||
$(if $(filter $(suffix $(1)),.QCN6122),\
|
||||
$(call ath11k-wifi-install-one-to,$(1),$(2),ath11k/qcn6122/hw1.0/),\
|
||||
)
|
||||
|
||||
endef
|
||||
# Blank line required at end of above define due to foreach context
|
||||
@@ -168,6 +172,7 @@ $(eval $(call generate-ath11k-wifi-package,wallys-dr6018,Wallys DR6018))
|
||||
$(eval $(call generate-ath11k-wifi-package,wallys-dr6018-v4,Wallys DR6018 V4))
|
||||
$(eval $(call generate-ath11k-wifi-package,edgecore-eap101,EdgeCore EAP101))
|
||||
$(eval $(call generate-ath11k-wifi-package,edgecore-eap102,Edgecore EAP102))
|
||||
$(eval $(call generate-ath11k-wifi-package,edgecore-eap104,Edgecore EAP104))
|
||||
$(eval $(call generate-ath11k-wifi-package,tplink-ex227,TP-Link EX227))
|
||||
$(eval $(call generate-ath11k-wifi-package,tplink-ex447,TP-Link EX447))
|
||||
|
||||
|
||||
BIN
feeds/wifi-ax/ath11k-wifi/board-edgecore-eap104.bin.IPQ5018
Normal file
BIN
feeds/wifi-ax/ath11k-wifi/board-edgecore-eap104.bin.IPQ5018
Normal file
Binary file not shown.
BIN
feeds/wifi-ax/ath11k-wifi/board-edgecore-eap104.bin.QCN6122
Normal file
BIN
feeds/wifi-ax/ath11k-wifi/board-edgecore-eap104.bin.QCN6122
Normal file
Binary file not shown.
20
profiles/edgecore_eap104.yml
Normal file
20
profiles/edgecore_eap104.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
profile: edgecore_eap104
|
||||
target: ipq807x
|
||||
subtarget: ipq50xx
|
||||
description: Build image for the EdgeCore EAP104
|
||||
image: bin/targets/ipq807x/ipq807x/openwrt-ipq807x-edgecore_eap104-squashfs-sysupgrade.tar
|
||||
feeds:
|
||||
- name: ipq807x
|
||||
path: ../../feeds/ipq807x
|
||||
- name: bluetooth_cc2652
|
||||
path: ../../feeds/bluetooth-cc2652
|
||||
include:
|
||||
- wifi-ax
|
||||
- ucentral-ap
|
||||
packages:
|
||||
- cc2652
|
||||
diffconfig: |
|
||||
CONFIG_KERNEL_IPQ_MEM_PROFILE=512
|
||||
CONFIG_BUSYBOX_CUSTOM=y
|
||||
CONFIG_BUSYBOX_CONFIG_STTY=y
|
||||
Reference in New Issue
Block a user