1. 22 Dec, 2020 3 commits
  2. 21 Dec, 2020 1 commit
  3. 18 Dec, 2020 2 commits
  4. 16 Dec, 2020 2 commits
  5. 15 Dec, 2020 1 commit
  6. 14 Dec, 2020 10 commits
  7. 11 Dec, 2020 3 commits
    • Manish Pandey's avatar
    • Madhukar Pappireddy's avatar
      Merge changes from topic "rdevans" into integration · bd054fd6
      Madhukar Pappireddy authored
      * changes:
        doc: Update list of supported FVP platforms
        board/rdn2: add board support for rdn2 platform
        plat/arm/sgi: adapt to changes in memory map
        plat/arm/sgi: add platform id value for rdn2 platform
        plat/arm/sgi: platform definitions for upcoming platforms
        plat/arm/sgi: refactor header file inclusions
        plat/arm/sgi: refactor the inclusion of memory mapping
      bd054fd6
    • Javier Almansa Sobrino's avatar
      Add support for FEAT_MTPMU for Armv8.6 · 0063dd17
      Javier Almansa Sobrino authored
      
      
      If FEAT_PMUv3 is implemented and PMEVTYPER<n>(_EL0).MT bit is implemented
      as well, it is possible to control whether PMU counters take into account
      events happening on other threads.
      
      If FEAT_MTPMU is implemented, EL3 (or EL2) can override the MT bit
      leaving it to effective state of 0 regardless of any write to it.
      
      This patch introduces the DISABLE_MTPMU flag, which allows to diable
      multithread event count from EL3 (or EL2). The flag is disabled
      by default so the behavior is consistent with those architectures
      that do not implement FEAT_MTPMU.
      Signed-off-by: default avatarJavier Almansa Sobrino <javier.almansasobrino@arm.com>
      Change-Id: Iee3a8470ae8ba13316af1bd40c8d4aa86e0cb85e
      0063dd17
  8. 10 Dec, 2020 3 commits
  9. 09 Dec, 2020 11 commits
  10. 08 Dec, 2020 4 commits
    • Manish Pandey's avatar
    • Manish Pandey's avatar
      Merge changes from topic "zynqmp-bug-fixes" into integration · f0f3d368
      Manish Pandey authored
      * changes:
        zynqmp: pm: Update flags in common clk divisor node
        zynqmp: pm_api_clock: Copy only the valid bytes
      f0f3d368
    • Marek Vasut's avatar
      rcar_gen3: drivers: console: Treat log as device memory · 60576747
      Marek Vasut authored
      
      
      The BL31 log driver is registered before the xlat tables are initialized,
      at that point the log memory is configured as device memory and can only
      be accessed with up-to-32bit aligned accesses. Adjust the driver to do
      just that.
      
      The memset() call has to be replaced by a loop of 32bit writes to the log,
      the memcpy() is trivial to replace with a single 32bit write of the entire
      TLOG word. In the end, this even simplifies the code.
      Signed-off-by: default avatarMarek Vasut <marek.vasut+renesas@gmail.com>
      Change-Id: Ie9152e782e67d93e7236069a294df812e2b873bf
      60576747
    • Ravi Patel's avatar
      zynqmp: pm: Update flags in common clk divisor node · c8f62536
      Ravi Patel authored
      
      
      Current implementation doesn't support change of div1 value if clk
      has 2 divisor because div1 clk is the parent of the div2 clk and div2
      clk does not have SET_RATE_PARENT flag.
      This causes div1 value to be fixed and only value of div2 will be
      adjusted according to required clock rate.
      
      Example:
       Consider a case of nand_ref clock which has 2 divisor and 1 mux.
       The frequency of mux clock is 1500MHz and default value of div1 and
       div2 is 15 and 1 respectively. So the final clock will be of 100MHz.
       When driver requests 80MHz for nand_ref clock, clock framework will
       adjust the div2 value to 1 (setting div2 value 2 results final clock
       to 50MHz which is more inaccurate compare to 100Mhz) which results
       final clock to 100MHz.
       Ideally the value of div1 and div2 should be updated to 19 and 1
       respectively so that final clock goes to around 78MHz.
      
      This patch fixes above problem by allowing change in div1 value.
      Signed-off-by: default avatarRavi Patel <ravi.patel@xilinx.com>
      Signed-off-by: default avatarRajan Vaja <rajan.vaja@xilinx.com>
      Change-Id: Ibb98f6748d28653fdd1e59bf433b6a37ce9c1a58
      c8f62536