1. 05 Oct, 2012 1 commit
  2. 31 Jul, 2012 1 commit
  3. 09 Jul, 2012 1 commit
  4. 29 May, 2012 2 commits
  5. 16 Apr, 2012 1 commit
  6. 23 Mar, 2012 2 commits
  7. 02 Mar, 2012 1 commit
    • Kukjin Kim's avatar
      ARM: S3C24XX: change the ARCH_S3C2410 to ARCH_S3C24XX · b130d5c2
      Kukjin Kim authored
      
      This patch changes the ARCH name to "ARCH_S3C24XX" for Samsung
      S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443,
      and S3C2450 SoCs so that we can merge the mach-xxx directories
      and plat-s3c24xx dir. to just one mach-s3c24xx for them.
      
      I think this should be sent to upstream via samsung tree because
      this touches many samsung stuff.
      
      Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Cc: Chris Ball <cjb@laptop.org>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Alessandro Zummo <a.zummo@towertech.it>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Cc: Greg Kroah-Hartman <gregkh@suse.de>
      [for the gadget part:]
      Acked-by: default avatarFelipe Balbi <balbi@ti.com>
      [for the framebuffer (video) part:]
      Acked-by: default avatarFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
      [For the watchdog-part:]
      Acked-by: default avatarWim Van Sebroeck <wim@iguana.be>
      Cc: Sangbeom Kim <sbkim73@samsung.com>
      Cc: Liam Girdwood <lrg@ti.com>
      Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
      Cc: Russell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
      b130d5c2
  8. 28 Feb, 2012 1 commit
  9. 19 Jan, 2012 1 commit
    • Russell King's avatar
      Revert "RTC: sa1100: support sa1100, pxa and mmp soc families" · a0164a57
      Russell King authored
      This reverts commit 7cea0065.
      
      The sa1100 cleanups fatally broke the SA1100 RTC driver - the first
      hint that something is wrong are these compiler warnings:
      
      drivers/rtc/rtc-sa1100.c:42:1: warning: "RCNR" redefined
      In file included from arch/arm/mach-sa1100/include/mach/hardware.h:73,
                       from drivers/rtc/rtc-sa1100.c:35:
      arch/arm/mach-sa1100/include/mach/SA-1100.h:877:1: warning: this is the location of the previous definition
      drivers/rtc/rtc-sa1100.c:43:1: warning: "RTAR" redefined
      arch/arm/mach-sa1100/include/mach/SA-1100.h:876:1: warning: this is the location of the previous definition
      drivers/rtc/rtc-sa1100.c:44:1: warning: "RTSR" redefined
      arch/arm/mach-sa1100/include/mach/SA-1100.h:879:1: warning: this is the location of the previous definition
      drivers/rtc/rtc-sa1100.c:45:1: warning: "RTTR" redefined
      arch/arm/mach-sa1100/include/mach/SA-1100.h:878:1: warning: this is the location of the previous definition
      drivers/rtc/rtc-sa1100.c:47:1: warning: "RTSR_HZE" redefined
      arch/arm/mach-sa1100/include/mach/SA-1100.h:891:1: warning: this is the location of the previous definition
      drivers/rtc/rtc-sa1100.c:48:1: warning: "RTSR_ALE" redefined
      arch/arm/mach-sa1100/include/mach/SA-1100.h:890:1: warning: this is the location of the previous definition
      drivers/rtc/rtc-sa1100.c:49:1: warning: "RTSR_HZ" redefined
      arch/arm/mach-sa1100/include/mach/SA-1100.h:889:1: warning: this is the location of the previous definition
      drivers/rtc/rtc-sa1100.c:50:1: warning: "RTSR_AL" redefined
      arch/arm/mach-sa1100/include/mach/SA-1100.h:888:1: warning: this is the location of the previous definition
      
      and the second problem, which is far more severe, are the different
      register layouts, resulting in the wrong registers being read on
      SA11x0 platforms.  This patch adds:
      
      	#define RCNR           0x00    /* RTC Count Register */
      	#define RTAR           0x04    /* RTC Alarm Register */
      	#define RTSR           0x08    /* RTC Status Register */
      	#define RTTR           0x0c    /* RTC Timer Trim Register */
      
      but the SA11x0 registers are:
      
      	#define RTAR            __REG(0x90010000)  /* RTC Alarm Reg. */
      	#define RCNR            __REG(0x90010004)  /* RTC CouNt Reg. */
      	#define RTTR            __REG(0x90010008)  /* RTC Trim Reg. */
      	#define RTSR            __REG(0x90010010)  /* RTC Status Reg. */
      a0164a57
  10. 28 Dec, 2011 1 commit
  11. 18 Dec, 2011 1 commit
  12. 02 Nov, 2011 1 commit
  13. 26 Jul, 2011 2 commits
  14. 02 Jul, 2011 1 commit
  15. 09 Jun, 2011 1 commit
  16. 27 May, 2011 5 commits
  17. 26 May, 2011 1 commit
  18. 17 May, 2011 1 commit
  19. 02 May, 2011 1 commit
  20. 23 Mar, 2011 1 commit
  21. 17 Feb, 2011 1 commit
    • John Stultz's avatar
      RTC: Revert UIE emulation removal · 6e57b1d6
      John Stultz authored
      Uwe pointed out that my alarm based UIE emulation is not sufficient
      to replace the older timer/polling based UIE emulation on devices
      where there is no alarm irq. This causes rtc devices without alarms
      to return -EINVAL to UIE ioctls. The fix is to re-instate the old
      timer/polling method for devices without alarm irqs.
      
      This patch reverts the following commits:
      042620a0 - Remove UIE emulation
      1daeddd5 - Cleanup removed UIE emulation declaration
      b5cc8ca1
      
       - Remove Kconfig symbol for UIE emulation
      
      The emulation mode will still need to be wired-in with a following
      patch before it will work.
      
      CC: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
      CC: Thomas Gleixner <tglx@linutronix.de>
      Reported-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Signed-off-by: default avatarJohn Stultz <john.stultz@linaro.org>
      6e57b1d6
  22. 21 Jan, 2011 1 commit
  23. 11 Nov, 2010 1 commit
  24. 28 Oct, 2010 4 commits
  25. 26 Oct, 2010 1 commit
  26. 11 Aug, 2010 3 commits
  27. 05 Aug, 2010 2 commits