1. 13 6月, 2009 8 次提交
    • P
      i2c: Remove deprecated individual i2c commands · d48eb513
      Peter Tyser 提交于
      The following individual I2C commands have been removed: imd, imm, inm,
      imw, icrc32, iprobe, iloop, isdram.
      
      The functionality of the individual commands is still available via
      the 'i2c' command.
      
      This change only has an impact on those boards which did not have
      CONFIG_I2C_CMD_TREE defined.
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      d48eb513
    • P
      i2c: Create common default i2c_[set|get]_bus_speed() functions · 655b34a7
      Peter Tyser 提交于
      New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
      replace a number of architecture-specific implementations.
      
      Also, providing default functions will allow all boards to enable
      CONFIG_I2C_CMD_TREE.  This was previously not possible since the
      tree-form of the i2c command provides the ability to display and modify
      the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
      present.
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      655b34a7
    • P
      cm5200: Make function test command names more unique · 8229e9c0
      Peter Tyser 提交于
      Add "_test" to cm5200's function test command names to prevent
      overlap with common, global function names.  Originally, the
      "do_i2c" function test command interfered with
      common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
      
      The functions were also made static as they are not globally accessed.
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      8229e9c0
    • P
      tsi108_i2c: Add i2c_init() stub function · f0722ee7
      Peter Tyser 提交于
      Add the i2c_init() function so that the tsi108_i2c.c driver fits
      U-Boot's standard I2C API which is utilized by cmd_i2c.c
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      f0722ee7
    • P
      mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define · 8d907e79
      Peter Tyser 提交于
      Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
      it can use the common 'i2c speed' command.  Note that the I2C controller
      utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
      dynamically.
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      8d907e79
    • P
      Marvell: i2c cleanup · a056b1ce
      Peter Tyser 提交于
      The following changes were made, primarily to bring the Marvell i2c
      driver in line with U-Boot's current I2C API:
      - Made i2c_init() globally accessible
      - Made i2c_read() and i2c_write() return an integer
      - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
        offhand chance someone adds slave support in the future
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      a056b1ce
    • P
      cpci750: i2c cleanup · 54afc6ee
      Peter Tyser 提交于
      The following changes were made, primarily to bring the cpci750 i2c
      driver in line with U-Boot's current I2C API:
      - Made i2c_init() globally accessible
      - Made i2c_read() and i2c_write() return an integer
      - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
        offhand chance someone adds slave support in the future
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      54afc6ee
    • P
      i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value · 9c90a2c8
      Peter Tyser 提交于
      Many boards/controllers/drivers don't support an I2C slave interface,
      however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
      default
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      9c90a2c8
  2. 12 6月, 2009 8 次提交
  3. 10 6月, 2009 14 次提交
  4. 09 6月, 2009 4 次提交
  5. 08 6月, 2009 2 次提交
  6. 04 6月, 2009 4 次提交
    • W
      3bc8556f
    • W
      Redundant Environment: protect full sector size · dfcd7f21
      Wolfgang Denk 提交于
      Several boards used different ways to specify the size of the
      protected area when enabling flash write protection for the sectors
      holding the environment variables: some used CONFIG_ENV_SIZE and
      CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
      a mix of both for the "normal" and the "redundant" areas.
      
      Normally, this makes no difference at all. However, things are
      different when you have to deal with boards that can come with
      different types of flash chips, which may have different sector
      sizes.
      
      Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
      biggest sector size, which may include several sectors on boards using
      the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
      or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
      case that only the first of these sectors get protected, while the
      following ones aren't.
      
      This is no real problem, but it can be confusing for the user -
      especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
      "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
      "redundant" area.
      
      To avoid such inconsistencies, I changed all sucn boards that I found
      to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
      not cause any functional changes to the code.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Paul Ruhland
      Cc: Pantelis Antoniou <panto@intracom.gr>
      Cc: Stefan Roese <sr@denx.de>
      Cc: Gary Jennejohn <garyj@denx.de>
      Cc: Dave Ellis <DGE@sixnetio.com>
      Acked-by: NStefan Roese <sr@denx.de>
      dfcd7f21
    • I
      mmc: it's safe to ignore mmc_send_if_cond() return value · b81830f6
      Ilya Yanok 提交于
      Return value of mmc_send_if_cond() can be safely ignored (as it is
      done in Linux). This makes older cards work with MXC MCI controller.
      Signed-off-by: NIlya Yanok <yanok@emcraft.com>
      b81830f6
    • S
      cfi_mtd: Fix bug in last sector detection · dba6fcf6
      Stefan Roese 提交于
      This patch now enabled this cfi-mtd wrapper to correctly detect and
      erase the last sector in an NOR FLASH device.
      Signed-off-by: NStefan Roese <sr@denx.de>
      dba6fcf6