mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-13 15:56:55 +00:00
Introduce support for the Qualcomm IPQ50xx SoC. This series adds support for the following components: - minimal boot support: GCC/pinctrl/watchdog/CPUFreq/SDI (upstreamed) - USB2 (upstreamed) - Thermal/Tsens - PCIe gen2 1&2-lane PHY and controller - PWM and PWM LED - QPIC SPI NAND controller - CMN PLL Block (provider of fixed rate clocks to GCC/ethernet/more.) - Ethernet: IPQ5018 Internal GE PHY (1 gbps) - Remoteproc MPD driver for IPQ5018 (2.4G) & QCN6122 (5/6G) Wifi Co-developed-by: Ziyang Huang <hzyitc@outlook.com> Signed-off-by: Ziyang Huang <hzyitc@outlook.com> Signed-off-by: George Moussalem <george.moussalem@outlook.com> Link: https://github.com/openwrt/openwrt/pull/17182 Signed-off-by: Robert Marko <robimarko@gmail.com>
22 lines
525 B
Makefile
22 lines
525 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=aarch64
|
|
BOARD:=qualcommax
|
|
BOARDNAME:=Qualcomm Atheros 802.11ax WiSoC-s
|
|
FEATURES:=squashfs ramdisk fpu nand rtc emmc
|
|
KERNELNAME:=Image
|
|
CPU_TYPE:=cortex-a53
|
|
SUBTARGETS:=ipq807x ipq60xx ipq50xx
|
|
|
|
KERNEL_PATCHVER:=6.6
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
DEFAULT_PACKAGES += \
|
|
kmod-usb3 kmod-usb-dwc3 kmod-usb-dwc3-qcom \
|
|
kmod-leds-gpio kmod-gpio-button-hotplug \
|
|
kmod-qca-nss-dp kmod-ath11k-ahb \
|
|
wpad-basic-mbedtls uboot-envtools \
|
|
e2fsprogs kmod-fs-ext4 losetup
|
|
|
|
$(eval $(call BuildTarget))
|