1. 13 4月, 2013 1 次提交
  2. 12 4月, 2013 32 次提交
  3. 11 4月, 2013 7 次提交
    • J
      omap5912-osk: Fix get_timer() and CONFIG_SYS_HZ · eef6da03
      Jon Hunter 提交于
      The function get_timer() should return time in ms and CONFIG_SYS_HZ
      should be set to 1000 by default. Fix both of these items.
      Signed-off-by: NJon Hunter <jon-hunter@ti.com>
      eef6da03
    • J
      omap5912-osk: Increase flash partition for u-boot · 54ef1f67
      Jon Hunter 提交于
      The current u-boot binary needs more than 128KB of flash space and so
      move the u-boot environment from an offset of 128KB to 256KB in flash
      to ensure the enviroment does not overlap with u-boot.
      Signed-off-by: NJon Hunter <jon-hunter@ti.com>
      54ef1f67
    • J
      omap5912-osk: Fix device initialisation · 2a309f33
      Jon Hunter 提交于
      In the current u-boot, the device pin multiplexing and clock
      initialisation needs to be early during the boot process and before
      board_init() is called. U-boot is currently crashing on this board
      because this is not being done early enough. Therefore, add a s_init()
      function for the omap5912-osk board to do this.
      
      Also fix the stack pointer so that it is pointing to the end of the
      internal RAM and not the beginning as this was also causing the device
      to crash.
      Signed-off-by: NJon Hunter <jon-hunter@ti.com>
      2a309f33
    • J
      omap5912-osk: Fix booting from NOR flash · 5faba1ea
      Jon Hunter 提交于
      The omap5912-osk board is using a RAM based address as the linker
      location for code. This is causing several problems when attempting
      to run the latest u-boot code base on this board from flash. Update
      the default linker location for code to be in NOR flash at address
      0x00000000.
      
      The omap5912-osk board only has 32MB of RAM and so fix the comment
      in the omap5912-osk config.mk file as well.
      Signed-off-by: NJon Hunter <jon-hunter@ti.com>
      5faba1ea
    • J
      omap5912-osk: Fix DRAM initialisation · c8b30b85
      Jon Hunter 提交于
      The size of the DRAM for the omap5912-osk board is getting setup in the
      dram_init() function. However, for the current u-boot release this is
      too late and needs to be done in dram_init_banksize(). Therefore, add
      a dram_init_banksize() function for the omap5912-osk board and setup the
      DRAM size there.
      Signed-off-by: NJon Hunter <jon-hunter@ti.com>
      c8b30b85
    • T
      omap5_uevm: Correct to 2MiB aligned partitions on eMMC · a519602d
      Tom Rini 提交于
      This has a 2MiB erase block size eMMC, so make sure we align on that for
      best possible performance.
      Signed-off-by: NTom Rini <trini@ti.com>
      a519602d
    • L
      OMAP4: Fix bug in omap4460_volts struct · a1c8fb91
      Lubomir Popov 提交于
      The omap4460_volts struct was incorrectly referencing tps62361
      instead of twl6030 as PMIC for the core and mm voltages (the
      tps is used for mpu supply only). This shall lead to bad OPP
      settings while booting kernel. Fixing it.
      
      Fix some comments as well.
      Signed-off-by: NLubomir Popov <lpopov@mm-sol.com>
      a1c8fb91