mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-12 09:54:53 +00:00
1b15cb21db
This adds support for Radxa ROCK Pi E, rockchip rk3328 board. Specification: - CPU: Rockchip RK3328 64-bit Quad-core - RAM: DDR3 256MB ~ 2GB - Network: 1 x 10/100/1000M Ethernet 1 x 10/100M Ethernet - Storage: 1 x MicroSD Slot 1 x eMMC Module Slot - USB Host/OTG: 1 x USB3.0 Type A HOST 1 x USB2.0 HOST (40-pin pin-header) - Wireless RTL8723DU/RTL8821CU - Debug Serial: 1500000 baud at UART2 ( 40-pin pin-header) - Power Supply: Type-C 5V Optionally PoE Installation: - Write image to SD Card or EMMC with dd - Boot ROCK Pi E from the SD Card Signed-off-by: Jayantajit Gogoi <jayanta.gogoi525@gmail.com>
108 lines
3.4 KiB
Makefile
108 lines
3.4 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2020 Tobias Maedel
|
|
|
|
# FIT will be loaded at 0x02080000. Leave 16M for that, align it to 2M and load the kernel after it.
|
|
KERNEL_LOADADDR := 0x03200000
|
|
|
|
define Device/firefly_roc-rk3328-cc
|
|
DEVICE_VENDOR := Firefly
|
|
DEVICE_MODEL := ROC-RK3328-CC
|
|
SOC := rk3328
|
|
DEVICE_DTS := rockchip/rk3328-roc-cc
|
|
UBOOT_DEVICE_NAME := roc-cc-rk3328
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
endef
|
|
TARGET_DEVICES += firefly_roc-rk3328-cc
|
|
|
|
define Device/friendlyarm_nanopc-t4
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPC T4
|
|
SOC := rk3399
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
DEVICE_PACKAGES := kmod-brcmfmac brcmfmac-nvram-4356-sdio cypress-firmware-4356-sdio
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopc-t4
|
|
|
|
define Device/friendlyarm_nanopi-r2c
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R2C
|
|
SOC := rk3328
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r2c
|
|
|
|
define Device/friendlyarm_nanopi-r2s
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R2S
|
|
SOC := rk3328
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r2s
|
|
|
|
define Device/friendlyarm_nanopi-r4s
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R4S
|
|
DEVICE_VARIANT := 4GB LPDDR4
|
|
SOC := rk3399
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
DEVICE_PACKAGES := kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r4s
|
|
|
|
define Device/pine64_rock64
|
|
DEVICE_VENDOR := Pine64
|
|
DEVICE_MODEL := Rock64
|
|
SOC := rk3328
|
|
UBOOT_DEVICE_NAME := rock64-rk3328
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
endef
|
|
TARGET_DEVICES += pine64_rock64
|
|
|
|
define Device/pine64_rockpro64
|
|
DEVICE_VENDOR := Pine64
|
|
DEVICE_MODEL := RockPro64
|
|
SOC := rk3399
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
endef
|
|
TARGET_DEVICES += pine64_rockpro64
|
|
|
|
define Device/radxa_rock-pi-4a
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK Pi 4A
|
|
SOC := rk3399
|
|
SUPPORTED_DEVICES := radxa,rockpi4a radxa,rockpi4
|
|
UBOOT_DEVICE_NAME := rock-pi-4-rk3399
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-pi-4a
|
|
|
|
define Device/radxa_rock-pi-e
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK Pi E
|
|
SOC := rk3328
|
|
UBOOT_DEVICE_NAME := rock-pi-e-rk3328
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-pi-e
|
|
|
|
define Device/xunlong_orangepi-r1-plus
|
|
DEVICE_VENDOR := Xunlong
|
|
DEVICE_MODEL := Orange Pi R1 Plus
|
|
SOC := rk3328
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += xunlong_orangepi-r1-plus
|
|
|
|
define Device/xunlong_orangepi-r1-plus-lts
|
|
DEVICE_VENDOR := Xunlong
|
|
DEVICE_MODEL := Orange Pi R1 Plus LTS
|
|
SOC := rk3328
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += xunlong_orangepi-r1-plus-lts
|