Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/seL4/seL4.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Aug 22, 2019
    • Kent McLeod's avatar
      mcs: Add error for unsupported Arm platforms · debdaa7d
      Kent McLeod authored
      Tickless timer drivers are yet to be implemented for
      
      - allwinner
      - apq8064
      - am335x
      - exynos4
      - zynqmp
      - imx8mm
      - imx8mq
      debdaa7d
    • Anna Lyons's avatar
      kzm: implement MCS timer driver · 4db4a3b8
      Anna Lyons authored
      - use gpt, so we can have overflow and compare interrupts at the same
      time (epit only allows compare)
      - set the gpt to use the ipg_highfreq timer, as the standard ipg is too
      low and breaks the timer calculations
      4db4a3b8
    • Anna Lyons's avatar
      omap3: implement tickless timer driver · ea07ad04
      Anna Lyons authored
      Update the existing omap driver to implement the new tickless api.
      ea07ad04
    • Anna Lyons's avatar
      arm: tickless generic timer implementation · bdc56112
      Anna Lyons authored
      Update the generic timer to implement the MCS kernels tickless timer
      driver API and update all platforms that use the arm generic timers:
      
          - bcm2837
          - exynos5
          - hikey
          - imx7
          - odroidc2
          - tk1
          - tx1
          - tx2
          - zynq7000
      
      Also move the generic timer constants to machine.h to avoid a circular
      dependency.
      bdc56112
    • Anna Lyons's avatar
      cortex-a9: tickless global timer driver · a7fb6b56
      Anna Lyons authored
      - use in sabre (imx6) and zynq7000, the two platforms that were using
        the private timer.
      a7fb6b56
    • Anna Lyons's avatar
      mcs: provide tickless api for arm timers · 742cabf1
      Anna Lyons authored
      This does not implement the timers for any platforms, but
      provides the generic arm arch, and aarch32/aarch64 infrastructure for
      tickless timer drivers.
      742cabf1
    • Anna Lyons's avatar
      mcs: Add reciprocal.py · fad8781c
      Anna Lyons authored
      Used for calculating constants for reciprocal division.
      fad8781c
    • Anna Lyons's avatar
      mcs: tickless driver for x86 · acfc3c52
      Anna Lyons authored
      Add a tickless timer driver for x86. The driver defaults to using
      TSC_DEADLINE mode, but falls back to the apic if that feature is not
      available.
      acfc3c52
    • Anna Lyons's avatar
      mcs: tickless scheduler implementation · 71244499
      Anna Lyons authored
      This changes the budget/remaining fields in scheduling contexts
      to contain timer ticks, not number of abstract sel4ticks.
      
      seL4_SchedControl_Configure now takes microseconds, not ticks.
      
      This commit is plat-independant - the platform and arch specific
      timer code follows in later commits.
      71244499
    • Anna Lyons's avatar
      mcs: Add a scheduling context object · 952134d1
      Anna Lyons authored
      This is the first part of the seL4 MCS. This commit:
      
          * adds a scheduling context object. Threads without scheduling
            context objects cannot be scheduled.
          * replaces tcbTimeSlice with the scheduling context object
          * adds seL4_SchedControl caps for each core
          * adds seL4_SchedControl_Configure which allows users to configure
            amount of ticks a scheduling context has, and set a core for the
            scheduling context.
          * adds seL4_SchedContext_Bind, Unbind and UnbindObject, which allows
            a tcb to be bound to a scheduling context.
      952134d1
    • Kent McLeod's avatar
      CMake: Add KernelIsMCS option · caad010a
      Kent McLeod authored
      This switches between master and mcs configurations.
      This also adds a build system variable KernelPlatformSupportsMCS that
      can be used to error on platforms that don't support MCS due to
      unimplemented functionality.
      caad010a
  2. Aug 20, 2019
  3. Aug 14, 2019
  4. Aug 13, 2019
    • Kent McLeod's avatar
      libsel4: Don't use userData for storing IPC buffer · c8b81c28
      Kent McLeod authored
      userData is no longer needed to hold a reference to the IPC buffer. The
      IPC buffer is now available as a thread local variable.
      c8b81c28
    • Kent McLeod's avatar
      hardware_gen: Correctly set default kernel_size · 28901889
      Kent McLeod authored
      kernel_size has a default value of 0x1000 according to
      hardware_schema.yml.
      28901889
    • Kent McLeod's avatar
      hardware_gen: Refactor script after recent changes · d764d5f1
      Kent McLeod authored
      - remove add_build_rules() and replace with shorter inline impl.
      - Remove nested for looping from Config.get_irqs() and .split_regions()
      as we already know that a rule exists and have a reference to it via the
      kernel device.
      - Don't allow multiple rules for a single compatibility string. There
      currently aren't multiple rules for a single string without any
      motivating examples it is unclear whether this should be supported.
      d764d5f1
    • Kent McLeod's avatar
      hardware_gen: Always specify kernel devices · cf997974
      Kent McLeod authored
      The kernel device IRQs and Frame mappings generated by this script will
      only come from nodes specified in the seL4,kernel-devices property of
      the chosen node.  Previously these devices were inferred by the script
      but this led to false matching and didn't support easily overriding
      which devices to match under different configurations or across
      different platforms.
      
      Explicitly specifying which devices from the device tree will be used in
      the kernel makes it easier to check which devices the kernel is actually
      using and makes it easier to change on a per platform or per
      configuration basis.
      cf997974
    • Kent McLeod's avatar
      hardware_gen: Refactor calculating device regions · 44fce7dd
      Kent McLeod authored
      - Device.regions() now just calculates memory regions without splitting
      them into user and kernel groups.
      - Config.split_regions() now calls Device.regions() and performs the
      splitting if the device is a kernel device, otherwise returns the
      original regions.
      - Config.split_regions() is now only used in a context when dealing with
      kernel devices, otherwise Device.regions() can be called to return only
      informatioin extracted from the device tree.
      44fce7dd
    • Kent McLeod's avatar
      hardware_gen: Refactor calculating kernel IRQs · 1bd86aab
      Kent McLeod authored
      - directly return IRQs from Device.get_interrupts(): Previously, these
      IRQs were then mutated by Config.get_irqs() based on driver definitions
      in hardware.yml. Inverting this order makes get_interrupts more general.
      - Config.get_irqs() uses the Device it gets passed to call
      get_interrupts() only when it needs to extract interrupts for a device.
      - Use Config.get_irqs() for building kernel's IRQ list instead of
      calling Device.get_interrupts() due to the new inversion.
      1bd86aab
    • Kent McLeod's avatar
      hardware_gen: Remove unused method is_compatible · ad45ffc1
      Kent McLeod authored
      Not used and it is unlikely that it will be needed in the near future.
      ad45ffc1
    • Kent McLeod's avatar
      hardware_gen,Device: extract get_affinities method · 51f55342
      Kent McLeod authored
      Returns an array of interrupt affinities corresponding to an array of
      interrupts for a Device.
      51f55342
    • Kent McLeod's avatar
      CMake,fvp: Fix typos in FVP CMake config · 929dead3
      Kent McLeod authored
      - Use correct timer header file
      - Use correct name for FVP target.
      929dead3
    • Kent McLeod's avatar
      CMake: Correct allwinnerA20 platform name · a603c7f8
      Kent McLeod authored
      This name is case sensitive
      a603c7f8
  5. Aug 08, 2019
    • Edward Pierzchalski's avatar
      CMake: Use unambiguous Python 2 executable name · 3576377b
      Edward Pierzchalski authored
      Use the specific executable name "python2" to distinguish it from
      "python" on distributions that install Python 3 as "python".
      3576377b
    • Edward Pierzchalski's avatar
      bitfields: Specify iteration order over dicts · cfc544ab
      Edward Pierzchalski authored
      In Python 3, dict value iterators aren't deterministic between runs,
      which causes nondeterministic definition output order. Some L4V proofs
      are sensitive to this order.
      
      Use sorted keys to guarantee order when iterating over values.
      cfc544ab
    • Anna Lyons's avatar
      python2 --> python3 · bc61a7f3
      Anna Lyons authored
      Update all scripts and build system to call python3, given python2's
      upcoming doom. Use sys.maxsize instead of sys.maxint in one script
      (maxint does not exist in python3).
      bc61a7f3
  6. Aug 07, 2019
    • G. Branden Robinson's avatar
      exynos5: tweak CMake for greppability · 9dc013a0
      G. Branden Robinson authored
      Introduce a variable to hold a long expression to prevent the code
      styler from line-wrapping the declare_platform() statement.  We want to
      keep that on one line so the `griddle` tool (or humans) can easily
      `grep` a list of supported platforms.  As of 2019-08-07, this platform
      is the only one requiring this workaround.
      9dc013a0
  7. Aug 05, 2019
  8. Jul 31, 2019
  9. Jul 30, 2019
Loading