1. 22 3月, 2011 1 次提交
  2. 03 5月, 2010 1 次提交
  3. 16 2月, 2010 1 次提交
  4. 23 11月, 2009 2 次提交
    • P
      omap3: drop all IVA-related address base definitions · 13a03229
      Paul Walmsley 提交于
      All of the OMAP3 IVA physical address macros in
      plat-omap/include/plat/omap34xx.h are wrong[1]:
      
      OMAP34XX_IVA_INTC_BASE: The IVA interrupt controller does not appear
      to be accessible from the L3 interconnect, and in any case is
      definitely not at 0x40000000; the latter address appears to be the
      internal IVA physical address base for the OMAP2420's interrupt control[2].
      
      OMAP34XX_DSP_BASE: The section of L3 physical address space mapped to
      the IVA starts at 0x5c000000, not 0x58000000.
      
      OMAP34XX_DSP_MEM_BASE: It's not clear what this refers to, but it's not
      in the L3 IVA address space.
      
      OMAP34XX_DSP_IPI_BASE: The Intrusive Port Interface is a relic from
      the OMAP2420 days and no longer applies to OMAP3.
      
      OMAP34XX_DSP_MMU_BASE: The DSP MMU is mapped at 0x5d000000, not 0x5a000000.
      
      
      Nothing that uses these can possibly be working, so drop them.  When
      future code needs these, correct versions can be added in.
      
      1. OMAP34xx Multimedia Device Silicon Revision 3.1.x Rev. W, Table 2-8:
         "L3 Interconnect View of the IVA2.2 Subsystem Memory Space."  p. 229.
      
      2. OMAP2420 Multimedia Processor Silicon Revision 2.1.1, 2.2 (Rev. Q),
         section 2.2.4.1, "IVA Memory Space Seen by L3", p. 132.
      
      3. ibid., section 4.3.11, "DSP IPI Overview", p. 200.
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      13a03229
    • F
      omap: Add platform init code for EHCI driver · 58a5491c
      Felipe Balbi 提交于
      Add platform init code for EHCI driver.
      
      Various fixes to the original patch by Ajay Kumar Gupta <ajay.gupta@ti.com>
      and Anand Gadiyar <gadiyar@ti.com>.
      
      Overo support added by Olof Johansson <olof@lixom.net>
      Beagle support added by Koen Kooi <koen@beagleboard.org>
      CM-T32 support added by Mike Rapoport <mike@compulab.co.il>
      Signed-off-by: NSigned-off-by: Olof Johansson <olof@lixom.net>
      Acked-by: NSteve Sakoman <steve@sakoman.com>
      Signed-off-by: NKoen Kooi <koen@beagleboard.org>
      Signed-off-by: NMike Rapoport <mike@compulab.co.il>
      Signed-off-by: NAjay Kumar Gupta <ajay.gupta@ti.com>
      Signed-off-by: NAnand Gadiyar <gadiyar@ti.com>
      Signed-off-by: NFelipe Balbi <felipe.balbi@nokia.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      58a5491c
  5. 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
  6. 29 5月, 2009 1 次提交
  7. 26 5月, 2009 8 次提交
  8. 29 3月, 2009 1 次提交
  9. 24 3月, 2009 2 次提交
  10. 07 8月, 2008 1 次提交
  11. 03 7月, 2008 1 次提交