mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-29 09:14:10 +00:00
In addition to the PHYTEC phyCORE-i.MX 6UL the PHYTEC phyBOARD-Segin is
also available with the PHYTEC phyCORE-i.MX 6ULL. So this adds support
for this SOM and its baseboards.
It comes in a full featured option with either NAND flash or eMMC and in
a low cost option only available with NAND flash.
The hardware specs are:
- Full featured with NAND or eMMC:
* i.MX 6ULL Y2
* 512MB DDR3 memory
* 512MB NAND flash or 4GB/8GB eMMC
* Dual 10/100 Ethernet
* USB Host and USB OTG
* RS232
* MicroSD external storage
* Audio, RS232, I2C, SPI, CAN headers
* Further I/O options via A/V and Expansion headers
- Low cost with NAND:
* i.MX 6ULL Y0
* 256MB DDR3 memory
* 128MB NAND flash
* Single 10/100 Ethernet
* USB OTG
* RS232
* MicroSD external storage
* I2C
* Further I/O options via Expansion headers
Signed-off-by: Stefan Riedmueller <s.riedmueller@phytec.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
39 lines
749 B
Plaintext
39 lines
749 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;
|
|
/delete-node/ stmpegrp;
|
|
};
|
|
|
|
&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
|
|
>;
|
|
};
|
|
|
|
pinctrl_stmpe: stmpegrp {
|
|
fsl,pins = <
|
|
MX6ULL_PAD_SNVS_TAMPER3__GPIO5_IO03 0x17059
|
|
>;
|
|
};
|
|
};
|