1. 10 9月, 2016 1 次提交
  2. 26 4月, 2016 1 次提交
  3. 30 10月, 2015 1 次提交
  4. 02 10月, 2015 1 次提交
    • A
      I2C: mxc_i2c: make I2C1 and I2C2 optional · 03544c66
      Albert ARIBAUD \\(3ADEV\\) 提交于
      The driver assumed that I2C1 and I2C2 were always enabled,
      and if they were not, then an asynchronous abort was (silently)
      raised, to be caught much later on in the Linux kernel.
      
      Fix this by making I2C1 and I2C2 optional just like I2C3 and I2C4
      are.
      
      To make the change binary-invariant, declare I2C1 and I2C2 in
      every include/configs/ file which defines CONFIG_SYS_I2C_MXC.
      
      Also, while updating README about CONFIG_SYS_I2C_MXC_I2C1 and
      CONFIG_SYS_I2C_MXC_I2C2, add missing descriptions for I2C4 speed
      (CONFIG_SYS_MXC_I2C4_SPEED) and slave (CONFIG_SYS_MXC_I2C4_SLAVE)
      config options.
      Signed-off-by: NAlbert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr>
      03544c66
  5. 02 8月, 2015 1 次提交
  6. 26 5月, 2015 1 次提交
    • P
      imx6: move all standard includes to mx6_common.h · 056845c2
      Peter Robinson 提交于
      The linux/sizes.h, asm/arch/imx-regs.h, asm/imx-common/gpio.h,
      config_cmd_default.h includes are used fairly universally across imx6 boards
      so include them in mx6_common.h by default.
      
      We define CONFIG_SYS_NO_FLASH before config_cmd_default.h  so that we
      don't have to undef CONFIG_CMD_FLASH / CONFIG_CMD_IMLS everywhere.
      Signed-off-by: NPeter Robinson <pbrobinson@gmail.com>
      056845c2
  7. 23 4月, 2015 1 次提交
  8. 19 12月, 2014 1 次提交
  9. 13 11月, 2014 1 次提交
  10. 21 10月, 2014 1 次提交
  11. 28 5月, 2014 1 次提交
  12. 15 4月, 2014 1 次提交
  13. 01 4月, 2014 1 次提交
    • M
      ARM: mx6: Add PCIe on SabreSDP · e919aa23
      Marek Vasut 提交于
      Add support for PCIe on MX6 SabreSDP board and enable the support
      in the config file.
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Cc: Stefano Babic <sbabic@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Liu Ying <Ying.Liu@freescale.com>
      e919aa23
  14. 13 1月, 2014 1 次提交
  15. 20 9月, 2013 1 次提交
  16. 27 7月, 2013 1 次提交
  17. 24 7月, 2013 1 次提交
  18. 26 6月, 2013 1 次提交
  19. 06 6月, 2013 1 次提交
    • F
      ARM: imx: Fix incorrect usage of CONFIG_SYS_MMC_ENV_PART · 7fb72c79
      Fabio Estevam 提交于
      When running the "save" command several times on a mx6qsabresd we see:
      
      U-Boot > save
      Saving Environment to MMC...
      Writing to MMC(1)... done
      U-Boot > save
      Saving Environment to MMC...
      MMC partition switch failed
      U-Boot > save
      Saving Environment to MMC...
      Writing to MMC(1)... done
      U-Boot > save
      Saving Environment to MMC...
      MMC partition switch failed
      U-Boot > save
      Saving Environment to MMC...
      Writing to MMC(1)... done
      U-Boot > save
      Saving Environment to MMC...
      MMC partition switch failed
      
      This issue is caused by the incorrect usage of CONFIG_SYS_MMC_ENV_PART.
      
      CONFIG_SYS_MMC_ENV_PART should be used to specify the mmc partition that stores
      the environment variables.
      
      On some imx boards it is been incorrectly used to pass the partition of kernel
      and dtb files for the 'mmcpart' script variable.
      
      Remove the CONFIG_SYS_MMC_ENV_PART usage and configure the 'mmcpart' variable
      directly.
      Reported-by: NJason Liu <r64343@freescale.com>
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      Acked-by: NJason Liu <r64343@freescale.com>
      7fb72c79
  20. 13 1月, 2013 2 次提交
  21. 06 1月, 2013 2 次提交
  22. 16 10月, 2012 5 次提交
  23. 01 9月, 2012 1 次提交
  24. 07 7月, 2012 1 次提交
  25. 21 6月, 2012 2 次提交
  26. 15 5月, 2012 1 次提交
  27. 16 4月, 2012 1 次提交
  28. 12 2月, 2012 1 次提交
    • D
      i.mx6q: configs: Add fdt_high and initrd_high variables · 7e9603e7
      Dirk Behme 提交于
      To be able to load the device tree and initrd correctly, set
      the fdt_high and initrd_high environment variables.
      
      Using 0xffffffff implies that the device tree and the initrd
      are initially copied to working addresses. This will avoid an
      additional copy.
      
      Loading the device tree to 0x30000000 and the initrd to 0x3c000000
      should work for both boards, the ARM2 and SabreLite.
      
      Example (SabreLite):
      
      fatload mmc 0:2 0x10000000 uImage
      fatload mmc 0:2 0x3c000000 uInitrd
      fatload mmc 0:2 0x30000000 board.dtb
      bootm 0x10000000 0x3c000000 0x30000000
      
      Note: This requires that the kernel has CONFIG_HIGHMEM enabled.
      Signed-off-by: NDirk Behme <dirk.behme@de.bosch.com>
      CC: Jason Liu <jason.hui@linaro.org>
      CC: Stefano Babic <sbabic@denx.de>
      Acked-by: NJason Liu <jason.hui@linaro.org>
      7e9603e7
  29. 16 1月, 2012 1 次提交
  30. 10 12月, 2011 1 次提交
  31. 07 12月, 2011 1 次提交
    • S
      MX: serial_mxc: cleanup removing nasty #ifdef · 40f6fffe
      Stefano Babic 提交于
      The serial driver for iMX SOCs is continuosly changed if a
      new SOC or not yet used port is used. CONFIG_SYS_<SOC>_<UART Port>
      defines were used only to find the base address for the selected UART.
      Instead of that, move the base address to the board configuration
      file and drop all #ifdef from driver.
      Signed-off-by: NStefano Babic <sbabic@denx.de>
      CC: Marek Vasut <marek.vasut@gmail.com>
      CC: Wolfgang Denk <wd@denx.de>
      CC: Fabio Estevam <fabio.estevam@freescale.com>
      CC: Helmut Raiger <helmut.raiger@hale.at>
      CC: John Rigby <jcrigby@gmail.com>
      CC: Matthias Weisser <weisserm@arcor.de>
      CC: Jason Liu <jason.hui@linaro.org>
      Acked-by: NJason Liu <jason.hui@linaro.org>
      40f6fffe
  32. 05 11月, 2011 1 次提交
  33. 04 11月, 2011 1 次提交