1. 19 5月, 2020 14 次提交
  2. 18 5月, 2020 2 次提交
  3. 11 5月, 2020 1 次提交
  4. 10 5月, 2020 1 次提交
  5. 09 5月, 2020 3 次提交
  6. 08 5月, 2020 3 次提交
  7. 07 5月, 2020 2 次提交
    • T
      menu: add support for client defined statusline function · 5168d7a6
      Thirupathaiah Annapureddy 提交于
      Currently displaying status line is done in a weak function
      menu_display_statusline().
      
      bootmenu.c overrides the weak default function.
      It calls menu_default_choice() and interprets the data as
      struct bootmenu_entry.
      
      pxe boot also uses common menu code for pxe menus.
      If there is a system that enables both bootmenu and pxe,
      menu_display_statusline() defined in bootmenu.c will be called
      and it will interpret struct pxe_label as struct bootmenu_entry.
      This leads to data aborts and pxe menu corruptions.
      
      This patch adds support for client defined statusline function
      to resolve the above bug.
      Signed-off-by: NThirupathaiah Annapureddy <thiruan@linux.microsoft.com>
      5168d7a6
    • P
      cmd: cache: Fix non-cached memory cachability · c2a2123e
      Patrice Chotard 提交于
      If dcache is switched OFF to ON state and if non-cached memory is
      used, this non-cached memory must be re-declared as uncached to mmu
      each time dcache is set ON.
      
      Introduce noncached_set_region() to set this non-cached region's mmu
      settings. Let architecture override it by defining it as a weak
      function.
      
      For ARM architecture, noncached_set_region() defines all noncached
      region as non-cacheable.
      
      Issue found on STM32MP1 platform using dwc_eth_qos ethernet driver,
      when going from dcache OFF to dcache ON state, ethernet driver issued
      TX timeout errors when performing dhcp or ping.
      
      It can be reproduced with the following sequence:
      
      dhcp
      while true ; do
        ping 192.168.1.300 ;
        dcache off ;
        ping 192.168.1.300 ;
        dcache on ;
      done
      Signed-off-by: NPatrice Chotard <patrice.chotard@st.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Joe Hershberger <joe.hershberger@ni.com>
      Cc: Ramon Fried <rfried.dev@gmail.com>
      Cc: Stephen Warren <swarren@nvidia.com>
      Reviewed-by: NMarek Vasut <marex@denx.de>
      c2a2123e
  8. 04 5月, 2020 3 次提交
  9. 01 5月, 2020 2 次提交
  10. 30 4月, 2020 6 次提交
  11. 28 4月, 2020 1 次提交
  12. 22 4月, 2020 2 次提交