* [PATCH v5 1/3] arm64: dts: meson-gxl: add support for phicomm n1
2018-11-10 3:39 [PATCH v5 0/3] arm64: dts: meson-gxl: add support for phicomm n1 He Yangxuan
@ 2018-11-10 3:39 ` He Yangxuan
2018-11-16 8:53 ` Neil Armstrong
2018-11-10 3:39 ` [PATCH v5 2/3] dt-bindings: Add vendor prefix for PHICOMM Co., Ltd He Yangxuan
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: He Yangxuan @ 2018-11-10 3:39 UTC (permalink / raw)
To: linux-amlogic
Cc: linux-arm-kernel, linux-kernel, devicetree, carlo, khilman,
narmstrong, He Yangxuan
This patch adds support for the Phicomm N1. This device based on P230 reference design.
And this box doesn't have cvbs, so disable related section in device tree.
Signed-off-by: He Yangxuan <yangxuan8282@gmail.com>
---
arch/arm64/boot/dts/amlogic/Makefile | 1 +
.../boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts | 21 +++++++++++++++++++++
2 files changed, 22 insertions(+)
create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts
diff --git a/arch/arm64/boot/dts/amlogic/Makefile b/arch/arm64/boot/dts/amlogic/Makefile
index c31f29d66..49f3ac5d8 100644
--- a/arch/arm64/boot/dts/amlogic/Makefile
+++ b/arch/arm64/boot/dts/amlogic/Makefile
@@ -18,6 +18,7 @@ dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905x-nexbox-a95x.dtb
dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905x-p212.dtb
dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905d-p230.dtb
dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905d-p231.dtb
+dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905d-phicomm-n1.dtb
dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s805x-p241.dtb
dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905w-p281.dtb
dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905w-tx3-mini.dtb
diff --git a/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts b/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts
new file mode 100644
index 000000000..9a8a8a7e4
--- /dev/null
+++ b/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts
@@ -0,0 +1,21 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/*
+ * Copyright (c) 2018 He Yangxuan
+ */
+
+/dts-v1/;
+
+#include "meson-gxl-s905d-p230.dts"
+
+/ {
+ compatible = "phicomm,n1", "amlogic,s905d", "amlogic,meson-gxl";
+ model = "Phicomm N1";
+
+ cvbs-connector {
+ status = "disabled";
+ };
+};
+
+&cvbs_vdac_port {
+ status = "disabled";
+};
--
2.11.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v5 1/3] arm64: dts: meson-gxl: add support for phicomm n1
2018-11-10 3:39 ` [PATCH v5 1/3] " He Yangxuan
@ 2018-11-16 8:53 ` Neil Armstrong
0 siblings, 0 replies; 8+ messages in thread
From: Neil Armstrong @ 2018-11-16 8:53 UTC (permalink / raw)
To: He Yangxuan, linux-amlogic
Cc: linux-arm-kernel, linux-kernel, devicetree, carlo, khilman
On 10/11/2018 04:39, He Yangxuan wrote:
> This patch adds support for the Phicomm N1. This device based on P230 reference design.
> And this box doesn't have cvbs, so disable related section in device tree.
>
> Signed-off-by: He Yangxuan <yangxuan8282@gmail.com>
> ---
> arch/arm64/boot/dts/amlogic/Makefile | 1 +
> .../boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts | 21 +++++++++++++++++++++
> 2 files changed, 22 insertions(+)
> create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts
>
> diff --git a/arch/arm64/boot/dts/amlogic/Makefile b/arch/arm64/boot/dts/amlogic/Makefile
> index c31f29d66..49f3ac5d8 100644
> --- a/arch/arm64/boot/dts/amlogic/Makefile
> +++ b/arch/arm64/boot/dts/amlogic/Makefile
> @@ -18,6 +18,7 @@ dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905x-nexbox-a95x.dtb
> dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905x-p212.dtb
> dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905d-p230.dtb
> dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905d-p231.dtb
> +dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905d-phicomm-n1.dtb
> dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s805x-p241.dtb
> dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905w-p281.dtb
> dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905w-tx3-mini.dtb
> diff --git a/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts b/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts
> new file mode 100644
> index 000000000..9a8a8a7e4
> --- /dev/null
> +++ b/arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts
> @@ -0,0 +1,21 @@
> +// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
> +/*
> + * Copyright (c) 2018 He Yangxuan
> + */
> +
> +/dts-v1/;
> +
> +#include "meson-gxl-s905d-p230.dts"
> +
> +/ {
> + compatible = "phicomm,n1", "amlogic,s905d", "amlogic,meson-gxl";
> + model = "Phicomm N1";
> +
> + cvbs-connector {
> + status = "disabled";
> + };
> +};
> +
> +&cvbs_vdac_port {
> + status = "disabled";
> +};
>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v5 2/3] dt-bindings: Add vendor prefix for PHICOMM Co., Ltd.
2018-11-10 3:39 [PATCH v5 0/3] arm64: dts: meson-gxl: add support for phicomm n1 He Yangxuan
2018-11-10 3:39 ` [PATCH v5 1/3] " He Yangxuan
@ 2018-11-10 3:39 ` He Yangxuan
2018-11-11 22:40 ` Rob Herring
2018-11-10 3:39 ` [PATCH v5 3/3] dt-bindings: arm: amlogic: Add Phicomm N1 He Yangxuan
2018-11-29 0:10 ` [PATCH v5 0/3] arm64: dts: meson-gxl: add support for phicomm n1 Kevin Hilman
3 siblings, 1 reply; 8+ messages in thread
From: He Yangxuan @ 2018-11-10 3:39 UTC (permalink / raw)
To: linux-amlogic
Cc: linux-arm-kernel, linux-kernel, devicetree, carlo, khilman,
narmstrong, He Yangxuan
PHICOMM Co., Ltd. is a hardware provider headquartered in Shanghai, it's
product includes router and smart devices.
Signed-off-by: He Yangxuan <yangxuan8282@gmail.com>
---
Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index 4b1a2a8fc..8c413d8cc 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -296,6 +296,7 @@ panasonic Panasonic Corporation
parade Parade Technologies Inc.
pericom Pericom Technology Inc.
pervasive Pervasive Displays, Inc.
+phicomm PHICOMM Co., Ltd.
phytec PHYTEC Messtechnik GmbH
picochip Picochip Ltd
pine64 Pine64
--
2.11.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v5 2/3] dt-bindings: Add vendor prefix for PHICOMM Co., Ltd.
2018-11-10 3:39 ` [PATCH v5 2/3] dt-bindings: Add vendor prefix for PHICOMM Co., Ltd He Yangxuan
@ 2018-11-11 22:40 ` Rob Herring
0 siblings, 0 replies; 8+ messages in thread
From: Rob Herring @ 2018-11-11 22:40 UTC (permalink / raw)
Cc: linux-amlogic, linux-arm-kernel, linux-kernel, devicetree, carlo,
khilman, narmstrong, He Yangxuan
On Sat, 10 Nov 2018 11:39:03 +0800, He Yangxuan wrote:
> PHICOMM Co., Ltd. is a hardware provider headquartered in Shanghai, it's
> product includes router and smart devices.
>
> Signed-off-by: He Yangxuan <yangxuan8282@gmail.com>
> ---
> Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
> 1 file changed, 1 insertion(+)
>
Reviewed-by: Rob Herring <robh@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v5 3/3] dt-bindings: arm: amlogic: Add Phicomm N1
2018-11-10 3:39 [PATCH v5 0/3] arm64: dts: meson-gxl: add support for phicomm n1 He Yangxuan
2018-11-10 3:39 ` [PATCH v5 1/3] " He Yangxuan
2018-11-10 3:39 ` [PATCH v5 2/3] dt-bindings: Add vendor prefix for PHICOMM Co., Ltd He Yangxuan
@ 2018-11-10 3:39 ` He Yangxuan
2018-11-11 22:41 ` Rob Herring
2018-11-29 0:10 ` [PATCH v5 0/3] arm64: dts: meson-gxl: add support for phicomm n1 Kevin Hilman
3 siblings, 1 reply; 8+ messages in thread
From: He Yangxuan @ 2018-11-10 3:39 UTC (permalink / raw)
To: linux-amlogic
Cc: linux-arm-kernel, linux-kernel, devicetree, carlo, khilman,
narmstrong, He Yangxuan
Add bindings documentation for the Phicomm N1.
Signed-off-by: He Yangxuan <yangxuan8282@gmail.com>
---
Documentation/devicetree/bindings/arm/amlogic.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/arm/amlogic.txt b/Documentation/devicetree/bindings/arm/amlogic.txt
index 4498292b8..93177f38e 100644
--- a/Documentation/devicetree/bindings/arm/amlogic.txt
+++ b/Documentation/devicetree/bindings/arm/amlogic.txt
@@ -91,6 +91,7 @@ Board compatible values (alphabetically, grouped by SoC):
- "amlogic,p230" (Meson gxl s905d)
- "amlogic,p231" (Meson gxl s905d)
+ - "phicomm,n1" (Meson gxl s905d)
- "amlogic,p241" (Meson gxl s805x)
--
2.11.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v5 3/3] dt-bindings: arm: amlogic: Add Phicomm N1
2018-11-10 3:39 ` [PATCH v5 3/3] dt-bindings: arm: amlogic: Add Phicomm N1 He Yangxuan
@ 2018-11-11 22:41 ` Rob Herring
0 siblings, 0 replies; 8+ messages in thread
From: Rob Herring @ 2018-11-11 22:41 UTC (permalink / raw)
Cc: linux-amlogic, linux-arm-kernel, linux-kernel, devicetree, carlo,
khilman, narmstrong, He Yangxuan
On Sat, 10 Nov 2018 11:39:04 +0800, He Yangxuan wrote:
> Add bindings documentation for the Phicomm N1.
>
> Signed-off-by: He Yangxuan <yangxuan8282@gmail.com>
> ---
> Documentation/devicetree/bindings/arm/amlogic.txt | 1 +
> 1 file changed, 1 insertion(+)
>
Reviewed-by: Rob Herring <robh@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v5 0/3] arm64: dts: meson-gxl: add support for phicomm n1
2018-11-10 3:39 [PATCH v5 0/3] arm64: dts: meson-gxl: add support for phicomm n1 He Yangxuan
` (2 preceding siblings ...)
2018-11-10 3:39 ` [PATCH v5 3/3] dt-bindings: arm: amlogic: Add Phicomm N1 He Yangxuan
@ 2018-11-29 0:10 ` Kevin Hilman
3 siblings, 0 replies; 8+ messages in thread
From: Kevin Hilman @ 2018-11-29 0:10 UTC (permalink / raw)
To: linux-amlogic
Cc: linux-arm-kernel, linux-kernel, devicetree, carlo, narmstrong,
He Yangxuan
He Yangxuan <yangxuan8282@gmail.com> writes:
> This patch adds support for the Phicomm N1. This device based on P230 reference design.
> The phy is RTL8211F, need to disable Energy Efficient Ethernet (EEE) to make it stable.
> And this box doesn't have cvbs, so disable related section in device tree.
Thanks for the series.
Queued for v4.21 (branch: v4.21/dt64)
Kevin
^ permalink raw reply [flat|nested] 8+ messages in thread