mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2026-06-11 04:37:26 -04:00
Add PCIe controller and PHY support for EN7528 SoC. This includes a new PCIe PHY driver, EN7528-specific startup in the MediaTek PCIe controller, and a fix for bogus prefetch window reads on bridges that do not implement the registers. Enable WiFi for the DASAN H660GM-A board with MT7603 (2.4 GHz) and MT7615/MT7663 (5 GHz). Signed-off-by: Ahmed Naseef <naseefkm@gmail.com> Link: https://github.com/openwrt/openwrt/pull/21326 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
20 lines
504 B
Makefile
20 lines
504 B
Makefile
TRX_ENDIAN := le
|
|
|
|
define Device/en7528_generic
|
|
DEVICE_VENDOR := EN7528
|
|
DEVICE_MODEL := Generic
|
|
DEVICE_DTS := en7528_generic
|
|
endef
|
|
TARGET_DEVICES += en7528_generic
|
|
|
|
define Device/dasan_h660gm-a
|
|
DEVICE_VENDOR := DASAN
|
|
DEVICE_MODEL := H660GM-A
|
|
DEVICE_DTS := en7528_dasan_h660gm-a
|
|
DEVICE_PACKAGES := kmod-mt7603 kmod-mt7615e kmod-mt7663-firmware-ap
|
|
TRX_MODEL := Dewberry
|
|
IMAGES := tclinux.trx
|
|
IMAGE/tclinux.trx := append-kernel | lzma | tclinux-trx
|
|
endef
|
|
TARGET_DEVICES += dasan_h660gm-a
|