An error occurred fetching the project authors.
- 20 May, 2010 1 commit
-
-
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:
Jarkko Nikula <jhnikula@gmail.com> Cc: Adrian Hunter <adrian.hunter@nokia.com> Cc: Eduardo Valentin <eduardo.valentin@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 15 Feb, 2010 3 commits
-
-
Adrian Hunter authored
It has been discovered that, when eMMC is powered off, current will flow from OMAP eMMC data pull-ups to the eMMC voltage supply. Configuring pads for OMAP off-mode does not help because eMMC is powered off independently of OMAP off-mode. Hence the pads are now re-configured when eMMC is powered on or off. Signed-off-by:
Adrian Hunter <adrian.hunter@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
Adrian Hunter authored
hsmmc.[ch] no longer has any dependency on twl4030 and variable names should be renamed to reflect that. Signed-off-by:
Adrian Hunter <adrian.hunter@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
Adrian Hunter authored
mmc-twl4030.[ch] no longer has any dependency on twl4030 and should be renamed to reflect that. Signed-off-by:
Adrian Hunter <adrian.hunter@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 16 Dec, 2009 1 commit
-
-
Balaji T K authored
Recent drivers/mfd/twl4030* renames to twl broke compile for various boards as the series was missing a patch to change the board-*.c files. This patch renames include twl4030.h to include twl.h and also renames twl4030_i2c_ routines. Signed-off-by:
Balaji T K <balajitk@ti.com> Acked-by:
Mark Brown <broonie@opensource.wolfsonmicro.com> Reviewed-by:
Felipe Balbi <felipe.balbi@nokia.com> Cc: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 13 Dec, 2009 1 commit
-
-
Amit Kucheria authored
The power scripts optimisation was mainly done by: Tero Kristo <tero.kristo@nokia.com> and Arnaud Mandy <ext-arnaud.2.mandy@nokia.com> I'm only refactoring and testing it against the mainline kernel. Signed-off-by:
Amit Kucheria <amit.kucheria@verdurent.com> Cc: Tero Kristo <tero.kristo@nokia.com> Cc: linux-omap@vger.kernel.org Acked-by:
Tony Lindgren <tony@atomide.com> Signed-off-by:
Samuel Ortiz <sameo@linux.intel.com>
-
- 12 Dec, 2009 2 commits
-
-
Kalle Valo authored
Otherwise Extreme Lower Power (ELP) wakeup doesn't work properly. Signed-off-by:
Kalle Valo <kalle.valo@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
Tony Lindgren authored
Replace omap_cfg_reg() with new style signal or gpio functions Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 22 Nov, 2009 2 commits
-
-
Kalle Valo authored
wl1251 is connected to the SPI bus in rx51, add support for this. Signed-off-by:
Kalle Valo <kalle.valo@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
Jani Nikula authored
Initialize some of the RX-51 input GPIO lines as gpio keys. Enable gpio keys as a module in rx51_defconfig. Signed-off-by:
Jani Nikula <ext-jani.1.nikula@nokia.com> Acked-by:
Tony Lindgren <tony@atomide.com> Signed-off-by:
Dmitry Torokhov <dtor@mail.ru>
-
- 22 Oct, 2009 1 commit
-
-
Janusz Krzysztofik authored
omap: Fix omap-keypad by restoring old keypad.h without breaking omap2 boards that use matrix_keypad Only mach-omap2 boards are currently using matrix_keypad. Allow mach-omap1 boards to use the old style keypad.h without breaking. Created against linux-2.6.32-rc5. Compile tested with omap_3430sdp_defconfig and rx51_defconfig. Signed-off-by:
Janusz Krzysztofik <jkrzyszt@tis.icnet.pl> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 20 Oct, 2009 1 commit
-
-
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:
Tony Lindgren <tony@atomide.com>
-
- 14 Oct, 2009 1 commit
-
-
Aaro Koskinen authored
The I2C-1 bus frequency on RX-51 should be 2.2 MHz. The speed is limited by TWL5030/GAIA; a higher speed could lead to errors on the interface. The maximum speed depends on the system clock for GAIA: 2.2 MHz (if 19.2 MHz), 2.4 MHz (26 MHz) or 2.9 MHz (38.4 MHz). Signed-off-by:
Aaro Koskinen <aaro.koskinen@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 06 Oct, 2009 1 commit
-
-
Amit Kucheria authored
The original driver was written with the KEY() macro defined as (col, row) instead of (row, col) as defined by the matrix keypad infrastructure. So the keymap was defined accordingly. Since the driver that was merged upstream uses the matrix keypad infrastructure, modify the keymap accordingly. While we are at it, fix the comments in twl4030.h and define PERSISTENT_KEY as (r,c) instead of (c, r) Tested on a RX51 (N900) device. Signed-off-by:
Amit Kucheria <amit.kucheria@verdurent.com> Acked-by:
Tony Lindgren <tony@atomide.com> Signed-off-by:
Dmitry Torokhov <dtor@mail.ru>
-
- 24 Sep, 2009 1 commit
-
-
Tony Lindgren authored
Otherwise we'll get compile errors like: arch/arm/plat-omap/include/mach/keypad.h:38:1: warning: "KEY" redefined arch/arm/plat-omap/include/mach/keypad.h:39:1: warning: "PERSISTENT_KEY" redefined ... Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 23 Sep, 2009 1 commit
-
-
Adrian Hunter authored
Specify MMC capabilities and set the power-saving flag for RX51. Signed-off-by:
Adrian Hunter <adrian.hunter@nokia.com> Acked-by:
Matt Fleming <matt@console-pimps.org> Cc: Ian Molton <ian@mnementh.co.uk> Cc: "Roberto A. Foglietta" <roberto.foglietta@gmail.com> Cc: Jarkko Lavinen <jarkko.lavinen@nokia.com> Cc: Denis Karpov <ext-denis.2.karpov@nokia.com> Cc: Pierre Ossman <pierre@ossman.eu> Cc: Philip Langdale <philipl@overt.org> Cc: "Madhusudhan" <madhu.cr@ti.com> Cc: <linux-mmc@vger.kernel.org> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org> Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org>
-
- 17 Sep, 2009 1 commit
-
-
Amit Kucheria authored
Add support for Dynamic Power Switching (DPS) for the RX51 board. These scripts are still a work-in-progress. I'll keep sending patches to update the scripts as they are optimised. Signed-off-by:
Amit Kucheria <amit.kucheria@verdurent.com> Acked-by:
Tony Lindgren <tony@atomide.com> Signed-off-by:
Samuel Ortiz <sameo@linux.intel.com>
-
- 10 Aug, 2009 1 commit
-
-
Roger Quadros authored
Add OTG transceiver to RX51 platform data to prevent kernel NULL pointer dereference during MUSB initialisation. Signed-off-by:
Roger Quadros <ext-roger.quadros@nokia.com> Signed-off-by:
Felipe Balbi <felipe.balbi@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 23 Jun, 2009 1 commit
-
-
Adrian Hunter authored
Use OneNAND sync read / write Signed-off-by:
Adrian Hunter <adrian.hunter@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 28 May, 2009 3 commits
-
-
Adrian Hunter authored
Connect VAUX3 to MMC2 Signed-off-by:
Adrian Hunter <adrian.hunter@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
Tony Lindgren authored
Convert the board-rx51 smc91x code to be generic and make the boards to use it. This allows future recalculation of the timings when the source clock gets scaled. Also correct the rx51 interrupt to be IORESOURCE_IRQ_HIGHLEVEL. Thanks to Paul Walmsley <paul@pwsan.com> for better GPMC timing calculations. Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
Juha Yrjola authored
Add generic onenand support when connected to GPMC and make the boards to use it. The patch has been modified to make it more generic to support all the boards with GPMC. The patch also remove unused prototype for omap2_onenand_rephase(void). Note that board-apollon.c is currently using the MTD_ONENAND_GENERIC and setting the GPMC timings in the bootloader. Setting the GPMC timings in the bootloader will not allow supporting frequency scaling for the onenand source clock. Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 24 Mar, 2009 1 commit
-
-
Lauri Leukkunen authored
Adds board files and related headers for Nokia RX-51 Internet Tablet. This patch has been updated with some clean-up patches posted earlier to linux-omap list. Signed-off-by:
Lauri Leukkunen <lauri.leukkunen@nokia.com> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-