mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 19:56:45 +07:00
ad00e080eb
Fix the following warnings from dtc by adding the unit name to memory nodes: Warning (unit_address_vs_reg): Node /memory has a reg or ranges property, but no unit name Converted using the following command: perl -p0777i -e 's/memory \{\n\t\treg = \<0x+([0-9a-f])/memory\@$1$\0000000 \{\n\t\treg = <0x$1/m' `find ./arch/arm/boot/dts -name "imx*"` The files below were manually fixed: -imx1-ads.dts -imx1-apf9328.dts -imx6q-pistachio.dts Signed-off-by: Marco Franchi <marco.franchi@nxp.com> Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
69 lines
1.5 KiB
Plaintext
69 lines
1.5 KiB
Plaintext
/*
|
|
* Copyright 2013 Eukréa Electromatique <denis@eukrea.com>
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
*
|
|
* The code contained herein is licensed under the GNU General Public
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
* Version 2 or later at the following locations:
|
|
*
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "imx35.dtsi"
|
|
|
|
/ {
|
|
model = "Freescale i.MX35 Product Development Kit";
|
|
compatible = "fsl,imx35-pdk", "fsl,imx35";
|
|
|
|
memory@80000000 {
|
|
reg = <0x80000000 0x8000000>,
|
|
<0x90000000 0x8000000>;
|
|
};
|
|
};
|
|
|
|
&esdhc1 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_esdhc1>;
|
|
status = "okay";
|
|
};
|
|
|
|
&iomuxc {
|
|
imx35-pdk {
|
|
pinctrl_esdhc1: esdhc1grp {
|
|
fsl,pins = <
|
|
MX35_PAD_SD1_CMD__ESDHC1_CMD 0x80000000
|
|
MX35_PAD_SD1_CLK__ESDHC1_CLK 0x80000000
|
|
MX35_PAD_SD1_DATA0__ESDHC1_DAT0 0x80000000
|
|
MX35_PAD_SD1_DATA1__ESDHC1_DAT1 0x80000000
|
|
MX35_PAD_SD1_DATA2__ESDHC1_DAT2 0x80000000
|
|
MX35_PAD_SD1_DATA3__ESDHC1_DAT3 0x80000000
|
|
>;
|
|
};
|
|
|
|
pinctrl_uart1: uart1grp {
|
|
fsl,pins = <
|
|
MX35_PAD_TXD1__UART1_TXD_MUX 0x1c5
|
|
MX35_PAD_RXD1__UART1_RXD_MUX 0x1c5
|
|
MX35_PAD_CTS1__UART1_CTS 0x1c5
|
|
MX35_PAD_RTS1__UART1_RTS 0x1c5
|
|
>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&nfc {
|
|
nand-bus-width = <16>;
|
|
nand-ecc-mode = "hw";
|
|
nand-on-flash-bbt;
|
|
status = "okay";
|
|
};
|
|
|
|
&uart1 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_uart1>;
|
|
uart-has-rtscts;
|
|
status = "okay";
|
|
};
|