1. 23 9月, 2016 2 次提交
  2. 07 7月, 2016 1 次提交
    • J
      i.MX: split the GPT timer implementation into per SOC definitions · 66542f63
      Jean-Christophe Dubois 提交于
      In various Freescale SOCs, the GPT timers can be configured to select
      its input clock.
      
      Depending on the SOC the set of available input clocks may vary.
      
      The actual single GPT definition was no good enough and because of it
      booting the sabrelite board with a i.MX6DL device tree would fail
      because of an incorrect input clock definition for the i.MX6DL SOC.
      
      This patch fixes the i.MX6DL boot failure by adding the ability to
      define a different set of input clocks depending on the considered SOC.
      
      A different class has been defined for i.MX25, i.MX31 and i.MX6 each with
      its specific set of input clocks.
      
      The patch has been tested by booting KZM, i.MX25 PDK, i.MX6Q sabrelite
      and i.MX6DL sabrelite.
      Signed-off-by: NJean-Christophe Dubois <jcd@tribudubois.net>
      Message-id: 1467325619-8374-1-git-send-email-jcd@tribudubois.net
      Reviewed-by: NPeter Maydell <peter.maydell@linaro.org>
      [PMM: fixed spacing round '/' operator]
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      66542f63
  3. 19 5月, 2016 1 次提交
  4. 17 3月, 2016 3 次提交
  5. 29 1月, 2016 1 次提交
    • P
      arm: Clean up includes · 8ef94f0b
      Peter Maydell 提交于
      Clean up includes so that osdep.h is included first and headers
      which it implies are not included manually.
      
      This commit was created with scripts/clean-includes.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Message-id: 1453832250-766-13-git-send-email-peter.maydell@linaro.org
      8ef94f0b
  6. 17 12月, 2015 1 次提交
  7. 27 10月, 2015 1 次提交
  8. 07 9月, 2015 1 次提交
  9. 13 8月, 2015 2 次提交
  10. 09 8月, 2014 1 次提交
  11. 13 5月, 2014 1 次提交
  12. 23 8月, 2013 1 次提交
  13. 23 7月, 2013 1 次提交
  14. 04 7月, 2013 2 次提交
  15. 26 6月, 2013 2 次提交
  16. 04 6月, 2013 1 次提交
  17. 04 5月, 2013 1 次提交
  18. 09 4月, 2013 2 次提交
  19. 01 3月, 2013 1 次提交
    • P
      hw: include hw header files with full paths · 83c9f4ca
      Paolo Bonzini 提交于
      Done with this script:
      
      cd hw
      for i in `find . -name '*.h' | sed 's/^..//'`; do
        echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,'
      done | sed -i -f - `find . -type f`
      
      This is so that paths remain valid as files are moved.
      
      Instead, files in hw/dataplane are referenced with the relative path.
      We know they are not going to move to include/, and they are the only
      include files that are in subdirectories _and_ move.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      83c9f4ca
  20. 19 12月, 2012 1 次提交
  21. 23 10月, 2012 1 次提交
    • A
      Rename target_phys_addr_t to hwaddr · a8170e5e
      Avi Kivity 提交于
      target_phys_addr_t is unwieldly, violates the C standard (_t suffixes are
      reserved) and its purpose doesn't match the name (most target_phys_addr_t
      addresses are not target specific).  Replace it with a finger-friendly,
      standards conformant hwaddr.
      
      Outstanding patchsets can be fixed up with the command
      
        git rebase -i --exec 'find -name "*.[ch]"
                              | xargs s/target_phys_addr_t/hwaddr/g' origin
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      a8170e5e
  22. 14 9月, 2012 1 次提交
  23. 04 7月, 2012 1 次提交