1. 19 5月, 2020 1 次提交
  2. 25 1月, 2020 2 次提交
  3. 18 1月, 2020 2 次提交
  4. 03 12月, 2019 1 次提交
  5. 21 5月, 2019 3 次提交
  6. 07 5月, 2018 1 次提交
    • T
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini 提交于
      When U-Boot started using SPDX tags we were among the early adopters and
      there weren't a lot of other examples to borrow from.  So we picked the
      area of the file that usually had a full license text and replaced it
      with an appropriate SPDX-License-Identifier: entry.  Since then, the
      Linux Kernel has adopted SPDX tags and they place it as the very first
      line in a file (except where shebangs are used, then it's second line)
      and with slightly different comment styles than us.
      
      In part due to community overlap, in part due to better tag visibility
      and in part for other minor reasons, switch over to that style.
      
      This commit changes all instances where we have a single declared
      license in the tag as both the before and after are identical in tag
      contents.  There's also a few places where I found we did not have a tag
      and have introduced one.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      83d290c5
  7. 05 3月, 2018 1 次提交
  8. 13 4月, 2017 1 次提交
  9. 06 4月, 2017 2 次提交
  10. 21 11月, 2014 1 次提交
    • S
      fdt: Allow ft_board_setup() to report failure · e895a4b0
      Simon Glass 提交于
      This function can fail if the device tree runs out of space. Rather than
      silently booting with an incomplete device tree, allow the failure to be
      detected.
      
      Unfortunately this involves changing a lot of places in the code. I have
      not changed behvaiour to return an error where one is not currently
      returned, to avoid unexpected breakage.
      
      Eventually it would be nice to allow boards to register functions to be
      called to update the device tree. This would avoid all the many functions
      to do this. However it's not clear yet if this should be done using driver
      model or with a linker list. This work is left for later.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Acked-by: NAnatolij Gustschin <agust@denx.de>
      e895a4b0
  11. 24 7月, 2013 1 次提交
  12. 04 11月, 2011 1 次提交
  13. 24 9月, 2010 1 次提交
  14. 20 8月, 2010 1 次提交
    • K
      powerpc/83xx: Fix build issue with ve8313 board due to lbus changes · a2243b84
      Kumar Gala 提交于
      We get two build errors:
      
      fsl_elbc_nand.c: In function 'fsl_elbc_run_command':
      fsl_elbc_nand.c:231: error: 'fsl_lbc_t' has no member named 'lsor'
      make[1]: *** [/work/wd/tmp-ppc/drivers/mtd/nand/fsl_elbc_nand.o] Error 1
      
      and
      
      ve8313.c: In function 'initdram':
      ve8313.c:104: error: expected '=', ',', ';', 'asm' or '__attribute__'
      before '*' token
      ve8313.c:104: error: 'lbc' undeclared (first use in this function)
      ve8313.c:104: error: (Each undeclared identifier is reported only once
      ve8313.c:104: error: for each function it appears in.)
      ve8313.c:104: error: 'immap_t' has no member named 'lbus'
      make[1]: *** [ve8313.o] Error 1
      make: *** [board/ve8313/libve8313.a] Error 2
      
      Due to changes to unifiy local bus struct definitions.
      Reported-by: NWolfgang Denk <wd@denx.de>
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      a2243b84
  15. 10 7月, 2010 1 次提交
    • H
      83xx: add support for ve8313 board · 4e43b2e8
      Heiko Schocher 提交于
      This patch add support for the ve8313 board based on
      Freescale MPC8313 CPU.
      
      - serial console on UART 1
      - 128 MB DDR RAM
      - 32 MB NOR Flash
      - 16 MB NAND Flash
      - Ethernet MII Mode over on TSEC0
      - micrel ksz804 phy
      - Hardware WDT MAX824
      
      changes since v1
      - Environment size = sector size
      - use red. environment
      - add comments from Kim Phillips
        - add MAKEALL, MAINTAINERS entry
        - Codingstyle issues fixed
        - inserted original Copyrights
        - PCI subsys vendor ID changed from 0x1057 (Motorola)
          to 0x1957 (Freescale)
      
      changes since v2
      - add comments from Wolfgang Denk
        - fix Codingstyle and some comments
        - reworked WDT reset (just toggling the WD_TRIG pin)
        - Environment size now 16KiB
        - fixed RAMBOOT version
        - fixed CONFIG_SYS_LOAD_ADDR
        - renamed CONFIG_TSEC1_NAME to TSEC1
      Signed-off-by: NHeiko Schocher <hs@denx.de>
      Signed-off-by: NKim Phillips <kim.phillips@freescale.com>
      4e43b2e8