Skip to content

Commits

Permalink
isp
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Jun 14, 2022

  1. Copy the full SHA
    dc514be View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2022

  1. Copy the full SHA
    6bdb879 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2022

  1. Improved ISP tracer

    kellermanrivero committed Jun 11, 2022
    Copy the full SHA
    6b90609 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2022

  1. Copy the full SHA
    f4b85f1 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2022

  1. ISP Tracer v1

    kellermanrivero committed May 21, 2022
    Copy the full SHA
    5d8c9c6 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2022

  1. hv_exc: Do not forget to arm tick in fast path

    Signed-off-by: Hector Martin <marcan@marcan.st>
    marcan committed Apr 19, 2022
    Copy the full SHA
    52bb64b View commit details
    Browse the repository at this point in the history
  2. hv_exc: Improve multi-core scalability

    The HV tick polling now only runs on CPU#0. All CPUs have the 1000Hz
    HV tick, but secondaries only use it to poll the FIQ state and that path
    does not take the BHL if no other FIQ was pending.
    
    Signed-off-by: Hector Martin <marcan@marcan.st>
    marcan committed Apr 19, 2022
    Copy the full SHA
    e750dfc View commit details
    Browse the repository at this point in the history
  3. dart: Announce real-time DARTs

    Mostly just for reference.
    
    Signed-off-by: Hector Martin <marcan@marcan.st>
    marcan committed Apr 19, 2022
    Copy the full SHA
    3020e26 View commit details
    Browse the repository at this point in the history
  4. memory: Remap some carveouts as uncached

    This fixes display DART real-time cache hits causing AMCC exceptions.
    
    The relevant carve-outs have flags 0x60004016; 0x60004002 is used for
    DCP which is non-realtime, so I'm guessing the '16' means we should map
    it uncached.
    
    Signed-off-by: Hector Martin <marcan@marcan.st>
    marcan committed Apr 19, 2022
    Copy the full SHA
    fabe27e View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    144c3da View commit details
    Browse the repository at this point in the history
  6. WIP: m1n1.hv: add support for starting CPUs on the second M1 Ultra die

    notes:
     - macos guest only works if the display is not initialized
     - macos guest appears to be very slow
    
    Signed-off-by: Janne Grunau <j@jannau.net>
    jannau authored and marcan committed Apr 19, 2022
    Copy the full SHA
    d463751 View commit details
    Browse the repository at this point in the history
  7. cpufreq: Add support for t6002

    Signed-off-by: Janne Grunau <j@jannau.net>
    jannau authored and marcan committed Apr 19, 2022
    Copy the full SHA
    6df73d8 View commit details
    Browse the repository at this point in the history
  8. smp: Start CPU cores on the second t6002 die

    Signed-off-by: Janne Grunau <j@jannau.net>
    jannau authored and marcan committed Apr 19, 2022
    Copy the full SHA
    4aa4ff9 View commit details
    Browse the repository at this point in the history
  9. nvme: Support nvme on die 1 for t6002

    Signed-off-by: Hector Martin <marcan@marcan.st>
    marcan committed Apr 19, 2022
    Copy the full SHA
    8df40df View commit details
    Browse the repository at this point in the history
  10. pmgr: Add multi-die support for t6002

    Signed-off-by: Janne Grunau <j@jannau.net>
    jannau authored and marcan committed Apr 19, 2022
    Copy the full SHA
    6256bac View commit details
    Browse the repository at this point in the history
  11. aic: Add support for multi-die AIC2 as seen on the M1 Ultra

    Multi-die IRQs are coded as in the ADT: die * max_irq + num
    
    Signed-off-by: Janne Grunau <j@jannau.net>
    jannau authored and marcan committed Apr 19, 2022
    Copy the full SHA
    76fd226 View commit details
    Browse the repository at this point in the history
  12. soc: Add target for t6002

    Signed-off-by: Janne Grunau <j@jannau.net>
    jannau authored and marcan committed Apr 19, 2022
    Copy the full SHA
    524cb4a View commit details
    Browse the repository at this point in the history
  13. display: Map the framebuffer if it is not mapped

    iboot on Mac Studio (M1 Ultra) does not map the framebuffer("/vram")
    for dcp and disp0.
    
    Signed-off-by: Janne Grunau <j@jannau.net>
    jannau authored and marcan committed Apr 19, 2022
    Copy the full SHA
    1b5dee2 View commit details
    Browse the repository at this point in the history
  14. dart: Add dart_find_iova() to find unused IOVA space

    Signed-off-by: Janne Grunau <j@jannau.net>
    jannau authored and marcan committed Apr 19, 2022
    Copy the full SHA
    0104abb View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2022

  1. jpeg: Add documentation

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    90479ac View commit details
    Browse the repository at this point in the history
  2. jpeg: Unbreak encode for RGB formats

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    04fc266 View commit details
    Browse the repository at this point in the history
  3. jpeg: Figured out how to activate tiling

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    d28ab8c View commit details
    Browse the repository at this point in the history
  4. jpeg: Implement encoding from planar formats

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    b2a0352 View commit details
    Browse the repository at this point in the history
  5. jpeg: Support encoding linear YUV

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    f2b8054 View commit details
    Browse the repository at this point in the history
  6. jpeg: Implement YUV10 mode for encoding

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    c71d341 View commit details
    Browse the repository at this point in the history
  7. jpeg: Implement encoding other RGB formats

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    4681053 View commit details
    Browse the repository at this point in the history
  8. jpeg: Implement encoding subsampling modes

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    970b278 View commit details
    Browse the repository at this point in the history
  9. jpeg: Import working encode experiment

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    45876d0 View commit details
    Browse the repository at this point in the history
  10. jpeg: Implement decoding into planar formats

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    9fca773 View commit details
    Browse the repository at this point in the history
  11. jpeg: Decode linear YUV

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    3a18075 View commit details
    Browse the repository at this point in the history
  12. jpeg: Add RGB565 to decoder

    Note that dithering does not get configured
    
    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    4c8807f View commit details
    Browse the repository at this point in the history
  13. jpeg: Implement decoding other subsampling modes

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    7350baf View commit details
    Browse the repository at this point in the history
  14. jpeg: Import working basic decode experiment

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    0c1f89d View commit details
    Browse the repository at this point in the history
  15. jpeg: probe registers more thoroughly

    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    49cdf7f View commit details
    Browse the repository at this point in the history
  16. jpeg: Import register definitions

    This comes from experiments that were performed out-of-tree
    
    Signed-off-by: R <rqou@berkeley.edu>
    ArcaneNibble authored and marcan committed Apr 16, 2022
    Copy the full SHA
    c6169c1 View commit details
    Browse the repository at this point in the history
Older