1. 11 Sep, 2014 2 commits
  2. 04 Sep, 2014 2 commits
  3. 03 Sep, 2014 7 commits
  4. 19 Aug, 2014 1 commit
  5. 18 Aug, 2014 1 commit
  6. 07 Aug, 2014 4 commits
  7. 04 Aug, 2014 1 commit
  8. 03 Aug, 2014 1 commit
  9. 01 Aug, 2014 6 commits
  10. 29 Jul, 2014 11 commits
  11. 28 Jul, 2014 4 commits
    • Alessandro Rubini's avatar
      barebox: use more relaxed nand timings · 1425cac7
      Alessandro Rubini authored
      This is similar to the kernel patch, but its impact is less
      important: barebox is only reading nand in our setup, and it looks
      like it never failed (on the other hand, the times were definitely out
      of specifications).
      Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
      1425cac7
    • Alessandro Rubini's avatar
      bugfix: kernel: use more relaxed nand timings · bb56d5b5
      Alessandro Rubini authored
      We used the timing from the g45ek, but ours is slower. Actually, ours
      is slower only in 16-bit mode, and has the same timing when used in
      8-bit mode.
      
      Our timing setup was outside of the allowed specification, and resulted
      in random and unreproducible failures.  The "visible" effect is
      that reading 100MB takes 13.4s instead of 11.4s, measured with:
      
        time dd bs=1k count=102400 < /dev/mtd1 > /dev/null
      
      You can try another, still slower, setup just by hand, like this
      (in this order):
      
         devmem 0xffffe83c w 0x00051003
         devmem 0xffffe838 w 0x000f000f
         devmem 0xffffe830 w 0x04060406
      
      but the current settings (41003, 000c000c, 02040204) are alread within
      specification.
      Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
      bb56d5b5
    • Alessandro Rubini's avatar
      Merge branch 'guti-140618-rebased' · cfdbd93f
      Alessandro Rubini authored
      cfdbd93f
    • José Luis  Gutiérrez's avatar
      www: ports info updates every 15 seconds · 86634428
      José Luis Gutiérrez authored
      Ports info (header) was updated only in index.php. Now it is refreshed
      every 15 seconds.
      86634428