mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 06:34:11 +08:00
6d4e1ff528
The PHYTEC PEB-AV-02 adapter adds the capability to connect a parallel LCD display to the phyBOARD-Segin full featured, either with capacitive or resistive touch. Signed-off-by: Stefan Riedmueller <s.riedmueller@phytec.de> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
32 lines
625 B
Plaintext
32 lines
625 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (C) 2019 PHYTEC Messtechnik GmbH
|
|
* Author: Stefan Riedmueller <s.riedmueller@phytec.de>
|
|
*/
|
|
|
|
#include "imx6ul-phytec-segin.dtsi"
|
|
|
|
/ {
|
|
model = "PHYTEC phyBOARD-Segin i.MX6 ULL";
|
|
compatible = "phytec,imx6ull-pbacd-10", "phytec,imx6ull-pcl063","fsl,imx6ull";
|
|
};
|
|
|
|
&iomuxc {
|
|
/delete-node/ flexcan1engrp;
|
|
/delete-node/ rtcintgrp;
|
|
};
|
|
|
|
&iomuxc_snvs {
|
|
princtrl_flexcan1_en: flexcan1engrp {
|
|
fsl,pins = <
|
|
MX6ULL_PAD_SNVS_TAMPER2__GPIO5_IO02 0x17059
|
|
>;
|
|
};
|
|
|
|
pinctrl_rtc_int: rtcintgrp {
|
|
fsl,pins = <
|
|
MX6ULL_PAD_SNVS_TAMPER1__GPIO5_IO01 0x17059
|
|
>;
|
|
};
|
|
};
|