Skip to content
Snippets Groups Projects
  1. Jun 19, 2018
    • Dustin Green's avatar
      [amlogic-video] .gitignore the cipd firmware .bin · 6c2f5843
      Dustin Green authored
      This ignores the amlogic-video firmware directory so that git status
      won't be noisy.  This change assumes that we'll keep cipd content in a
      firmware/ directory to itself (ignores the dir, not the two files
      separately).
      
      Tested: ran "git status" after adding the line to .gitignore
      Change-Id: Id970838cc2e1c2233b8dccd5c8fe5597dc893c3a
      6c2f5843
    • Dustin Green's avatar
      [Codec][amlogic-video] Codec FIDL to driver · 06aaed93
      Dustin Green authored
      Some initial plumbing of CodecFactory/Codec in amlogic_video_decoder
      driver.  This adds DriverCtx, DeviceCtx, DeviceFidl, LocalCodecFactory,
      CodecImpl.  The IOCTL to create the LocalCodecFactory isn't used yet.
      The CodecImpl's Codec methods are not implemented yet.
      
      Tested: manually tested on vim2 that amlogic_video_decoder still starts
      Change-Id: Ibbb576d78a65f8dece38a18e5353ba15491afc1f
      06aaed93
    • Joshua Liebow-Feeser's avatar
      [zerocopy] Support other smart reference types · c9724234
      Joshua Liebow-Feeser authored
      - Add ByteSliceMut trait, the mutable equivalent of ByteSlice
      - Add support for Ref and RefMut
      
      Test:
      - Compilation
      - Knowing how Ref and RefMut work (namely, that they are stable
        in the manner required by ByteSlice and ByteSliceMut; see the
        code comment about the requirements of ByteSlice and ByteSliceMut)
      
      Change-Id: I4e2d5eb22c71a6de2f015a34acecc4a2062d52cd
      c9724234
    • third-party-roller's avatar
      [roll] Roll scripts 68cebd74..6ff1ff6e (1 commits) · 3ddab7b1
      third-party-roller authored
      6ff1ff6e [fx] move locking into build command
      
      TEST=CQ
      
      Change-Id: I83a71a4c0d6883c0bff4f327efa2c750804f7766
      3ddab7b1
    • zircon-roller's avatar
      [roll] Roll zircon 06923e68..bbf3a022 (1 commits) · 2c47d903
      zircon-roller authored
      bbf3a022 [scripts][odroidc2] remove this old build-odroidc2 script
      
      TEST=CQ
      
      Change-Id: Ia1dcc547a7d625a3c0e45c182f8c3f3298cdb8c3
      2c47d903
    • Greg Bonik's avatar
      [wlan] Move MlmeStats etc. to wlan_stats.fidl · 4d217d06
      Greg Bonik authored
      We would like to reuse these messages in wlanstack2 APIs without
      depending on MLME FIDL library.
      
      TEST=Manually ran `wlan stats`
      
      Change-Id: I0e2bdb178f0bb0ae5ae736f0c6b0a052a074131c
      4d217d06
    • John Bauman's avatar
      [amlogic-video] Add support for not using the ES parser · 444432c3
      John Bauman authored
      For elementary stream video input the parser seems to mainly copy the
      video, switch the endianness around, and update some fifo registers.
      For clear content this isn't too useful, so add a mode where the video
      is copied directly into the stream buffer and the fifo registers are
      updated manually.
      
      This will be particularly useful for multi-instance video, as it can
      hopefully avoid context switching the parser registers.
      
      TEST: amlogic_decoder_tests=true
      
      Change-Id: I97f96e2cf82710b7d1db736cccd1f61502e5bb58
      444432c3
    • Craig Stout's avatar
      [magma] Add InflightList · e5d1a197
      Craig Stout authored
      Test:
      nuc:go/magma-tps#L0
      
      Change-Id: Ib85f6b6b50013c639a04a7973ffb697bcc041848
      e5d1a197
    • zircon-roller's avatar
      [roll] Roll zircon 78fb848a..06923e68 (1 commits) · c342b17d
      zircon-roller authored
      06923e68 [astro][display] Add vsync interrupt
      
      TEST=CQ
      
      Change-Id: I8794a4d9d0ebfc69c7d4f3b7f309bbd7b93616ab
      c342b17d
    • Greg Bonik's avatar
      [wlanstack2] Stream combinator that groups available items · 35fdf57d
      Greg Bonik authored
      This is useful for batching queued requests together.
      
      TEST=Included (wlanstack2_bin_test_rustc)
      
      Change-Id: Id555f101e8d51df9e6de039db4a6cba8dc7bf79d
      35fdf57d
    • Eric Wang's avatar
      [wlan][smoke-test] check DHCP status via ifconfig · bf16cbb9
      Eric Wang authored
      Instead of waiting for an arbitrary amount of time, use ifconfig on wlan
      interface to check if we actually receives an address.
      
      Test: Build and smoke
      
      NET-1022 #done
      
      Change-Id: I28ec4508f911c229857ba4f2bfa2c351be4c7d78
      bf16cbb9
    • Erick Tryzelaar's avatar
      [pm] Add "pm expand", the opposite of "pm archive" · 8739e18d
      Erick Tryzelaar authored
      "pm expand" allows for the expansion of a package archive
      into a fuchsia package tree. This will extract the contents
      into a directory like:
      
      $OUT/blobs.manifest
      $OUT/blobs/$MERKlE_1
      $OUT/blobs/$MERKlE_2
      ...
      $OUT/meta.far
      $OUT/package.manifest
      
      It can be ingested into an amber-files with the following
      commands:
      
      ```
      fx pm -o out expand some_archive.far
      fx amber-publish -r .../amber-files -k .../keys -ps -f out/package.manifest
      fx amber-publish -r .../amber-files -k .../keys -bs -f out/blobs.manifest
      ```
      
      PKG-85
      
      TEST:
       - constructed a test .far package and `fx archive`
       - extracted it `pm expand` and imported the packages with `fx amber-publish`
       - verified it installed inside a fuchsia vm
      
      Change-Id: I686e399bed89b6137dcba821cd6a23c9dee7febd
      8739e18d
    • Andrew Davies's avatar
      [garnet][timezone] Add debug statement. · 631f8d3f
      Andrew Davies authored
      This adds an error statement that will assist with SY-516.
      Coincidentally, this also appears to cause the errors in reporting the
      correct offset to stop.  If they pop up again, this will at least speed
      up hunting down the issue.
      
      SY-516 #comment This appears to prevent loading issues as well. Unclear.
      
      TEST=manual on-device testing in debug and release build using tz-util
      
      Change-Id: I26f95062340dec379ea7ac169f0482c334ffec88
      631f8d3f
  2. Jun 18, 2018
Loading