An error occurred fetching the project authors.
  1. 20 May, 2010 1 commit
    • Jarkko Nikula's avatar
      omap: rx51: Change the TWL4030 VMMC2 voltage constraints andsupply name · f2add1de
      Jarkko Nikula authored
      I believe the VMMC2 constraints must be the same than with VAUX3. Older
      boards are using TWL4030 VMMC2 supply for internal MMC whereas newer are
      using VAUX3 that has more limited constraints defined in this same file.
      
      More over, the VMMC2 supply is used also for analog audio domain and the
      miminum analog voltage of the TLV320AIC34 codec is 2.7 V.
      
      To combine these two facts, the patch changes supply name to V28_A as the
      newer boards register VMMC2_30 for VAUX3 and uses the same constraints than
      VAUX3 since those constraints are ok for the TLV320AIC34.
      Signed-off-by: default avatarJarkko Nikula <jhnikula@gmail.com>
      Cc: Adrian Hunter <adrian.hunter@nokia.com>
      Cc: Eduardo Valentin <eduardo.valentin@nokia.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      f2add1de
  2. 15 Feb, 2010 3 commits
  3. 16 Dec, 2009 1 commit
  4. 13 Dec, 2009 1 commit
  5. 12 Dec, 2009 2 commits
  6. 22 Nov, 2009 2 commits
  7. 22 Oct, 2009 1 commit
  8. 20 Oct, 2009 1 commit
    • Tony Lindgren's avatar
      omap: headers: Move remaining headers from include/mach to include/plat · ce491cf8
      Tony Lindgren authored
      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: default avatarTony Lindgren <tony@atomide.com>
      ce491cf8
  9. 14 Oct, 2009 1 commit
  10. 06 Oct, 2009 1 commit
  11. 24 Sep, 2009 1 commit
  12. 23 Sep, 2009 1 commit
  13. 17 Sep, 2009 1 commit
  14. 10 Aug, 2009 1 commit
  15. 23 Jun, 2009 1 commit
  16. 28 May, 2009 3 commits
  17. 24 Mar, 2009 1 commit