1. 17 11月, 2012 1 次提交
    • S
      ARM: tegra: harmony: enable HDMI port · 20ffbd7d
      Stephen Warren 提交于
      Enable host1x, and the HDMI output. Harmony also has an optional LCD,
      and a VGA output. The former isn't enabled due to potential issues with
      having multiple outputs enabled. The latter isn't enabled since the
      driver doesn't support VGA yet anyway.
      
      Correct DDC I2C frequency to 100KHz.
      
      Based on work by Thierry Reding for TrimSlice.
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      20ffbd7d
  2. 16 11月, 2012 22 次提交
  3. 15 11月, 2012 1 次提交
  4. 14 11月, 2012 1 次提交
  5. 10 11月, 2012 1 次提交
  6. 06 11月, 2012 11 次提交
  7. 03 11月, 2012 2 次提交
  8. 02 11月, 2012 1 次提交
    • D
      FRV: Fix the new-style kernel_thread() stuff · e7aa51b2
      David Howells 提交于
      The kernel_thread() changes for FRV don't work, and FRV fails to boot,
      starting with:
      
      	commit 02ce496f
      	Author: Al Viro <viro@zeniv.linux.org.uk>
      	Date:   Tue Sep 18 22:18:51 2012 -0400
      	Subject: frv: split ret_from_fork, simplify kernel_thread() a lot
      
      The problem is that the userspace registers are completely cleared when a
      kernel thread is created and all subsequent user threads are then copied from
      that.  Unfortunately, however, the TBR and PSR registers are restored from the
      pt_regs and the values they should be set to are clobbered by the memset.
      
      Instead, copy across the old user registers as normal, and then merely alter
      GR8 and GR9 in it if we're going to execute a kernel thread.
      Signed-off-by: NDavid Howells <dhowells@redhat.com>
      e7aa51b2