1. 15 5月, 2021 1 次提交
  2. 02 5月, 2021 1 次提交
    • I
      ARM:imx:imx8mq-cm: Add support for Ronetix iMX8MQ-CM · 7666cccf
      Ilko Iliev 提交于
      Supported peripherals: Ethernet, eMMC, Serial.
      
      U-Boot SPL 2021.04-00911-g5fa1e2ff-dirty (Apr 23 2021 - 09:11:14
      +0200)
      Normal Boot
      Trying to boot from MMC2
      
      U-Boot 2021.04-00911-g5fa1e2ff-dirty (Apr 23 2021 - 09:11:14 +0200)
      
      CPU:   Freescale i.MX8MQ rev2.1 at 1000 MHz
      Reset cause: POR
      Model: Ronetix iMX8M-CM SoM
      DRAM:  1 GiB
      WDT:   Started with servicing (60s timeout)
      MMC:   FSL_SDHC: 0, FSL_SDHC: 1
      Loading Environment from MMC... OK
      In:    serial
      Out:   serial
      Err:   serial
      Net:
      Warning: ethernet@30be0000 (eth0) using random MAC address -
      42:0d:e7:78:da:53
      eth0: ethernet@30be0000
      Hit any key to stop autoboot:  0
      u-boot=>
      Signed-off-by: NIlko Iliev <iliev@ronetix.at>
      7666cccf
  3. 09 4月, 2021 1 次提交
  4. 08 4月, 2021 1 次提交
  5. 30 1月, 2021 1 次提交
  6. 23 1月, 2021 1 次提交
    • A
      imx8mm: configs: add support for distro boot commands · 2df8930b
      Alice Guo 提交于
      Supported boot device types in iMX8MM: MMC, DHCP.
      
      CONFIG_CMD_PART is added for command part and CONFIG_CMD_FS_GENERIC is
      for command fstype.
      
      CONFIG_BOOTCOMMAND which is defined in include/configs/imx8mm_evk.h is
      deleted because "run distro_bootcmd" is required to be the default boot
      mode.
      
      scriptaddr is the location in RAM where boot.scr.uimg/boot.scr will be
      loaded to prior to execution.
      
      kernel_addr_r is the location in RAM where the kernel will be loaded to.
      
      Delete unnecessary environment variables.
      Reviewed-by: NPeng Fan <peng.fan@nxp.com>
      Signed-off-by: NAlice Guo <alice.guo@nxp.com>
      2df8930b
  7. 26 12月, 2020 1 次提交
  8. 08 8月, 2020 1 次提交
  9. 29 7月, 2020 1 次提交
  10. 28 7月, 2020 1 次提交
  11. 07 7月, 2020 1 次提交
  12. 08 6月, 2020 1 次提交
    • F
      imx8mm_evk: Select the watchdog driver · c5a015c3
      Fabio Estevam 提交于
      Currently the watchdog driver is not selected, which causes the following
      warnings in both SPL and U-Boot proper:
      
      U-Boot SPL 2020.07-rc1-00387-g67887903 (May 07 2020 - 23:49:27 -0300)
      Normal Boot
      WDT:   Started without servicing (60s timeout)
      Trying to boot from MMC1
      
      U-Boot 2020.07-rc1-00387-g67887903 (May 07 2020 - 23:49:27 -0300)
      
      CPU:   Freescale i.MX8MMQ rev1.0 at 1200 MHz
      Reset cause: POR
      Model: FSL i.MX8MM EVK board
      DRAM:  2 GiB
      WDT:   Started without servicing (60s timeout)
      ....
      
      System reboots after staying 60s in the U-Boot prompt.
      
      Fix this problem by enabling CONFIG_WATCHDOG so that watchdog can be
      properly serviced.
      Suggested-by: NMarek Vasut <marex@denx.de>
      Signed-off-by: NFabio Estevam <festevam@gmail.com>
      c5a015c3
  13. 01 5月, 2020 2 次提交
  14. 29 4月, 2020 1 次提交
  15. 23 1月, 2020 1 次提交
  16. 07 1月, 2020 1 次提交
  17. 21 11月, 2019 2 次提交
    • T
      env: Finish migration of common ENV options · a09fea1d
      Tom Rini 提交于
      - In ARMv8 NXP Layerscape platforms we also need to make use of
        CONFIG_SYS_RELOC_GD_ENV_ADDR now, do so.
      - On ENV_IS_IN_REMOTE, CONFIG_ENV_OFFSET is never used, drop the define
        to 0.
      - Add Kconfig entry for ENV_ADDR.
      - Make ENV_ADDR / ENV_OFFSET depend on the env locations that use it.
      - Add ENV_xxx_REDUND options that depend on their primary option and
        SYS_REDUNDAND_ENVIRONMENT
      - On a number of PowerPC platforms, use SPL_ENV_ADDR not CONFIG_ENV_ADDR
        for the pre-main-U-Boot environment location.
      - On ENV_IS_IN_SPI_FLASH, check not for CONFIG_ENV_ADDR being set but
        rather it being non-zero, as it will now be zero by default.
      - Rework the env_offset absolute in env/embedded.o to not use
        CONFIG_ENV_OFFSET as it was the only use of ENV_OFFSET within
        ENV_IS_IN_FLASH.
      - Migrate all platforms.
      
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Joe Hershberger <joe.hershberger@ni.com>
      Cc: Patrick Delaunay <patrick.delaunay@st.com>
      Cc: uboot-stm32@st-md-mailman.stormreply.com
      Signed-off-by: NTom Rini <trini@konsulko.com>
      Acked-by: NJoe Hershberger <joe.hershberger@ni.com>
      Reviewed-by: NSimon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
      a09fea1d
    • T
      env: Add CONFIG_SYS_RELOC_GD_ENV_ADDR symbol · 8d8ee47e
      Tom Rini 提交于
      Today in initr_reloc_global_data() we use some non-obvious tests to
      determine if we need to relocate the env_addr within gd or not.  In
      order to facilitate migration of other symbols to Kconfig we need to
      introduce a new symbol for this particular use case.
      
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Joe Hershberger <joe.hershberger@ni.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      8d8ee47e
  18. 05 11月, 2019 1 次提交
  19. 04 11月, 2019 1 次提交
  20. 08 10月, 2019 1 次提交