1. 23 4月, 2014 18 次提交
  2. 19 4月, 2014 5 次提交
  3. 18 4月, 2014 17 次提交
    • K
      bootm: set max decompression size for LZO · 77cc8902
      Kees Cook 提交于
      The LZO decompressor wasn't initializing the maximum output size, which
      meant it would fail to decompress most of the time.
      Reported-by: NMatthias Weißer <weisserm@arcor.de>
      Signed-off-by: NKees Cook <keescook@chromium.org>
      Tested-by: NMatthias Weißer <weisserm@arcor.de>
      Acked-by: NSimon Glass <sjg@chromium.org>
      77cc8902
    • M
      kbuild: add user-supplied CPPFLAGS, AFLAGS and CFLAGS · 0e6256d0
      Masahiro Yamada 提交于
      Like Linux Kernel, this commit provides environment variables
      KCPPFLAGS, KAFLAGS and KCFLAGS, which are useful to pass
      additional options.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      0e6256d0
    • M
      kbuild: docbook: sync with Linux Kernel v3.15-rc1 · 71ba2458
      Masahiro Yamada 提交于
      This commit imports DocBook-related updates
      from v3.14 to v3.15-rc1.
      
       - commit ec3fadd64b9940baa2a369bf978e8561837db3f5
          kbuild: docbook: use $(obj) and $(src) rather than specific path
       - commit 100da4c0150c97ce34d4d3b38bf2f5449b05ae4f
          kbuild: docbook: specify KERNELDOC dependency correctly
       - commit 6f89b9c1d6b29eaa600ac4a8ac1314b0d06f15e3
          kbuild: docbook: include cmd files more simply
       - commit ac6d662a95a6989d83b259ccf8ec01dd7903af73
          doc: Add "*.svg" to DocBook/.gitignore
       - commit 832919bfcf0cfd75767c68b0c61f7cf48be860a8
          DocBook: Make mandocs parallel-safe
       - commit c4d79a4799719f2b0cd354ee498aad605730c97e
          work around xmlto bug in htmldocs
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      71ba2458
    • M
      kbuild: sync with Linux Kernel v3.15-rc1 · 598e2d33
      Masahiro Yamada 提交于
      This commit imports Kbuild-related updates
      from v3.14 to v3.15-rc1.
      
       - commit 3d3d6b8474204b6819688c9800774d52d370a538
          kbuild: LLVMLinux: Adapt warnings for compilation with clang
       - commit 61163efae02040f66a95c8ed17f4407951ba58fa
          kbuild: LLVMLinux: Add Kbuild support for building kernel with Clang
       - commit 79192ca8ebd9a25c583aa46024a250fef1e7766f
          scripts: objdiff: detect object code changes between two commits
       - commit 1c9e70a55b088d97a59241744fe459409d0c3582
          kbuild: create a build directory automatically for out-of-tree build
       - commit a03fcb50e816a69acffb13b5e56db75063aeba8a
          kbuild: remove redundant '.*.cmd' pattern from make distclean
       - commit 13338935f1574a2dcd1c891461b0dcc42f8cff42
          kbuild: move "quote" to Kbuild.include to be consistent
       - commit bfdfaeae500a3b194b73b01e92a8034791a58b7f
          kbuild: specify build_docproc as a phony target
       - commit f4d4ffc03efc864645b990e1d579bbe1b8e358a4
          kbuild: dtbs_install: new make target
       - commit 1e64ff42ea3d8d2fc8aa71f9717b3c1cb6c2f893
          Kbuild, lto: Disable LTO for asm-offsets.c
       - commit ccbef1674a1579842c7dbdf554efca85d2cd245a
          Kbuild, lto: add ld-version and ld-ifversion macros
       - commit ae63b2d7bdd9bd66b88843be0daf8e37d8f0b574
          scripts/tags.sh: Ignore *.mod.c
       - commit e36aaea28972c57a32a3ba5365e61633739719b9
          kbuild: Fix silent builds with make-4
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      598e2d33
    • P
      pcnet: force ordering of descriptor accesses · 6fb49e4a
      Paul Burton 提交于
      The ordering of accesses to the rx & tx descriptors is important, yet
      the send & recv functions accessed them via regular structure accesses.
      This leaves the compiler with the opportunity to reorder those accesses
      or to hoist them outside of loops. Prevent that from happening by using
      readl & writel to access the descriptors. As a nice bonus, this removes
      the need for the driver to care about endianness.
      Signed-off-by: NPaul Burton <paul.burton@imgtec.com>
      6fb49e4a
    • P
      pcnet: align rx buffers for cache invalidation · a354ddc3
      Paul Burton 提交于
      The RX buffers are invalidated when a packet is received, however they
      were not suitably cache-line aligned. Allocate them seperately to the
      pcnet_priv structure and align to ARCH_DMA_MINALIGN in order to ensure
      suitable alignment for the cache invalidation, preventing anything else
      being placed in the same lines & lost.
      Signed-off-by: NPaul Burton <paul.burton@imgtec.com>
      a354ddc3
    • P
      pcnet: access descriptor rings & init block uncached · f1ae382d
      Paul Burton 提交于
      The prior accesses to the descriptor rings & init block via cached
      memory had a few issues:
      
        - The memory needs cache flushes or invalidation at the appropriate
          times, but was not necessarily aligned on cache line boundaries.
          This could lead to data being incorrectly lost or written back to
          RAM at the wrong time.
      
        - There are points where ordering of writes to the memory is
          important, but because it's cached memory the pcnet controller
          would see cache lines written back ordered by address. This could
          occasionally lead to hardware seeing descriptors in an incorrect
          state.
      
        - Flushing the cache constantly is inefficient.
      
      So, to avoid all of those issues simply access the descriptors & init
      block via uncached memory. The MIPS-specific UNCACHED_SDRAM macro is
      used to do this (retrieving an address in kseg1) as I could see no
      existing generic solution. Since the MIPS Malta board is the only user
      of the pcnet driver, hopefully this doesn't matter.
      Signed-off-by: NPaul Burton <paul.burton@imgtec.com>
      f1ae382d
    • Ł
      doc:power:pmic: Add doc entry for PMIC(v2) framework · ccfc89cb
      Łukasz Majewski 提交于
      Well written documentation for PMIC framework was missing and hence
      it has been probably difficult and time consuming for other developers
      to understand rationale for key design decisions and overall design
      structure.
      This commit provides proper documentation entry.
      Signed-off-by: NLukasz Majewski <l.majewski@samsung.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      ccfc89cb
    • P
      board_r: return 0 from show_model_r · c4474fc8
      Paul Burton 提交于
      The show_model_r function should return an int but didn't. Return 0 to
      indicate inevitable success and avoid the following if it is used:
      
      common/board_r.c: In function 'show_model_r':
      common/board_r.c:531:1: warning: no return statement in function returning non-void [-Wreturn-type]
       }
       ^
      
      Cc: Simon Glass <sjg@chromium.org>
      Signed-off-by: NPaul Burton <paul.burton@imgtec.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      c4474fc8
    • M
      arm: remove lubbock board support · 36bf57b6
      Masahiro Yamada 提交于
      Enough time has passed since this board was moved to Orphan. Remove.
      
       - Remove board/lubbock/*
       - Remove include/configs/lubbock.h
       - Cleanup defined(CONFIG_LUBBOCK)
       - Move the entry from boards.cfg to doc/README.scrapyard
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      36bf57b6
    • M
      powerpc: remove EVB64260 board support · bb3aef9c
      Masahiro Yamada 提交于
      Enough time has passed since this board was moved to Orphan. Remove.
      
       - Remove include/configs/EVB64260.h
       - Remove the entry from boards.cfg
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      bb3aef9c
    • M
      powerpc: remove MOUSSE board support · 03f2ecc2
      Masahiro Yamada 提交于
      Enough time has passed since this board was moved to Orphan. Remove.
      
       - Remove board/mousse/*
       - Remove include/configs/MOUSSE.h
       - Clean-up defined(CONFIG_MOUSSE)
       - Move the entry from boards.cfg to doc/README.scrapyard
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      03f2ecc2
    • M
      powerpc: remove rsdproto board support · 8b043e6d
      Masahiro Yamada 提交于
      Enough time has passed since this board was moved to Orphan. Remove.
      
       - Remove board/rsdproto/*
       - Remove include/configs/rsdproto.h
       - Move the entry from boards.cfg to doc/README.scrapyard
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      8b043e6d
    • M
      powerpc: remove RPXsuper board support · 0ebf5f5c
      Masahiro Yamada 提交于
      Enough time has passed since this board was moved to Orphan. Remove.
      
       - Remove board/rpxsuper/*
       - Remove include/configs/RPXsuper.h
       - Move the entry from boards.cfg to doc/README.scrapyard
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      0ebf5f5c
    • M
      powerpc: remove RPXClassic, RPXlite boards support · 4fb3925f
      Masahiro Yamada 提交于
      Enough time has passed since these boards were moved to Orphan. Remove.
      
       - Remove board/RPXlite/*
       - Remove board/RPXClassic/*
       - Remove include/configs/RPXlite.h
       - Remove include/configs/RPXClassic.h
       - Clean-up defined(CONFIG_RPXCLASSIC)
       - Move the entry from boards.cfg to doc/README.scrapyard
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      4fb3925f
    • M
      powerpc: remove ADS860, FADS823, FADS850SAR, FADS860T support · aa6e1e45
      Masahiro Yamada 提交于
      Enough time has passed since these boards were moved to Orphan. Remove.
      
       - Remove include/configs/{ADS860.h,FADS823.h,FADS850SAR.h,FADS860T.h}
       - Cleanup defined(CONFIG_ADS), defined(CONFIG_MPC823FADS),
         defined(CONFIG_MPC850SAR), defined(CONFIG_SYS_DAUGHTERBOARD)
       - Remove the entries from boards.cfg
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      aa6e1e45
    • M
      powerpc: remove genietv board support · b8a49bda
      Masahiro Yamada 提交于
      Enough time has passed since this board was moved to Orphan. Remove.
      
       - Remove board/genietv/*
       - Remove include/configs/GENIETV.h
       - Clean-up if defined(CONFIG_GENIETV)
       - Move the entry from boards.cfg to doc/README.scrapyard
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      b8a49bda