Skip to content
Snippets Groups Projects
  1. Oct 20, 2012
  2. Oct 16, 2012
  3. Oct 15, 2012
  4. Sep 01, 2012
  5. Jul 07, 2012
  6. Jun 20, 2012
  7. May 15, 2012
  8. Apr 16, 2012
  9. Feb 12, 2012
    • Dirk Behme's avatar
      i.mx6q: configs: Add fdt_high and initrd_high variables · 7e9603e7
      Dirk Behme authored
      
      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: default avatarDirk Behme <dirk.behme@de.bosch.com>
      CC: Jason Liu <jason.hui@linaro.org>
      CC: Stefano Babic <sbabic@denx.de>
      Acked-by: default avatarJason Liu <jason.hui@linaro.org>
      7e9603e7
  10. Jan 16, 2012
  11. Dec 09, 2011
  12. Dec 06, 2011
    • Stefano Babic's avatar
      MX: serial_mxc: cleanup removing nasty #ifdef · 40f6fffe
      Stefano Babic authored
      
      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: default avatarStefano 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: default avatarJason Liu <jason.hui@linaro.org>
      40f6fffe
  13. Nov 04, 2011
  14. Nov 03, 2011
  15. Oct 05, 2011
  16. Sep 30, 2011
  17. Sep 03, 2011
  18. May 23, 2011
  19. Apr 28, 2011
    • Grant Likely's avatar
      Add CONFIG_OF_LIBFDT to more boards. · 2fa8ca98
      Grant Likely authored
      
      The following boards gain device tree support with this patch:
      
      ca9x4_ct_vxp - Versatile Express
      
      i.mx5 boards:
      efikamx
      mx51evk
      mx53evk
      
      OMAP boards:
      devkit8000
      igep0020
      igep0030
      omap3_overo
      omap3_pandora
      omap4_sdp3430
      omap3_zoom1
      omap3_zoom2
      omap4_panda
      omap4_sdp4430
      
      Tegra boards:
      Harmony
      
      Signed-off-by: default avatarGrant Likely <grant.likely@linaro.org>
      2fa8ca98
  20. Apr 27, 2011
  21. Feb 01, 2011
  22. Nov 21, 2010
  23. Oct 29, 2010
  24. Oct 28, 2010
    • Shawn Guo's avatar
      mx51evk: support new relocation scheme · 1ab027cb
      Shawn Guo authored
      
      This patch is to fix build breakage and support new relocation
      scheme for mx51evk.
      
      - Correct IRAM base address and add size definition
      
        The IRAM starts from 0x1FFE0000 on final revsion i.mx51 than
        0x1FFE8000 which is for older revision.
      
      - Include imx-regs.h in mx51evk.h
      
        Definitions like CSD0_BASE_ADDR and IRAM_BASE_ADDR can be
        referred to.
      
      - Define CONFIG_SYS_INIT_RAM_ADDR and CONFIG_SYS_INIT_RAM_SIZE
      
        They are used to define init RAM layout.
      
      - Remove comment for CONFIG_SYS_GBL_DATA_SIZE which has been
        buried by Wolfgang's commit below
      
        25ddd1fb: Replace CONFIG_SYS_GBL_DATA_SIZE by auto-generated value
      
      Signed-off-by: default avatarShawn Guo <shawn.gsc@gmail.com>
      1ab027cb
    • Shawn Guo's avatar
      mx51evk: consolidate env for mmcboot and netboot · 06982534
      Shawn Guo authored
      
      This patch is to consolidate default mx51evk env for two primary
      boot modes, mmcboot and netboot.
      
      It also cleans some unused env like netdev, uboot and redundant
      env like loadaddr since CONFIG_LOADADDR already defines it.
      
      Signed-off-by: default avatarShawn Guo <shawn.gsc@gmail.com>
      06982534
  25. Oct 26, 2010
    • Wolfgang Denk's avatar
      Replace CONFIG_SYS_GBL_DATA_SIZE by auto-generated value · 25ddd1fb
      Wolfgang Denk authored
      
      CONFIG_SYS_GBL_DATA_SIZE has always been just a bad workarond for not
      being able to use "sizeof(struct global_data)" in assembler files.
      Recent experience has shown that manual synchronization is not
      reliable enough.  This patch renames CONFIG_SYS_GBL_DATA_SIZE into
      GENERATED_GBL_DATA_SIZE which gets automatically generated by the
      asm-offsets tool.  In the result, all definitions of this value can be
      deleted from the board config files.  We have to make sure that all
      files that reference such data include the new <asm-offsets.h> file.
      
      No other changes have been done yet, but it is obvious that similar
      changes / simplifications can be done for other, related macro
      definitions as well.
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      Acked-by: default avatarKumar Gala <galak@kernel.crashing.org>
      25ddd1fb
  26. Oct 18, 2010
  27. Sep 30, 2010
    • Stefano Babic's avatar
      MXC: Correct SPI_CPOL setting in SPI driver · 9f481e95
      Stefano Babic authored
      
      The handling of the SPI_CPOL bit inside the SPI
      driver was wrong. As reported by the manual,
      the meaning of the SSPOL inside the
      configuration register is the same as reported
      by SPI specification (0 if low in idle, 1 is high
      on idle). The driver inverts this logic.
      
      Because this patch sets the logic as specified, it is required
      to clear the CPOL bit in the configuration file to adapt
      to the correct logic.
      
      Signed-off-by: default avatarStefano Babic <sbabic@denx.de>
      Signed-off-by: default avatarDavid Jander <david.jander@protonic.nl>
      9f481e95
  28. May 10, 2010
  29. May 05, 2010
Loading