Commit a59e27997637a2395ae2cc7f809127f24119a167

Authored by Wolfgang Denk
1 parent 161e4ae460

Prepare 2010.06

Update CHANGELOG

Signed-off-by: Wolfgang Denk <wd@denx.de>

Showing 2 changed files with 155 additions and 1 deletions Side-by-side Diff

  1 +commit 161e4ae46046282fde6a69a0f1f80965f2a1b6f4
  2 +Author: Heiko Schocher <hs@denx.de>
  3 +Date: Thu Jun 17 07:01:40 2010 +0200
  4 +
  5 + powerpc: fix wrong comment at GOT definitions
  6 +
  7 + r12 is used for accessing the GOT not r14. Fix this in the
  8 + comment.
  9 +
  10 + Signed-off-by: Heiko Schocher <hs@denx.de>
  11 +
  12 +commit 7030d56b7946c8db2e8082a9b84cd69b9540a0ca
  13 +Author: Becky Bruce <beckyb@kernel.crashing.org>
  14 +Date: Thu Jun 17 11:37:27 2010 -0500
  15 +
  16 + MAKEALL: Add missing powerpc 36-bit targets
  17 +
  18 + We were missing 8641HPCN_36BIT and MPC8536DS_36BIT.
  19 +
  20 + Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
  21 +
  22 +commit e03b4d296b27790de3b25edd32784d20538240d8
  23 +Author: Anatolij Gustschin <agust@denx.de>
  24 +Date: Sat Jun 26 00:39:28 2010 +0200
  25 +
  26 + Fix compiler warnings for EVB64260, P3G4 and ZUMA
  27 +
  28 + Fix following warnings:
  29 +
  30 + $ ./MAKEALL EVB64260 P3G4 ZUMA
  31 + Configuring for EVB64260 board...
  32 + mpsc.c: In function 'mpsc_putchar_early':
  33 + mpsc.c:121: warning: dereferencing type-punned pointer will break strict-aliasing rules
  34 + mpsc.c:127: warning: dereferencing type-punned pointer will break strict-aliasing rules
  35 + ...
  36 +
  37 + Signed-off-by: Anatolij Gustschin <agust@denx.de>
  38 +
  39 +commit 9fb3b5085787baad8a133e347ad12c5b3a022e98
  40 +Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
  41 +Date: Mon Jun 28 22:44:49 2010 +0400
  42 +
  43 + EHCI: zero out QH transfer overlay in ehci_submit_async()
  44 +
  45 + ehci_submit_async() doesn't really zero out the QH transfer overlay (as the EHCI
  46 + specification suggests) which leads to the controller seeing the "token" field
  47 + as the previous call has left it, i.e.:
  48 + - if a timeout occured on the previous call (Active bit left as 1), controller
  49 + incorrectly tries to complete a previous transaction on a newly programmed
  50 + endpoint;
  51 + - if a halt occured on the previous call (Halted bit set to 1), controller just
  52 + ignores the newly programmed TD(s) and the function then keeps returning error
  53 + ad infinitum.
  54 +
  55 + This turned out to be caused by the wrong orger of the arguments to the memset()
  56 + call in ehci_alloc(), so the allocated TDs weren't cleared either.
  57 +
  58 + While at it, stop needlessly initializing the alternate next TD pointer in the
  59 + QH transfer overlay...
  60 +
  61 + Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
  62 + Acked-by: Remy Bohmer <linux@bohmer.net>
  63 +
  64 +commit 0d7f4abcf6bbef06504c82e03f11054468262430
  65 +Author: Remy Bohmer <linux@bohmer.net>
  66 +Date: Thu Jun 17 21:17:08 2010 +0200
  67 +
  68 + Fix console_buffer size conflict error.
  69 +
  70 + The console_buffer size is declared in common/main.c as
  71 + -- char console_buffer[CONFIG_SYS_CBSIZE + 1];
  72 + so this extern definition is wrong.
  73 +
  74 + Signed-off-by: Remy Bohmer <linux@bohmer.net>
  75 +
  76 +commit 38c38c344c200ee90cfd243671473c449b6f0815
  77 +Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
  78 +Date: Tue Jun 22 12:50:46 2010 +0530
  79 +
  80 + 85xx/p1_p2_rdb: Added RevD board version support
  81 +
  82 + - Also modified the code to use io accessors.
  83 +
  84 + Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
  85 + Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
  86 + Acked-by: Kumar Gala <galak@kernel.crashing.org>
  87 +
  88 +commit c987f4753b0afadb38acd7e61df7ba11e8a0203f
  89 +Author: Felix Radensky <felix@embedded-sol.com>
  90 +Date: Mon Jun 28 01:57:39 2010 +0300
  91 +
  92 + tsec: Fix eTSEC2 link problem on P2020RDB
  93 +
  94 + On P2020RDB eTSEC2 is connected to Vitesse VSC8221 PHY via SGMII.
  95 + Current TBI PHY settings for SGMII mode cause link problems on
  96 + this platform, link never comes up.
  97 +
  98 + Fix this by making TBI PHY settings configurable and add a working
  99 + configuration for P2020RDB.
  100 +
  101 + Signed-off-by: Felix Radensky <felix@embedded-sol.com>
  102 + Acked-by: Andy Fleming <afleming@freescale.com>
  103 + Acked-by: Peter Tyser <ptyser@xes-inc.com>
  104 + Tested-by: Peter Tyser <ptyser@xes-inc.com>
  105 +
  106 +commit d3bee08332fbc9cc5b6dc22ecd34050a85d44d0a
  107 +Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
  108 +Date: Wed Jun 23 19:32:28 2010 +0530
  109 +
  110 + 85xx/p1_p2_rdb: Modify the CLK_CTRL value for DDR at 667MHz
  111 +
  112 + Use a slighly larger value of CLK_CTRL for DDR at 667MHz
  113 + which fixes random crashes while linux booting.
  114 +
  115 + Applicable for both NAND and NOR boot.
  116 +
  117 + Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com>
  118 + Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
  119 + Acked-by: Andy Fleming <afleming@freescale.com>
  120 +
  121 +commit cdc6363f423900645265563d705a0a5a964ae40c
  122 +Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
  123 +Date: Wed Jun 23 19:42:07 2010 +0530
  124 +
  125 + 85xx/p1_p2_rdb: not able to modify "$bootfile" environment variable
  126 +
  127 + Because the variable was getting defined twice.
  128 +
  129 + Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
  130 + Acked-by: Andy Fleming <afleming@freescale.com>
  131 +
  132 +commit 4ccd5510e50b5675227a1fe0e5ca099d333f637d
  133 +Author: Wolfgang Denk <wd@denx.de>
  134 +Date: Tue Jun 29 01:33:35 2010 +0200
  135 +
  136 + MPC512x: workaround data corruption for unaligned local bus accesses
  137 +
  138 + Commit 460c2ce3 "MPC5200: workaround data corruption for unaligned
  139 + local bus accesses" fixed the problem for MPC5200 only, but MPC512x is
  140 + affected as well, so apply the same fix here, too.
  141 +
  142 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  143 + Cc: Detlev Zundel <dzu@denx.de>
  144 + Cc: Anatolij Gustschin <agust@denx.de>
  145 + Acked-by: Detlev Zundel <dzu@denx.de>
  146 +
  147 +commit 482126e27b3dbf0e69a6445da8b94b3551adf05d
  148 +Author: Wolfgang Denk <wd@denx.de>
  149 +Date: Wed Jun 23 20:50:54 2010 +0200
  150 +
  151 + Prepare v2010.06-rc3
  152 +
  153 + Signed-off-by: Wolfgang Denk <wd@denx.de>
  154 +
1 155 commit 460c2ce362e56890c2a029e2c3b1ff2796c7fc54
2 156 Author: Wolfgang Denk <wd@denx.de>
3 157 Date: Mon Jun 21 22:29:59 2010 +0200
... ... @@ -24,7 +24,7 @@
24 24 VERSION = 2010
25 25 PATCHLEVEL = 06
26 26 SUBLEVEL =
27   -EXTRAVERSION = -rc3
  27 +EXTRAVERSION =
28 28 ifneq "$(SUBLEVEL)" ""
29 29 U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
30 30 else