1. 24 Feb, 2010 1 commit
  2. 15 Feb, 2010 1 commit
  3. 08 Feb, 2010 6 commits
  4. 02 Feb, 2010 6 commits
  5. 30 Jan, 2010 2 commits
  6. 29 Jan, 2010 4 commits
  7. 26 Jan, 2010 8 commits
  8. 21 Jan, 2010 1 commit
  9. 14 Jan, 2010 4 commits
  10. 12 Jan, 2010 1 commit
  11. 08 Jan, 2010 6 commits
    • Uwe Kleine-König's avatar
      imx: define functions to configure chip selects in the WEIM · a8dfb646
      Uwe Kleine-König authored
      This has the addional effect that the macros CSCR_U, CSCR_L and CSCR_A
      are not used anymore in mach-pcm038.c and mach-qong.c.  These still use
      the deprecated IO_ADDRESS macro and shouldn't be used in new code.
      Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <kernel@pengutronix.de>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Holger Schurig <hs4233@mail.mn-solutions.de>
      Cc: Dmitriy Taychenachev <dimichxp@gmail.com>
      a8dfb646
    • Uwe Kleine-König's avatar
      imx: properly protect mach/mx{1,[25][157x]}.h from multiple inclusion · 3cdd5441
      Uwe Kleine-König authored
      Some headers have used (now) wrong names or havn't had protection at
      all.  This is needed before adding static inline functions to the
      headers.
      Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <kernel@pengutronix.de>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Magnus Lilja <lilja.magnus@gmail.com>
      Cc: Holger Schurig <hs4233@mail.mn-solutions.de>
      Cc: Jiri Kosina <jkosina@suse.cz>
      Cc: Daniel Mack <daniel@caiaq.de>
      3cdd5441
    • Uwe Kleine-König's avatar
      imx: remove unneeded include of mach/hardware.h · 46311661
      Uwe Kleine-König authored
      This include isn't needed and hurts when defining static inline
      functions in mach/hardware.h (or files included by mach/hardware.h).
      
      The reason is that the consumers of mach/uncompress.h are compiled using
      -Dstatic= so the code for all inline function is included in e.g.
      arch/arm/boot/compressed/misc.o.
      Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <kernel@pengutronix.de>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Jörg Knobloch <knobloch@incostartec.com>
      Cc: Alan Carvalho de Assis <acassis@gmail.com>
      Cc: Daniel Mack <daniel@caiaq.de>
      Cc: Dmitriy Taychenachev <dimichxp@gmail.com>
      46311661
    • Uwe Kleine-König's avatar
      imx: remove mx1ads defconfig · d13ab097
      Uwe Kleine-König authored
      For some time now the defconfig for mx1ads produces a kernel for
      a versatile board.  As CONFIG_ARCH_MX1ADS is included in the mx1
      defconfig just get rid of mx1ads_defconfig.
      Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <kernel@pengutronix.de>
      d13ab097
    • Uwe Kleine-König's avatar
      imx: only define deprecated symbols conditionally · aae70193
      Uwe Kleine-König authored
      Define deprecated symbols in an #ifdef IMX_NEEDS_DEPRECATED_SYMBOLS ...
      
      All files that still depend on the old definitions get
      -DIMX_NEEDS_DEPRECATED_SYMBOLS passed to the compiler.
      
      When all remaining users are fixed this allows including the soc
      specific headers unconditionally.
      Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <kernel@pengutronix.de>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Eric Benard <eric@eukrea.com>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Alan Carvalho de Assis <acassis@gmail.com>
      Cc: Daniel Mack <daniel@caiaq.de>
      Cc: Alberto Panizzo <maramaopercheseimorto@gmail.com>
      Cc: Ilya Yanok <yanok@emcraft.com>
      Cc: Holger Schurig <hs4233@mail.mn-solutions.de>
      Cc: Jiri Kosina <jkosina@suse.cz>
      Cc: Magnus Lilja <lilja.magnus@gmail.com>
      aae70193
    • Uwe Kleine-König's avatar
      imx: mangle addresses after adding the offset · a9b7a2dd
      Uwe Kleine-König authored
      don't use
      
      	IO_ADDRESS($base) + $offset
      
      but
      
      	IO_ADDRESS($base + $offset)
      Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <kernel@pengutronix.de>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Holger Schurig <hs4233@mail.mn-solutions.de>
      Cc: Rabin Vincent <rabin@rab.in>
      Cc: "Agustín Ferrín Pozuelo" <gatoguan-os@yahoo.com>
      Cc: Javier Martin <javier.martin@vista-silicon.com>
      Cc: Valentin Longchamp <valentin.longchamp@epfl.ch>
      Cc: Daniel Mack <daniel@caiaq.de>
      Cc: Dmitriy Taychenachev <dimichxp@gmail.com>
      a9b7a2dd