1. 17 2月, 2011 1 次提交
  2. 28 1月, 2011 1 次提交
    • R
      omap2+: Fix unused variable warning for omap_irq_base · 9f9605c2
      Russell King 提交于
      Commit 5d190c40
      (omap2+: Initialize omap_irq_base for entry-macro.S from
      platform code) simplified the handling of omap_irq_base
      for multi-omap builds. However, this patch also introduced
      a build warning for !MULTI_OMAP2 builds:
      
      arch/arm/mach-omap2/io.c: In function 'omap_irq_base_init':
      arch/arm/mach-omap2/io.c:322: warning: unused variable 'omap_irq_base'
      
      Fix this by removing the ifdef. Also simplify things further
      by moving omap_irq_base out of entry-macro.S.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      [tony@atomide.com: updated comments]
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      9f9605c2
  3. 15 12月, 2010 1 次提交
  4. 11 12月, 2010 1 次提交
  5. 07 12月, 2010 1 次提交
  6. 16 8月, 2010 1 次提交
  7. 24 4月, 2010 1 次提交
  8. 16 2月, 2010 5 次提交
  9. 21 10月, 2009 1 次提交
    • T
      omap: headers: Move remaining headers from include/mach to include/plat · ce491cf8
      Tony Lindgren 提交于
      Move the remaining headers under plat-omap/include/mach
      to plat-omap/include/plat. Also search and replace the
      files using these headers to include using the right path.
      
      This was done with:
      
      #!/bin/bash
      mach_dir_old="arch/arm/plat-omap/include/mach"
      plat_dir_new="arch/arm/plat-omap/include/plat"
      headers=$(cd $mach_dir_old && ls *.h)
      omap_dirs="arch/arm/*omap*/ \
      drivers/video/omap \
      sound/soc/omap"
      other_files="drivers/leds/leds-ams-delta.c \
      drivers/mfd/menelaus.c \
      drivers/mfd/twl4030-core.c \
      drivers/mtd/nand/ams-delta.c"
      
      for header in $headers; do
      	old="#include <mach\/$header"
      	new="#include <plat\/$header"
      	for dir in $omap_dirs; do
      		find $dir -type f -name \*.[chS] | \
      			xargs sed -i "s/$old/$new/"
      	done
      	find drivers/ -type f -name \*omap*.[chS] | \
      		xargs sed -i "s/$old/$new/"
      	for file in $other_files; do
      		sed -i "s/$old/$new/" $file
      	done
      done
      
      for header in $(ls $mach_dir_old/*.h); do
      	git mv $header $plat_dir_new/
      done
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      ce491cf8
  10. 20 10月, 2009 3 次提交
  11. 08 10月, 2009 2 次提交
  12. 29 8月, 2009 1 次提交
  13. 09 6月, 2009 1 次提交
  14. 29 5月, 2009 1 次提交
  15. 26 5月, 2009 2 次提交
  16. 05 11月, 2008 1 次提交
    • T
      ARM: OMAP: Fix get_irqnr_and_base to clear spurious interrupt bits · 52414739
      Tony Lindgren 提交于
      On omap24xx, INTCPS_SIR_IRQ_OFFSET bits [6:0] contains the current
      active interrupt number.
      
      However, on 34xx INTCPS_SIR_IRQ_OFFSET bits [31:7] also contains the
      SPURIOUSIRQFLAG, which gets set if the interrupt sorting information
      is invalid.
      
      If the SPURIOUSIRQFLAG bits are not ignored, the interrupt code will
      occasionally produce a bunch of confusing errors:
      
      irq -33, desc: c02ddcc8, depth: 0, count: 0, unhandled: 0
      ->handle_irq():  c006f23c, handle_bad_irq+0x0/0x22c
      ->chip(): 00000000, 0x0
      ->action(): 00000000
      
      Fix this by masking out only the ACTIVEIRQ bits. Also fix a
      confusing comment.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      52414739
  17. 09 10月, 2008 1 次提交
    • S
      ARM: OMAP3: Add minimal omap3430 support · cc26b3b0
      Syed Mohammed, Khasim 提交于
      Add minimal omap3430 support based on earlier patches from
      Syed Mohammed Khasim. Also merge in omap34xx SRAM support
      from Karthik Dasu and use consistent naming for sram init
      functions.
      
      Also do following changes that make 34xx support usable:
      
      - Remove unused sram.c functions for 34xx
      
      - Rename IRQ_SIR_IRQ to INTCPS_SIR_IRQ and define it locally
        in entry-macro.S
      
      - Update mach-omap2/io.c to support 2420, 2430, and 34xx
      
      - Also merge in 34xx GPMC changes to add fields wr_access and
        wr_data_mux_bus from Adrian Hunter
      
      - Remove memory initialization call omap2_init_memory() until
        until more generic memory initialization patches are posted.
        It's OK to rely on bootloader initialization until then.
      Signed-off-by: NSyed Mohammed, Khasim <khasim@ti.com>
      Signed-off-by: Karthik Dasu<karthik-dp@ti.com>
      Signed-off-by: NAdrian Hunter <ext-adrian.hunter@nokia.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      
      
      
      cc26b3b0
  18. 07 8月, 2008 2 次提交
  19. 23 5月, 2008 1 次提交
    • R
      [ARM] fix OMAP include loops · cfb41bf7
      Russell King 提交于
      OMAP has two include loops in its header files:
      
        asm-arm/hardware.h <- asm-arm/arch-omap/io.h <-
         asm-arm/arch-omap/hardware.h <- asm-arm/hardware.h
      
        asm-arm/arch-omap/board-palmte.h <-
         asm-arm/arch-omap/hardware.h <- asm-arm/hardware.h <-
         asm-arm/arch-omap/gpio.h <- asm-arm/arch-omap/board-palmte.h
      
      Circular include dependencies are dangerous since they can result in
      inconsistent definitions being provided to other code, especially if
      '#ifndef' constructs are used.
      
      Solve these by removing the offending includes, and add additional
      includes where necessary.
      Acked-by: NTony Lindgren <tony@atomide.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      cfb41bf7
  20. 15 4月, 2008 1 次提交
    • P
      ARM: OMAP2: Change 24xx to use new register access · 44595982
      Paul Walmsley 提交于
      This patch changes 24xx to use new register access, except for clock
      framework. Clock framework register access will get updates in the
      next patch.
      
      Note that board-*.c files change GPMC (General Purpose Memory Controller)
      access to use gpmc_cs_write_reg() instead of accessing the registers
      directly. The code also uses gpmc_fck instead of it's parent clock
      core_l3_ck for GPMC clock.
      
      The H4 board file also adds h4_init_flash() function, which specify the
      flash start and end addresses.
      
      Also note that sleep.S removes some unused registers addresses.
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      44595982
  21. 02 3月, 2007 1 次提交
  22. 17 2月, 2007 1 次提交
  23. 04 1月, 2006 1 次提交
    • R
      [ARM] Cleanup ARM includes · 78ff18a4
      Russell King 提交于
      arch/arm/kernel/entry-armv.S has contained a comment suggesting
      that asm/hardware.h and asm/arch/irqs.h should be moved into the
      asm/arch/entry-macro.S include.  So move the includes to these
      two files as required.
      
      Add missing includes (asm/hardware.h, asm/io.h) to asm/arch/system.h
      includes which use those facilities, and remove asm/io.h from
      kernel/process.c.
      
      Remove other unnecessary includes from arch/arm/kernel, arch/arm/mm
      and arch/arm/mach-footbridge.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      78ff18a4
  24. 10 11月, 2005 1 次提交
  25. 08 9月, 2005 1 次提交
  26. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4