mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
mvebu: add support for QNAP QHora-321/322 with commo image
This commit is contained in:
parent
57c907ddb6
commit
a459786ac2
@ -7,9 +7,11 @@ board_config_update
|
|||||||
board=$(board_name)
|
board=$(board_name)
|
||||||
|
|
||||||
case "$board" in
|
case "$board" in
|
||||||
|
qnap,qhora-321|\
|
||||||
iei,puzzle-m901)
|
iei,puzzle-m901)
|
||||||
ucidef_set_led_netdev "wan" "WAN" "white:network" "eth0" "link"
|
ucidef_set_led_netdev "wan" "WAN" "white:network" "eth0" "link"
|
||||||
;;
|
;;
|
||||||
|
qnap,qhora-322|\
|
||||||
iei,puzzle-m902)
|
iei,puzzle-m902)
|
||||||
ucidef_set_led_netdev "wan" "WAN" "white:network" "eth2" "link"
|
ucidef_set_led_netdev "wan" "WAN" "white:network" "eth2" "link"
|
||||||
;;
|
;;
|
||||||
|
@ -13,9 +13,11 @@ case "$board" in
|
|||||||
globalscale,mochabin)
|
globalscale,mochabin)
|
||||||
ucidef_set_interfaces_lan_wan "lan0 lan1 lan2 lan3" "eth0 eth2"
|
ucidef_set_interfaces_lan_wan "lan0 lan1 lan2 lan3" "eth0 eth2"
|
||||||
;;
|
;;
|
||||||
|
qnap,qhora-321|\
|
||||||
iei,puzzle-m901)
|
iei,puzzle-m901)
|
||||||
ucidef_set_interfaces_lan_wan "eth1 eth2 eth3 eth4 eth5" "eth0"
|
ucidef_set_interfaces_lan_wan "eth1 eth2 eth3 eth4 eth5" "eth0"
|
||||||
;;
|
;;
|
||||||
|
qnap,qhora-322|\
|
||||||
iei,puzzle-m902)
|
iei,puzzle-m902)
|
||||||
ucidef_set_interfaces_lan_wan "eth0 eth1 eth3 eth4 eth5 eth6 eth7 eth8" "eth2"
|
ucidef_set_interfaces_lan_wan "eth0 eth1 eth3 eth4 eth5 eth6 eth7 eth8" "eth2"
|
||||||
;;
|
;;
|
||||||
|
@ -31,6 +31,8 @@ platform_do_upgrade_emmc() {
|
|||||||
|
|
||||||
v "Writing new UUID to /dev/$diskdev..."
|
v "Writing new UUID to /dev/$diskdev..."
|
||||||
get_image_dd "$1" of="/dev/$diskdev" bs=1 skip=440 count=4 seek=440 conv=fsync
|
get_image_dd "$1" of="/dev/$diskdev" bs=1 skip=440 count=4 seek=440 conv=fsync
|
||||||
|
|
||||||
|
mkfs.ext4 -F -L rootfs_data $(find_mmc_part rootfs_data)
|
||||||
|
|
||||||
sleep 1
|
sleep 1
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,8 @@ REQUIRE_IMAGE_METADATA=1
|
|||||||
platform_check_image() {
|
platform_check_image() {
|
||||||
case "$(board_name)" in
|
case "$(board_name)" in
|
||||||
globalscale,mochabin|\
|
globalscale,mochabin|\
|
||||||
|
qnap,qhora-321|\
|
||||||
|
qnap,qhora-322|\
|
||||||
iei,puzzle-m901|\
|
iei,puzzle-m901|\
|
||||||
iei,puzzle-m902|\
|
iei,puzzle-m902|\
|
||||||
marvell,armada8040-mcbin-doubleshot|\
|
marvell,armada8040-mcbin-doubleshot|\
|
||||||
@ -25,6 +27,8 @@ platform_check_image() {
|
|||||||
|
|
||||||
platform_do_upgrade() {
|
platform_do_upgrade() {
|
||||||
case "$(board_name)" in
|
case "$(board_name)" in
|
||||||
|
qnap,qhora-321|\
|
||||||
|
qnap,qhora-322|\
|
||||||
iei,puzzle-m901|\
|
iei,puzzle-m901|\
|
||||||
iei,puzzle-m902)
|
iei,puzzle-m902)
|
||||||
platform_do_upgrade_emmc "$1"
|
platform_do_upgrade_emmc "$1"
|
||||||
@ -43,6 +47,8 @@ platform_do_upgrade() {
|
|||||||
platform_copy_config() {
|
platform_copy_config() {
|
||||||
case "$(board_name)" in
|
case "$(board_name)" in
|
||||||
globalscale,mochabin|\
|
globalscale,mochabin|\
|
||||||
|
qnap,qhora-321|\
|
||||||
|
qnap,qhora-322|\
|
||||||
iei,puzzle-m901|\
|
iei,puzzle-m901|\
|
||||||
iei,puzzle-m902|\
|
iei,puzzle-m902|\
|
||||||
marvell,armada8040-mcbin-doubleshot|\
|
marvell,armada8040-mcbin-doubleshot|\
|
||||||
|
@ -0,0 +1,404 @@
|
|||||||
|
// SPDX-License-Identifier: (GPL-2.0-or-later OR MIT)
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Marvell International Ltd.
|
||||||
|
*
|
||||||
|
* Device tree for the CN9131-DB board.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "cn9130.dtsi"
|
||||||
|
|
||||||
|
#include <dt-bindings/gpio/gpio.h>
|
||||||
|
#include <dt-bindings/input/input.h>
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "QNAP QHora-321";
|
||||||
|
compatible = "qnap,qhora-321",
|
||||||
|
"marvell,armada-ap807-quad", "marvell,armada-ap807";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
stdout-path = "serial0:115200n8";
|
||||||
|
bootargs-append = " root=/dev/mmcblk0p3";
|
||||||
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
i2c0 = &cp1_i2c0;
|
||||||
|
i2c1 = &cp0_i2c0;
|
||||||
|
ethernet0 = &cp0_eth0;
|
||||||
|
ethernet1 = &cp0_eth1;
|
||||||
|
ethernet2 = &cp0_eth2;
|
||||||
|
ethernet3 = &cp1_eth0;
|
||||||
|
ethernet4 = &cp1_eth1;
|
||||||
|
ethernet5 = &cp1_eth2;
|
||||||
|
gpio1 = &cp0_gpio1;
|
||||||
|
gpio2 = &cp0_gpio2;
|
||||||
|
gpio3 = &cp1_gpio1;
|
||||||
|
gpio4 = &cp1_gpio2;
|
||||||
|
led-boot = &led_power;
|
||||||
|
led-failsafe = &led_info;
|
||||||
|
led-running = &led_power;
|
||||||
|
led-upgrade = &led_info;
|
||||||
|
};
|
||||||
|
|
||||||
|
memory@00000000 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0x0 0x0 0x0 0x80000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_keys {
|
||||||
|
compatible = "gpio-keys";
|
||||||
|
|
||||||
|
reset {
|
||||||
|
label = "Reset";
|
||||||
|
linux,code = <KEY_RESTART>;
|
||||||
|
gpios = <&cp0_gpio2 4 GPIO_ACTIVE_LOW>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_uart0 {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
puzzle-mcu {
|
||||||
|
compatible = "iei,wt61p803-puzzle";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
current-speed = <115200>;
|
||||||
|
enable-beep;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "iei,wt61p803-puzzle-leds";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
led@0 {
|
||||||
|
reg = <0>;
|
||||||
|
label = "white:network";
|
||||||
|
active-low;
|
||||||
|
};
|
||||||
|
|
||||||
|
led@1 {
|
||||||
|
reg = <1>;
|
||||||
|
label = "green:cloud";
|
||||||
|
active-low;
|
||||||
|
};
|
||||||
|
|
||||||
|
led_info: led@2 {
|
||||||
|
reg = <2>;
|
||||||
|
label = "orange:info";
|
||||||
|
active-low;
|
||||||
|
};
|
||||||
|
|
||||||
|
led_power: led@3 {
|
||||||
|
reg = <3>;
|
||||||
|
label = "yellow:power";
|
||||||
|
active-low;
|
||||||
|
default-state = "on";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
hwmon {
|
||||||
|
compatible = "iei,wt61p803-puzzle-hwmon";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
|
||||||
|
chassis_fan_group0: fan-group@0 {
|
||||||
|
#cooling-cells = <2>;
|
||||||
|
reg = <0x00>;
|
||||||
|
cooling-levels = <64 102 170 230 250>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&ap_thermal_cpu1 {
|
||||||
|
trips {
|
||||||
|
cpu_active: cpu-active {
|
||||||
|
temperature = <44000>;
|
||||||
|
hysteresis = <2000>;
|
||||||
|
type = "active";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
cooling-maps {
|
||||||
|
fan-map {
|
||||||
|
trip = <&cpu_active>;
|
||||||
|
cooling-device = <&chassis_fan_group0 64 THERMAL_NO_LIMIT>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/* on-board eMMC - U9 */
|
||||||
|
&ap_sdhci0 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
bus-width = <8>;
|
||||||
|
status = "okay";
|
||||||
|
mmc-ddr-1_8v;
|
||||||
|
mmc-hs400-1_8v;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_crypto {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_xmdio {
|
||||||
|
status = "okay";
|
||||||
|
cp0_nbaset_phy0: ethernet-phy@0 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <2>;
|
||||||
|
};
|
||||||
|
cp0_nbaset_phy1: ethernet-phy@1 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <0>;
|
||||||
|
};
|
||||||
|
cp0_nbaset_phy2: ethernet-phy@2 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <8>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_ethernet {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SLM-1521-V2, CON9 */
|
||||||
|
&cp0_eth0 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp0_comphy2 0>;
|
||||||
|
phy = <&cp0_nbaset_phy0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_eth1 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp0_comphy4 1>;
|
||||||
|
phy = <&cp0_nbaset_phy1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_eth2 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp0_comphy5 2>;
|
||||||
|
phy = <&cp0_nbaset_phy2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_gpio1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_gpio2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_i2c0 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&cp0_i2c0_pins>;
|
||||||
|
status = "okay";
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
rtc@32 {
|
||||||
|
compatible = "epson,rx8130";
|
||||||
|
reg = <0x32>;
|
||||||
|
wakeup-source;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SLM-1521-V2, CON6 */
|
||||||
|
&cp0_pcie0 {
|
||||||
|
status = "okay";
|
||||||
|
num-lanes = <2>;
|
||||||
|
num-viewport = <8>;
|
||||||
|
phys = <&cp0_comphy0 0>, <&cp0_comphy1 0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* U55 */
|
||||||
|
&cp0_spi1 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&cp0_spi0_pins>;
|
||||||
|
reg = <0x700680 0x50>, /* control */
|
||||||
|
<0x2000000 0x1000000>; /* CS0 */
|
||||||
|
status = "okay";
|
||||||
|
spi-flash@0 {
|
||||||
|
#address-cells = <0x1>;
|
||||||
|
#size-cells = <0x1>;
|
||||||
|
compatible = "jedec,spi-nor";
|
||||||
|
reg = <0x0>;
|
||||||
|
spi-max-frequency = <40000000>;
|
||||||
|
partitions {
|
||||||
|
compatible = "fixed-partitions";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
partition@0 {
|
||||||
|
label = "U-Boot";
|
||||||
|
reg = <0x0 0x1f0000>;
|
||||||
|
};
|
||||||
|
partition@1f0000 {
|
||||||
|
label = "U-Boot ENV Factory";
|
||||||
|
reg = <0x1f0000 0x10000>;
|
||||||
|
};
|
||||||
|
partition@200000 {
|
||||||
|
label = "Reserved";
|
||||||
|
reg = <0x200000 0x1f0000>;
|
||||||
|
};
|
||||||
|
partition@3f0000 {
|
||||||
|
label = "U-Boot ENV";
|
||||||
|
reg = <0x3f0000 0x10000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_syscon0 {
|
||||||
|
cp0_pinctrl: pinctrl {
|
||||||
|
compatible = "marvell,cp115-standalone-pinctrl";
|
||||||
|
cp0_i2c0_pins: cp0-i2c-pins-0 {
|
||||||
|
marvell,pins = "mpp37", "mpp38";
|
||||||
|
marvell,function = "i2c0";
|
||||||
|
};
|
||||||
|
cp0_i2c1_pins: cp0-i2c-pins-1 {
|
||||||
|
marvell,pins = "mpp35", "mpp36";
|
||||||
|
marvell,function = "i2c1";
|
||||||
|
};
|
||||||
|
cp0_ge1_rgmii_pins: cp0-ge-rgmii-pins-0 {
|
||||||
|
marvell,pins = "mpp0", "mpp1", "mpp2",
|
||||||
|
"mpp3", "mpp4", "mpp5",
|
||||||
|
"mpp6", "mpp7", "mpp8",
|
||||||
|
"mpp9", "mpp10", "mpp11";
|
||||||
|
marvell,function = "ge0";
|
||||||
|
};
|
||||||
|
cp0_ge2_rgmii_pins: cp0-ge-rgmii-pins-1 {
|
||||||
|
marvell,pins = "mpp44", "mpp45", "mpp46",
|
||||||
|
"mpp47", "mpp48", "mpp49",
|
||||||
|
"mpp50", "mpp51", "mpp52",
|
||||||
|
"mpp53", "mpp54", "mpp55";
|
||||||
|
marvell,function = "ge1";
|
||||||
|
};
|
||||||
|
cp0_spi0_pins: cp0-spi-pins-0 {
|
||||||
|
marvell,pins = "mpp13", "mpp14", "mpp15", "mpp16";
|
||||||
|
marvell,function = "spi1";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Instantiate the first connected CP115
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define CP11X_NAME cp1
|
||||||
|
#define CP11X_BASE f6000000
|
||||||
|
#define CP11X_PCIEx_MEM_BASE(iface) (0xe2000000 + (iface * 0x1000000))
|
||||||
|
#define CP11X_PCIEx_MEM_SIZE(iface) 0xf00000
|
||||||
|
#define CP11X_PCIE0_BASE f6600000
|
||||||
|
#define CP11X_PCIE1_BASE f6620000
|
||||||
|
#define CP11X_PCIE2_BASE f6640000
|
||||||
|
|
||||||
|
#include "armada-cp115.dtsi"
|
||||||
|
|
||||||
|
#undef CP11X_NAME
|
||||||
|
#undef CP11X_BASE
|
||||||
|
#undef CP11X_PCIEx_MEM_BASE
|
||||||
|
#undef CP11X_PCIEx_MEM_SIZE
|
||||||
|
#undef CP11X_PCIE0_BASE
|
||||||
|
#undef CP11X_PCIE1_BASE
|
||||||
|
#undef CP11X_PCIE2_BASE
|
||||||
|
|
||||||
|
&cp1_crypto {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_xmdio {
|
||||||
|
status = "okay";
|
||||||
|
cp1_nbaset_phy0: ethernet-phy@3 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <2>;
|
||||||
|
};
|
||||||
|
cp1_nbaset_phy1: ethernet-phy@4 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <0>;
|
||||||
|
};
|
||||||
|
cp1_nbaset_phy2: ethernet-phy@5 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <8>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_ethernet {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
/* CON50 */
|
||||||
|
&cp1_eth0 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp1_comphy2 0>;
|
||||||
|
phy = <&cp1_nbaset_phy0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_eth1 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp1_comphy4 1>;
|
||||||
|
phy = <&cp1_nbaset_phy1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_eth2 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp1_comphy5 2>;
|
||||||
|
phy = <&cp1_nbaset_phy2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_sata0 {
|
||||||
|
status = "okay";
|
||||||
|
sata-port@1 {
|
||||||
|
status = "okay";
|
||||||
|
phys = <&cp1_comphy0 1>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_gpio1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_gpio2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_i2c0 {
|
||||||
|
status = "okay";
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&cp1_i2c0_pins>;
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_syscon0 {
|
||||||
|
cp1_pinctrl: pinctrl {
|
||||||
|
compatible = "marvell,cp115-standalone-pinctrl";
|
||||||
|
cp1_i2c0_pins: cp1-i2c-pins-0 {
|
||||||
|
marvell,pins = "mpp37", "mpp38";
|
||||||
|
marvell,function = "i2c0";
|
||||||
|
};
|
||||||
|
cp1_spi0_pins: cp1-spi-pins-0 {
|
||||||
|
marvell,pins = "mpp13", "mpp14", "mpp15", "mpp16";
|
||||||
|
marvell,function = "spi1";
|
||||||
|
};
|
||||||
|
cp1_xhci0_vbus_pins: cp1-xhci0-vbus-pins {
|
||||||
|
marvell,pins = "mpp3";
|
||||||
|
marvell,function = "gpio";
|
||||||
|
};
|
||||||
|
cp1_sfp_pins: sfp-pins {
|
||||||
|
marvell,pins = "mpp8", "mpp9", "mpp10", "mpp11";
|
||||||
|
marvell,function = "gpio";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_usb3_1 {
|
||||||
|
status = "okay";
|
||||||
|
phys = <&cp1_comphy3 1>;
|
||||||
|
phy-names = "usb";
|
||||||
|
};
|
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
stdout-path = "serial0:115200n8";
|
stdout-path = "serial0:115200n8";
|
||||||
|
bootargs-append = " root=/dev/mmcblk0p3";
|
||||||
};
|
};
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
|
@ -0,0 +1,565 @@
|
|||||||
|
// SPDX-License-Identifier: (GPL-2.0-or-later OR MIT)
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Marvell International Ltd.
|
||||||
|
*
|
||||||
|
* Device tree for the CN9132-DB board.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "cn9130.dtsi"
|
||||||
|
|
||||||
|
#include <dt-bindings/gpio/gpio.h>
|
||||||
|
#include <dt-bindings/input/input.h>
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "QNAP QHora-322";
|
||||||
|
compatible = "qnap,qhora-322",
|
||||||
|
"marvell,armada-ap807-quad", "marvell,armada-ap807";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
stdout-path = "serial0:115200n8";
|
||||||
|
bootargs-append = " root=/dev/mmcblk0p3";
|
||||||
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
i2c0 = &cp1_i2c0;
|
||||||
|
i2c1 = &cp0_i2c0;
|
||||||
|
gpio1 = &cp0_gpio1;
|
||||||
|
gpio2 = &cp0_gpio2;
|
||||||
|
gpio3 = &cp1_gpio1;
|
||||||
|
gpio4 = &cp1_gpio2;
|
||||||
|
gpio5 = &cp2_gpio1;
|
||||||
|
gpio6 = &cp2_gpio2;
|
||||||
|
ethernet0 = &cp0_eth0;
|
||||||
|
ethernet1 = &cp0_eth1;
|
||||||
|
ethernet2 = &cp0_eth2;
|
||||||
|
ethernet3 = &cp1_eth0;
|
||||||
|
ethernet4 = &cp1_eth1;
|
||||||
|
ethernet5 = &cp1_eth2;
|
||||||
|
ethernet6 = &cp2_eth0;
|
||||||
|
ethernet7 = &cp2_eth1;
|
||||||
|
ethernet8 = &cp2_eth2;
|
||||||
|
spi1 = &cp0_spi0;
|
||||||
|
spi2 = &cp0_spi1;
|
||||||
|
led-boot = &led_power;
|
||||||
|
led-failsafe = &led_info;
|
||||||
|
led-running = &led_power;
|
||||||
|
led-upgrade = &led_info;
|
||||||
|
};
|
||||||
|
|
||||||
|
memory@00000000 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0x0 0x0 0x0 0x80000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_keys {
|
||||||
|
compatible = "gpio-keys";
|
||||||
|
|
||||||
|
reset {
|
||||||
|
label = "Reset";
|
||||||
|
linux,code = <KEY_RESTART>;
|
||||||
|
gpios = <&cp0_gpio2 4 GPIO_ACTIVE_LOW>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
cp2_reg_usb3_vbus0: cp2_usb3_vbus@0 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "cp2-xhci0-vbus";
|
||||||
|
regulator-min-microvolt = <5000000>;
|
||||||
|
regulator-max-microvolt = <5000000>;
|
||||||
|
enable-active-high;
|
||||||
|
gpio = <&cp2_gpio1 2 GPIO_ACTIVE_HIGH>;
|
||||||
|
};
|
||||||
|
|
||||||
|
cp2_usb3_0_phy0: cp2_usb3_phy0 {
|
||||||
|
compatible = "usb-nop-xceiv";
|
||||||
|
vcc-supply = <&cp2_reg_usb3_vbus0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
cp2_reg_usb3_vbus1: cp2_usb3_vbus@1 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "cp2-xhci1-vbus";
|
||||||
|
regulator-min-microvolt = <5000000>;
|
||||||
|
regulator-max-microvolt = <5000000>;
|
||||||
|
enable-active-high;
|
||||||
|
gpio = <&cp2_gpio1 3 GPIO_ACTIVE_HIGH>;
|
||||||
|
};
|
||||||
|
|
||||||
|
cp2_usb3_0_phy1: cp2_usb3_phy1 {
|
||||||
|
compatible = "usb-nop-xceiv";
|
||||||
|
vcc-supply = <&cp2_reg_usb3_vbus1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
cp2_sfp_eth0: sfp-eth0 {
|
||||||
|
compatible = "sff,sfp";
|
||||||
|
i2c-bus = <&cp2_sfpp0_i2c>;
|
||||||
|
los-gpio = <&cp2_module_expander1 11 GPIO_ACTIVE_HIGH>;
|
||||||
|
mod-def0-gpio = <&cp2_module_expander1 10 GPIO_ACTIVE_LOW>;
|
||||||
|
tx-disable-gpio = <&cp2_module_expander1 9 GPIO_ACTIVE_HIGH>;
|
||||||
|
tx-fault-gpio = <&cp2_module_expander1 8 GPIO_ACTIVE_HIGH>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_uart0 {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
puzzle-mcu {
|
||||||
|
compatible = "iei,wt61p803-puzzle";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
current-speed = <115200>;
|
||||||
|
enable-beep;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "iei,wt61p803-puzzle-leds";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
led@0 {
|
||||||
|
reg = <0>;
|
||||||
|
label = "white:network";
|
||||||
|
active-low;
|
||||||
|
};
|
||||||
|
|
||||||
|
led@1 {
|
||||||
|
reg = <1>;
|
||||||
|
label = "green:cloud";
|
||||||
|
active-low;
|
||||||
|
};
|
||||||
|
|
||||||
|
led_info: led@2 {
|
||||||
|
reg = <2>;
|
||||||
|
label = "orange:info";
|
||||||
|
active-low;
|
||||||
|
};
|
||||||
|
|
||||||
|
led_power: led@3 {
|
||||||
|
reg = <3>;
|
||||||
|
label = "yellow:power";
|
||||||
|
active-low;
|
||||||
|
default-state = "on";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
hwmon {
|
||||||
|
compatible = "iei,wt61p803-puzzle-hwmon";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
|
||||||
|
chassis_fan_group0: fan-group@0 {
|
||||||
|
#cooling-cells = <2>;
|
||||||
|
reg = <0x00>;
|
||||||
|
cooling-levels = <64 102 170 230 250>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&ap_thermal_cpu1 {
|
||||||
|
trips {
|
||||||
|
cpu_active: cpu-active {
|
||||||
|
temperature = <44000>;
|
||||||
|
hysteresis = <2000>;
|
||||||
|
type = "active";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
cooling-maps {
|
||||||
|
fan-map {
|
||||||
|
trip = <&cpu_active>;
|
||||||
|
cooling-device = <&chassis_fan_group0 64 THERMAL_NO_LIMIT>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/* on-board eMMC - U9 */
|
||||||
|
&ap_sdhci0 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
bus-width = <8>;
|
||||||
|
status = "okay";
|
||||||
|
mmc-ddr-1_8v;
|
||||||
|
mmc-hs400-1_8v;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_crypto {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_xmdio {
|
||||||
|
status = "okay";
|
||||||
|
cp0_nbaset_phy0: ethernet-phy@0 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <2>;
|
||||||
|
};
|
||||||
|
cp0_nbaset_phy1: ethernet-phy@1 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <0>;
|
||||||
|
};
|
||||||
|
cp0_nbaset_phy2: ethernet-phy@2 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <8>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_ethernet {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SLM-1521-V2, CON9 */
|
||||||
|
&cp0_eth0 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "10gbase-kr";
|
||||||
|
phys = <&cp0_comphy2 0>;
|
||||||
|
phy = <&cp0_nbaset_phy0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_eth1 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp0_comphy4 1>;
|
||||||
|
phy = <&cp0_nbaset_phy1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_eth2 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp0_comphy1 2>;
|
||||||
|
phy = <&cp0_nbaset_phy2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_gpio1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_gpio2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_i2c0 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&cp0_i2c0_pins>;
|
||||||
|
status = "okay";
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
rtc@32 {
|
||||||
|
compatible = "epson,rx8130";
|
||||||
|
reg = <0x32>;
|
||||||
|
wakeup-source;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_i2c1 {
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SLM-1521-V2, CON6 */
|
||||||
|
&cp0_sata0 {
|
||||||
|
status = "okay";
|
||||||
|
sata-port@1 {
|
||||||
|
status = "okay";
|
||||||
|
phys = <&cp0_comphy0 1>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_pcie2 {
|
||||||
|
status = "okay";
|
||||||
|
num-lanes = <1>;
|
||||||
|
num-viewport = <8>;
|
||||||
|
phys = <&cp0_comphy5 2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* U55 */
|
||||||
|
&cp0_spi1 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&cp0_spi0_pins>;
|
||||||
|
reg = <0x700680 0x50>, /* control */
|
||||||
|
<0x2000000 0x1000000>; /* CS0 */
|
||||||
|
status = "okay";
|
||||||
|
spi-flash@0 {
|
||||||
|
#address-cells = <0x1>;
|
||||||
|
#size-cells = <0x1>;
|
||||||
|
compatible = "jedec,spi-nor";
|
||||||
|
reg = <0x0>;
|
||||||
|
spi-max-frequency = <40000000>;
|
||||||
|
partitions {
|
||||||
|
compatible = "fixed-partitions";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
partition@0 {
|
||||||
|
label = "U-Boot";
|
||||||
|
reg = <0x0 0x1f0000>;
|
||||||
|
};
|
||||||
|
partition@1f0000 {
|
||||||
|
label = "U-Boot ENV Factory";
|
||||||
|
reg = <0x1f0000 0x10000>;
|
||||||
|
};
|
||||||
|
partition@200000 {
|
||||||
|
label = "Reserved";
|
||||||
|
reg = <0x200000 0x1f0000>;
|
||||||
|
};
|
||||||
|
partition@3f0000 {
|
||||||
|
label = "U-Boot ENV";
|
||||||
|
reg = <0x3f0000 0x10000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_syscon0 {
|
||||||
|
cp0_pinctrl: pinctrl {
|
||||||
|
compatible = "marvell,cp115-standalone-pinctrl";
|
||||||
|
cp0_i2c0_pins: cp0-i2c-pins-0 {
|
||||||
|
marvell,pins = "mpp37", "mpp38";
|
||||||
|
marvell,function = "i2c0";
|
||||||
|
};
|
||||||
|
cp0_i2c1_pins: cp0-i2c-pins-1 {
|
||||||
|
marvell,pins = "mpp35", "mpp36";
|
||||||
|
marvell,function = "i2c1";
|
||||||
|
};
|
||||||
|
cp0_ge1_rgmii_pins: cp0-ge-rgmii-pins-0 {
|
||||||
|
marvell,pins = "mpp0", "mpp1", "mpp2",
|
||||||
|
"mpp3", "mpp4", "mpp5",
|
||||||
|
"mpp6", "mpp7", "mpp8",
|
||||||
|
"mpp9", "mpp10", "mpp11";
|
||||||
|
marvell,function = "ge0";
|
||||||
|
};
|
||||||
|
cp0_ge2_rgmii_pins: cp0-ge-rgmii-pins-1 {
|
||||||
|
marvell,pins = "mpp44", "mpp45", "mpp46",
|
||||||
|
"mpp47", "mpp48", "mpp49",
|
||||||
|
"mpp50", "mpp51", "mpp52",
|
||||||
|
"mpp53", "mpp54", "mpp55";
|
||||||
|
marvell,function = "ge1";
|
||||||
|
};
|
||||||
|
cp0_spi0_pins: cp0-spi-pins-0 {
|
||||||
|
marvell,pins = "mpp13", "mpp14", "mpp15", "mpp16";
|
||||||
|
marvell,function = "spi1";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp0_usb3_1 {
|
||||||
|
status = "okay";
|
||||||
|
phys = <&cp0_comphy3 1>;
|
||||||
|
phy-names = "usb";
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Instantiate the first connected CP115
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define CP11X_NAME cp1
|
||||||
|
#define CP11X_BASE f4000000
|
||||||
|
#define CP11X_PCIEx_MEM_BASE(iface) (0xe2000000 + (iface * 0x1000000))
|
||||||
|
#define CP11X_PCIEx_MEM_SIZE(iface) 0xf00000
|
||||||
|
#define CP11X_PCIE0_BASE f4600000
|
||||||
|
#define CP11X_PCIE1_BASE f4620000
|
||||||
|
#define CP11X_PCIE2_BASE f4640000
|
||||||
|
|
||||||
|
#include "armada-cp115.dtsi"
|
||||||
|
|
||||||
|
#undef CP11X_NAME
|
||||||
|
#undef CP11X_BASE
|
||||||
|
#undef CP11X_PCIEx_MEM_BASE
|
||||||
|
#undef CP11X_PCIEx_MEM_SIZE
|
||||||
|
#undef CP11X_PCIE0_BASE
|
||||||
|
#undef CP11X_PCIE1_BASE
|
||||||
|
#undef CP11X_PCIE2_BASE
|
||||||
|
|
||||||
|
&cp1_crypto {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_xmdio {
|
||||||
|
status = "okay";
|
||||||
|
cp1_nbaset_phy0: ethernet-phy@3 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <2>;
|
||||||
|
};
|
||||||
|
cp1_nbaset_phy1: ethernet-phy@4 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <0>;
|
||||||
|
};
|
||||||
|
cp1_nbaset_phy2: ethernet-phy@5 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <8>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_ethernet {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
/* CON50 */
|
||||||
|
&cp1_eth0 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "10gbase-kr";
|
||||||
|
phys = <&cp1_comphy2 0>;
|
||||||
|
phy = <&cp1_nbaset_phy0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_eth1 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp1_comphy4 1>;
|
||||||
|
phy = <&cp1_nbaset_phy1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_eth2 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp1_comphy1 2>;
|
||||||
|
phy = <&cp1_nbaset_phy2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_gpio1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_gpio2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_i2c0 {
|
||||||
|
status = "okay";
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&cp1_i2c0_pins>;
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp1_syscon0 {
|
||||||
|
cp1_pinctrl: pinctrl {
|
||||||
|
compatible = "marvell,cp115-standalone-pinctrl";
|
||||||
|
cp1_i2c0_pins: cp1-i2c-pins-0 {
|
||||||
|
marvell,pins = "mpp37", "mpp38";
|
||||||
|
marvell,function = "i2c0";
|
||||||
|
};
|
||||||
|
cp1_spi0_pins: cp1-spi-pins-0 {
|
||||||
|
marvell,pins = "mpp13", "mpp14", "mpp15", "mpp16";
|
||||||
|
marvell,function = "spi1";
|
||||||
|
};
|
||||||
|
cp1_xhci0_vbus_pins: cp1-xhci0-vbus-pins {
|
||||||
|
marvell,pins = "mpp3";
|
||||||
|
marvell,function = "gpio";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Instantiate the second connected CP115
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define CP11X_NAME cp2
|
||||||
|
#define CP11X_BASE f6000000
|
||||||
|
#define CP11X_PCIEx_MEM_BASE(iface) (0xe5000000 + (iface * 0x1000000))
|
||||||
|
#define CP11X_PCIEx_MEM_SIZE(iface) 0xf00000
|
||||||
|
#define CP11X_PCIE0_BASE f6600000
|
||||||
|
#define CP11X_PCIE1_BASE f6620000
|
||||||
|
#define CP11X_PCIE2_BASE f6640000
|
||||||
|
|
||||||
|
#include "armada-cp115.dtsi"
|
||||||
|
|
||||||
|
#undef CP11X_NAME
|
||||||
|
#undef CP11X_BASE
|
||||||
|
#undef CP11X_PCIEx_MEM_BASE
|
||||||
|
#undef CP11X_PCIEx_MEM_SIZE
|
||||||
|
#undef CP11X_PCIE0_BASE
|
||||||
|
#undef CP11X_PCIE1_BASE
|
||||||
|
#undef CP11X_PCIE2_BASE
|
||||||
|
|
||||||
|
&cp2_crypto {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp2_ethernet {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp2_xmdio {
|
||||||
|
status = "okay";
|
||||||
|
cp2_nbaset_phy0: ethernet-phy@6 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <2>;
|
||||||
|
};
|
||||||
|
cp2_nbaset_phy1: ethernet-phy@7 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <0>;
|
||||||
|
};
|
||||||
|
cp2_nbaset_phy2: ethernet-phy@8 {
|
||||||
|
compatible = "ethernet-phy-ieee802.3-c45";
|
||||||
|
reg = <8>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SLM-1521-V2, CON9 */
|
||||||
|
&cp2_eth0 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "10gbase-kr";
|
||||||
|
phys = <&cp2_comphy2 0>;
|
||||||
|
phy = <&cp2_nbaset_phy0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp2_eth1 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp2_comphy4 1>;
|
||||||
|
phy = <&cp2_nbaset_phy1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp2_eth2 {
|
||||||
|
status = "okay";
|
||||||
|
phy-mode = "2500base-x";
|
||||||
|
phys = <&cp2_comphy1 2>;
|
||||||
|
phy = <&cp2_nbaset_phy2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp2_gpio1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp2_gpio2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp2_i2c0 {
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
/* SLM-1521-V2 - U3 */
|
||||||
|
i2c-mux@72 {
|
||||||
|
compatible = "nxp,pca9544";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
reg = <0x72>;
|
||||||
|
cp2_sfpp0_i2c: i2c@0 {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
reg = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
i2c@1 {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
reg = <1>;
|
||||||
|
/* U12 */
|
||||||
|
cp2_module_expander1: pca9555@21 {
|
||||||
|
compatible = "nxp,pca9555";
|
||||||
|
pinctrl-names = "default";
|
||||||
|
gpio-controller;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
reg = <0x21>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cp2_syscon0 {
|
||||||
|
cp2_pinctrl: pinctrl {
|
||||||
|
compatible = "marvell,cp115-standalone-pinctrl";
|
||||||
|
cp2_i2c0_pins: cp2-i2c-pins-0 {
|
||||||
|
marvell,pins = "mpp37", "mpp38";
|
||||||
|
marvell,function = "i2c0";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
stdout-path = "serial0:115200n8";
|
stdout-path = "serial0:115200n8";
|
||||||
|
bootargs-append = " root=/dev/mmcblk0p3";
|
||||||
};
|
};
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
|
@ -39,6 +39,16 @@ define Build/boot-img-ext4
|
|||||||
$@.bootimg $@.boot
|
$@.bootimg $@.boot
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/boot-qnap-img-ext4
|
||||||
|
rm -fR $@.boot
|
||||||
|
mkdir -p $@.boot
|
||||||
|
$(foreach dts,$(DEVICE_DTS), $(CP) $(KDIR)/image-$(dts).dtb $@.boot/$(dts).dtb;)
|
||||||
|
$(CP) $(KDIR)/vmlinux $@.boot/Image
|
||||||
|
make_ext4fs -J -L kernel -l $(CONFIG_TARGET_KERNEL_PARTSIZE)M \
|
||||||
|
$(if $(SOURCE_DATE_EPOCH),-T $(SOURCE_DATE_EPOCH)) \
|
||||||
|
$@.bootimg $@.boot
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/buffalo-kernel-jffs2
|
define Build/buffalo-kernel-jffs2
|
||||||
rm -rf $(KDIR)/kernel_jffs2 $@.fakerd
|
rm -rf $(KDIR)/kernel_jffs2 $@.fakerd
|
||||||
mkdir -p $(KDIR)/kernel_jffs2
|
mkdir -p $(KDIR)/kernel_jffs2
|
||||||
|
@ -78,3 +78,15 @@ define Device/iei_puzzle-m902
|
|||||||
SOC := cn9132
|
SOC := cn9132
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += iei_puzzle-m902
|
TARGET_DEVICES += iei_puzzle-m902
|
||||||
|
|
||||||
|
define Device/qnap_qhora-32x
|
||||||
|
$(call Device/Default-arm64)
|
||||||
|
SOC := cn9132
|
||||||
|
DEVICE_VENDOR := QNAP
|
||||||
|
DEVICE_MODEL := QHora-321/322
|
||||||
|
DEVICE_PACKAGES += kmod-rtc-ds1307
|
||||||
|
DEVICE_DTS := cn9131-db-A cn9131-puzzle-m901 cn9132-db-A cn9132-puzzle-m902
|
||||||
|
SUPPORTED_DEVICES := qnap,qhora-321 qnap,qhora-322 iei,puzzle-m901 iei,puzzle-m902
|
||||||
|
IMAGE/sdcard.img.gz := boot-scr | boot-qnap-img-ext4 | sdcard-img-ext4 | gzip | append-metadata
|
||||||
|
endef
|
||||||
|
TARGET_DEVICES += qnap_qhora-32x
|
||||||
|
Loading…
Reference in New Issue
Block a user