mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 18:07:02 +07:00
1b2b1e752d
meson-gx-p23x-q20x.dtsi is currently used by five boards:
- Amlogic P230 and P231 (which should be identical, apart from the
external RGMII PHY on P230 whereas P231 can only use the internal PHY)
- Amlogic Q200 (identical to P230 but with an S912 GXM SoC instead of a
GXL S905D SoC) and Q201 (identical to P231 but with an S912 GXM SoC
instead of a GXL S905D SoC)
- NEXBOX A1 (based on the S912 GXM SoC)
The Amlogic P230 board uses a Broadcom BCM4356 SDIO wifi chip. Since the
other Amlogic reference design boards are very similar it's safe to
assume that these also use a Broadcom based SDIO wifi chip (which is
also how it was configured in meson-gx-p23x-q20x.dtsi).
However, NEXBOX A1 comes with a "longsys LTM8830" SDIO wifi module,
which is based on the "Qualcomm Atheros QCA9377-3(QCA1023-0)" chipset.
Thus move the wifi node from meson-gx-p23x-q20x.dtsi to each of the
four Amlogic reference board's .dts files.
There are no devicetree bindings for the QCA9377 SDIO wifi module yet,
so nothing is added to meson-gxm-nexbox-a1.dts.
Fixes: f51b454549
("ARM64: dts: meson-gxm: Add support for the Nexbox A1")
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
81 lines
1.7 KiB
Plaintext
81 lines
1.7 KiB
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (c) 2016 Endless Computers, Inc.
|
|
* Author: Carlo Caione <carlo@endlessm.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
#include "meson-gxm.dtsi"
|
|
#include "meson-gx-p23x-q20x.dtsi"
|
|
|
|
/ {
|
|
compatible = "amlogic,q200", "amlogic,s912", "amlogic,meson-gxm";
|
|
model = "Amlogic Meson GXM (S912) Q200 Development Board";
|
|
|
|
adc-keys {
|
|
compatible = "adc-keys";
|
|
io-channels = <&saradc 0>;
|
|
io-channel-names = "buttons";
|
|
keyup-threshold-microvolt = <1710000>;
|
|
|
|
button-function {
|
|
label = "Update";
|
|
linux,code = <KEY_VENDOR>;
|
|
press-threshold-microvolt = <10000>;
|
|
};
|
|
};
|
|
|
|
gpio-keys-polled {
|
|
compatible = "gpio-keys-polled";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
poll-interval = <100>;
|
|
|
|
button@0 {
|
|
label = "power";
|
|
linux,code = <KEY_POWER>;
|
|
gpios = <&gpio_ao GPIOAO_2 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
/* Q200 has exclusive choice between internal or external PHY */
|
|
ðmac {
|
|
pinctrl-0 = <ð_pins>;
|
|
pinctrl-names = "default";
|
|
|
|
/* Select external PHY by default */
|
|
phy-handle = <&external_phy>;
|
|
|
|
amlogic,tx-delay-ns = <2>;
|
|
|
|
/* External PHY reset is shared with internal PHY Led signals */
|
|
snps,reset-gpio = <&gpio GPIOZ_14 0>;
|
|
snps,reset-delays-us = <0 10000 1000000>;
|
|
snps,reset-active-low;
|
|
|
|
/* External PHY is in RGMII */
|
|
phy-mode = "rgmii";
|
|
};
|
|
|
|
&external_mdio {
|
|
external_phy: ethernet-phy@0 {
|
|
compatible = "ethernet-phy-id001c.c916", "ethernet-phy-ieee802.3-c22";
|
|
reg = <0>;
|
|
max-speed = <1000>;
|
|
interrupt-parent = <&gpio_intc>;
|
|
/* MAC_INTR on GPIOZ_15 */
|
|
interrupts = <25 IRQ_TYPE_LEVEL_LOW>;
|
|
};
|
|
};
|
|
|
|
&sd_emmc_a {
|
|
brcmf: wifi@1 {
|
|
reg = <1>;
|
|
compatible = "brcm,bcm4329-fmac";
|
|
};
|
|
};
|