1. 14 7月, 2008 1 次提交
  2. 17 4月, 2008 1 次提交
  3. 26 2月, 2008 1 次提交
    • A
      [POWERPC] 8xx: Timebase frequency should not depend on bus-frequency · 50530378
      Anton Vorontsov 提交于
      m8xx_setup.c says:
         /* Force all 8xx processors to use divide by 16 processor clock. */
      
      And at the same time it is using bus-frequency for calculating
      timebase.  It is okay for most setups because bus-frequency is
      equal to clock-frequency.
      
      The problem emerges when cpu frequency is > 66MHz, quoting
      u-boot/cpu/mpc8xx/speed.c:
      
              if (gd->cpu_clk <= 66000000) {
                      sccr_reg |= SCCR_EBDF00;        /* bus division factor = 1 */
                      gd->bus_clk = gd->cpu_clk;
              } else {
                      sccr_reg |= SCCR_EBDF01;        /* bus division factor = 2 */
                      gd->bus_clk = gd->cpu_clk / 2;
              }
      
      So in case of cpu clock > 66MHz, bus_clk = cpu_clk / 2. An then, from
      Linux, we calculate timebase frequency as tb_freq = bus_clk / 16,
      that is cpu_clk / 2 / 16, which is wrong.
      
      This fixes the system time drifting problem on the EP885C board
      running at 133MHz.
      Signed-off-by: NAnton Vorontsov <avorontsov@ru.mvista.com>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      50530378
  4. 06 2月, 2008 1 次提交
  5. 28 1月, 2008 5 次提交
  6. 24 1月, 2008 3 次提交
  7. 14 12月, 2007 1 次提交
  8. 03 12月, 2007 1 次提交
  9. 05 10月, 2007 2 次提交
  10. 04 10月, 2007 3 次提交
  11. 22 9月, 2007 1 次提交
  12. 23 8月, 2007 1 次提交
    • K
      [POWERPC] Remove old includes from arch/ppc · ed16c20d
      Kumar Gala 提交于
      Remove includes of files that existed in arch/ppc that we dont need in
      arch/powerpc anymore.  The following includes were removed:
      
       <asm/amigappc.h>
       <asm/bootinfo.h>
       <asm/ppcboot.h>
       <asm/ppc_sys.h>
       <asm/residual.h>
       <asm/m8260_pci.h>
      
      This also caused platforms/embedded6xx/mpc7448_hpc2.h to no longer be
      needed and thus removed.
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      ed16c20d
  13. 22 8月, 2007 1 次提交
  14. 17 8月, 2007 1 次提交
  15. 18 7月, 2007 1 次提交
  16. 10 7月, 2007 1 次提交
  17. 09 5月, 2007 1 次提交
  18. 13 4月, 2007 2 次提交
  19. 16 3月, 2007 1 次提交
  20. 07 2月, 2007 2 次提交
  21. 26 9月, 2005 1 次提交
    • P
      powerpc: Merge enough to start building in arch/powerpc. · 14cf11af
      Paul Mackerras 提交于
      This creates the directory structure under arch/powerpc and a bunch
      of Kconfig files.  It does a first-cut merge of arch/powerpc/mm,
      arch/powerpc/lib and arch/powerpc/platforms/powermac.  This is enough
      to build a 32-bit powermac kernel with ARCH=powerpc.
      
      For now we are getting some unmerged files from arch/ppc/kernel and
      arch/ppc/syslib, or arch/ppc64/kernel.  This makes some minor changes
      to files in those directories and files outside arch/powerpc.
      
      The boot directory is still not merged.  That's going to be interesting.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      14cf11af