1. 10 7月, 2012 1 次提交
  2. 07 7月, 2012 2 次提交
    • F
      mx53loco: Remove CONFIG_SYS_I2C_SLAVE definition · fd8223ea
      Fabio Estevam 提交于
      According to include/i2c.h:
      
      "/*
       * Many boards/controllers/drivers don't support an I2C slave interface so
       * provide a default slave address for them for use in common code.  A real
       * value for CONFIG_SYS_I2C_SLAVE should be defined for any board which does
       * support a slave interface.
       */
      #ifndef	CONFIG_SYS_I2C_SLAVE
      #define	CONFIG_SYS_I2C_SLAVE	0xfe
      #endif
      "
      
      As the mxc_i2c driver does not support slave mode, there is no need
      to define CONFIG_SYS_I2C_SLAVE in i.MX board file.
      
      Cc: Jason Liu <r64343@freescale.com>
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      fd8223ea
    • F
      mx53loco: Fix revision of Dialog boards · eae08eb2
      Fabio Estevam 提交于
      Original code was assuming that the fuse revision version for all mx53loco boards
      based on Dialog PMIC was the same, which is not the case.
      
      Force the revision of all Dialog-based boards to 0.
      
      This fixes a kernel crash when PMIC is accessed in the 2.6.35 kernel
      for Dialog rev E boards.
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      eae08eb2
  3. 21 6月, 2012 2 次提交
  4. 25 5月, 2012 1 次提交
  5. 15 5月, 2012 5 次提交
  6. 11 12月, 2011 1 次提交
  7. 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
  8. 05 11月, 2011 1 次提交
  9. 04 11月, 2011 1 次提交
  10. 06 10月, 2011 1 次提交
  11. 01 10月, 2011 1 次提交
  12. 04 9月, 2011 1 次提交
  13. 23 5月, 2011 4 次提交
  14. 28 4月, 2011 2 次提交
  15. 02 2月, 2011 3 次提交
  16. 22 11月, 2010 1 次提交
  17. 30 10月, 2010 1 次提交
  18. 28 10月, 2010 2 次提交
    • S
      mx51evk: support new relocation scheme · 1ab027cb
      Shawn Guo 提交于
      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: NShawn Guo <shawn.gsc@gmail.com>
      1ab027cb
    • S
      mx51evk: consolidate env for mmcboot and netboot · 06982534
      Shawn Guo 提交于
      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: NShawn Guo <shawn.gsc@gmail.com>
      06982534
  19. 27 10月, 2010 1 次提交
    • W
      Replace CONFIG_SYS_GBL_DATA_SIZE by auto-generated value · 25ddd1fb
      Wolfgang Denk 提交于
      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: NWolfgang Denk <wd@denx.de>
      Acked-by: NKumar Gala <galak@kernel.crashing.org>
      25ddd1fb
  20. 18 10月, 2010 1 次提交
  21. 30 9月, 2010 1 次提交
    • S
      MXC: Correct SPI_CPOL setting in SPI driver · 9f481e95
      Stefano Babic 提交于
      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: NStefano Babic <sbabic@denx.de>
      Signed-off-by: NDavid Jander <david.jander@protonic.nl>
      9f481e95
  22. 11 5月, 2010 1 次提交
  23. 05 5月, 2010 1 次提交
  24. 30 4月, 2010 1 次提交
  25. 18 4月, 2010 1 次提交
  26. 08 3月, 2010 1 次提交