summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-03-05fsl-imx8mm-verdin.dts: fix eth phy power upMax Krummenacher
The PHY reset circuitry may keep the PHY in reset for up to 200ms after powerup. Use the regulator startup-delay-us property to wait that time before talking to the PHY. While at it unify that regulator with the Linux dts file. Related-to: ELB-1970 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
2020-03-05fsl-imx8mm-verdin.dts: remove fsl,rgmii_rxc_dly et. al.Max Krummenacher
The FEC in the i.MX8MM doesn't have this feature. So don't pretend one can use it. Additionally in the 2018.03 downstream U-Boot the property is not evaluated, not even for the i.MX8 and i.MX8X based machines. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
2020-03-05verdin-imx8: do not undef configs configured using KconfigMax Krummenacher
Do not undef CMD config defines which are set by Kconfig. This allows to enable those commands using Kconfig. (Taken from commit 26f0fb6c61e94f8ba52bcc0b4946d378e682ccff 'apalis-imx8: do not undef configs configured using Kconfig') Related-to: TOR-498 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
2020-03-05ARM: dts: apalis-imx8qm: update node fec1Philippe Schenker
It turned out that on the new Apalis iMX8 QuadPlus V1.1A the ethernet is no longer working. I suspect this due to missing muxing for 1.8V/3.3V. Due to that I copy the whole ethernet pinmux and node over from the Linux side. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05config: apalis-imx8: fix auto-negotiation timeout errorOleksandr Suvorov
Sometimes an ethernet PHY interface can’t complete auto-negotiation and returns “timeout” error. Overriding default timeout value fixes this issue. Related-to: #58999 Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com> Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
2020-03-05verdin-imx8mm: fix usb_1 device aka peripheral operationMarcel Ziswiler
With this e.g. fastboot or UMS work. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05verdin-imx8mm: lpddr4_timing.c: intial lpddr4 calibration dataMax Krummenacher
DDR calibration created with mscale_ddr_tool_v210_setup.exe using MX8M_Mini_LPDDR4_RPA_v14 Verdin iMX8MM V1.0.xlsx as of 1. Nov. 2019. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
2020-03-05board: toradex: add verdin imx8mm 2gb wb it v1.0a module supportMax Krummenacher
This commit adds initial support for the Toradex Verdin iMX8MM 2GB WB IT V1.0A module. They are now strapped to boot from eFuses which are factory fused to properly boot from their on-module eMMC. U-Boot supports either booting from the on-module eMMC or may be used for recovery purpose using the universal update utility (uuu) aka mfgtools 3.0. Functionality wise the following is known to be working: - eMMC, 8-bit and 4-bit MMC/SD card slots - Gigabit Ethernet - GPIOs - I2C - USB_1 peripheral: fastboot or ums - USB_2 host: USB mass storage To prepare the program image for eMMC fastboot using imx-mkimage and subsequently flash it using U-Boot proceed as follows: cd imx-mkimage/ make SOC=iMX8MM flash_evk_emmc_fastboot load mmc 1:1 $loadaddr flash.bin setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt ${blkcnt} / 0x200 mmc dev 0 1 mmc write ${loadaddr} 0x2 ${blkcnt} To prepare the program image for use with USB recovery aka serial downloader using imx-mkimage and subsequently download using uuu with an uuu.auto script proceed as follows: cd imx-mkimage/ make SOC=iMX8MM flash_evk uuu_version 1.3.34 SDP: boot -f flash.bin CFG: SDPU: -vid 0x0525 -pid 0xb4a4 SDPU: delay 1000 SDPU: write -f flash.bin -offset 0x57c00 SDPU: jump Fusing i.MX 8MM SoC and configuring eMMC for fastboot (already done during manufacturing): fuse prog 1 3 0x100020d6 (BT_FUSE_SEL, eMMC boot, SD1, fast boot, 4-bit DDR, high speed, 1.8V) fuse prog 2 2 0x00000001 (enable boot ack) mmc bootbus 0 1 0 2 (4-bit, reset bus width, DDR) mmc partconf 0 1 1 0 (booting from boot area partition 1, send acknowledge) SD manufaccture boot: SD manufacture boot only works as long as the module is un-fused and SD_1_PWR_EN is bypassed on the carrier board. cd imx-mkimage/ make SOC=iMX8MM flash_evk sudo dd if=iMX8M/flash.bin of=/dev/mmcblk0 bs=1024 seek=33 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05tdx-cfg-block: add verdin imx8mmMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05dt-bindings: pinctrl: imx8mm: add alternative uart muxingsMax Krummenacher
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
2020-03-05pins-imx8mm.h: add uart1 muxing on sai2 pinsMax Krummenacher
Copied from linux, branch nxp/imx_4.14.98_2.2.0 @ e6c2f6322962. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
2020-03-05imx8mm-evk, imx8mm-val: take changed sd/mmc spl boot order into accountMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05arm: mach-imx: hard-code emmc to mmc1 and sd to mmc2 for i.mx 8mmMarcel Ziswiler
Just like on any and all other i.MX 8 Series devices use MMC1 for eMMC and SD2 for SD card. This fixes previously reverted commit 6c6206ad1a5a ("MLK-18243-17: arm: mach-imx: fix sd to mmc1 and emmc to mmc2 for i.MX8MM"). Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05Revert "MLK-18243-17: arm: mach-imx: fix sd to mmc1 and emmc to mmc2 for ↵Marcel Ziswiler
i.MX8MM" Nope, hard-coding SD to mmc1 and eMMC to mmc2 is wrong in so many ways! This reverts commit 6c6206ad1a5a3c70118a3ecf526b0ff00088adf7.
2020-03-05net: dm: fec: Fix regulator enable when using DM_REGULATORAdam Ford
When DM_REGULATOR is enabled, the driver attempts to call regulator_autoset() which expects the regulators to be on at boot and/or always on and fails if they are not true. For a more generic approach, this patch just calls regulator_set_enable() which shouldn't have such restrictions. Fixes: ad8c43cbcafb ("net: dm: fec: Support the phy-supply binding") Signed-off-by: Adam Ford <aford173@gmail.com> Tested-by: Martin Fuzzey <martin.fuzzey@flowbird.group> Acked-by: Joe Hershberger <joe.hershberger@ni.com> (cherry picked from commit 8f1a5ac797baac5b40f93eac80a7810f0a771ecf)
2020-03-05net: dm: fec: Support the phy-supply bindingMartin Fuzzey
Configure the phy regulator if defined by the "phy-supply" DT phandle. Signed-off-by: Martin Fuzzey <martin.fuzzey@flowbird.group> Acked-by: Joe Hershberger <joe.hershberger@ni.com> (cherry picked from commit ad8c43cbcafbbb21efc9e26bda7a6b1e37428adc)
2020-03-05tdx-cfg-block: fix while checking for uninitialised lenMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05tdx-cfg-block: fix colibri-imx8x defineMarcel Ziswiler
Fix CONFIG_TARGET_COLIBRI_IMX8QXP vs. CONFIG_TARGET_COLIBRI_IMX8X ifdefs. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05apalis/colibri-imx8/8x: streamline hush shell promptsMarcel Ziswiler
Just like on any of our other modules also use the module type as hush shell prompt. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05apalis/colibri imx8/8x: unify kconfig descriptionsMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05apalis imx8: change kconfig spellingMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05config: apalis/colibri-imx8*: Add fdt_high variable without valuePhilippe Schenker
This will actually clear the value of a variable that is potentially still existing. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05ARM: dts: imx8qxp-apalis: Remove phy-reset-post-delayPhilippe Schenker
It was decided to get rid of the extra capacitor on the reset line so this is no longer needed Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05apalis-imx8/x/colibri-imx8qxp: skip resource checkingMarcel Ziswiler
Define CONFIG_SKIP_RESOURCE_CHECING which skips the downstream proprietary resource checking preventing us from booting any kind of mainline device tree based Linux kernels. While at it also fix some indentations/whitespaces. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05apalis-imx8/x/colibri-imx8qxp: enable device tree overlay supportStefan Agner
Enable device tree overlay support which is used in the current dtconf implementation in TorizonCore. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
2020-03-05configs: apalis/colibri-imx8: change bootdelay to one secondPhilippe Schenker
Use one second for the bootdelay like on all other toradex boards Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05include: apalis-imx8.h: change default devicetree filePhilippe Schenker
Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05include: apalis-imx8.h: change tdxargs to defargs for pci_nomsiPhilippe Schenker
tdxargs are meant for temporary adjusting U-Boot. Use defargs that suits this purpose better. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05include: apalis-imx8.h: add default tdxargs pci=nomsiPhilippe Schenker
As we have issues with MSI enabled we will disable it in default environment. Issue: Kernel panic Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05Machine: Apalis-iMX8X: Change name from apalis-imx8qxp to apalis-imx8xPhilippe Schenker
Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05include: apalis-imx8qxp.h: new fdt_file name and delete earlyconPhilippe Schenker
This commit uses the correct devicetree filename and makes sure, it doesn't use earlycon by default while at it make sure to use only tabs. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05fec_mxc.c: add possibility for phy-reset-post-delayPhilippe Schenker
This adds the possibility to add a delay after a reset in DT. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05apalis-imx8qxp: initial addPhilippe Schenker
Initial board support for Apalis iMX8QXP using a copy of Colibri iMX8QXP. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05tdx-cfg-block: add Apalis-iMX8X to get_cfgblock_interactivePhilippe Schenker
Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05tdx-cfg-block: Add prototype numbering and Apalis iMX8XPhilippe Schenker
Toradex will use product-id 2600 upwards as id's for prototypes. This commit adds this functionality to the config block. The Apalis iMX8X is as well added in the same commit as it is the first prototype and the first prodid in that range. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
2020-03-05apalis-imx8/colibri-imx8x: set fdtfile since it is used by distro bootcmdStefan Agner
The environment variable fdtfile is used in include/config_distro_bootcmd.h hence we should make sure it is set by default. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
2020-03-05apalis-imx8/colibri-imx8x: use proper distroboot scriptMarcel Ziswiler
Rather than using NXP proprietary boot script transition to using proper distroboot one. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05colibri-imx8x: enable FDT relocationStefan Agner
FDT relocation disabled seems to cause issues when using TorizonCore, probably related to ramdisk. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
2020-03-05colibri-imx8x/apalis-imx8: converge scriptaddr for distrobootStefan Agner
Distro boot scripts require scriptaddr. Make sure it is defined to a sensible address for both Apalis iMX8 as well as Colibri iMX8X. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
2020-03-05apalis-imx8/colibri-imx8qxp: integrate fastboot recoveryMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05colibri-imx8qxp: change default device treeMarcel Ziswiler
Change default device tree to the regular one now that parallel RGB is working. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05colibri-imx8qxp: modify default ramdisk loading addressMing Liu
The current loading address for the ramdisk images overlaps with reserved memory for the decoder_boot section of the device tree (see fsl-imx8qxp.dtsi). This generates a kernel panic early in the boot process when trying to access that memory region. Signed-off-by: Ming Liu <liu.ming50@gmail.com>
2020-03-05colibri-imx8qxp: enable env import by defaultMing Liu
Enable env import by default. It is enabled in other modules too and it is required to boot TorizonCore. Signed-off-by: Ming Liu <liu.ming50@gmail.com>
2020-03-05colibri-imx8qxp: make sure config block fdt fix-ups are calledMing Liu
Make sure the config block information are passed to the kernel using the device tree properties toradex,product-id, board-rev and serial-number. Signed-off-by: Ming Liu <liu.ming50@gmail.com>
2020-03-05colibri-imx8qxp: do not undef configs configured using KconfigMing Liu
Do not undef CMD config defines which are set by Kconfig. This allows to enable those commands using Kconfig. Signed-off-by: Ming Liu <liu.ming50@gmail.com>
2020-03-05colibri-imx8x: bootcmd_mfg, distroboot and bootm_len fixesMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05colibri-imx8qxp: move environment into first boot areaMax Krummenacher
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05apalis-imx8: fix ramdisk relocation addressMarcel Ziswiler
Fix ramdisk relocation address to work accross all our use cases. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2020-03-05apalis-imx8: enable FDT relocationStefan Agner
FDT relocation disabled seems to cause issues when using TorizonCore, probably related to ramdisk. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
2020-03-05apalis-imx8: add scriptaddr for distrobootStefan Agner
Distro boot scripts require scriptaddr. Make sure it is defined to a sensible address. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>