summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-18cg2900: Fix for softirq warning during bootingstable-linux-ux500-3.3mjain001
spin_lock_bh called in interrupt mode, which is incorrect. Changed from spin_lock_bh/spin_inlock_bh to spin_lock_irqsave/spin_lock_irqrestore. Signed-off-by: mjain001 <mridul.jain@stericsson.com>
2012-06-14audio: Fix for choppy playback in Ubuntu pulse audioramesh.chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-06-11usb: gadget: storage: Add short_not_ok flagsupriya karanth
The short_not_ok flag is needed by the musb driver to allow mass storage data to go over DMA in mode1. Signed-off-by: supriya karanth <supriya.karanth@stericsson.com>
2012-06-04core: Fix for prcmu pending interrupt during suspendramesh.chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-06-04pm: Fix for prcmu pending interrupt during suspendramesh.chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-05-25core: Fix for Ethernet doesn't work after suspendramesh.chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-05-25pm: Fix for Ethernet doesn't work after suspendramesh.chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-05-25pm: Fix for Basic Suspend/Resume to workramesh.chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-05-25core: Fix for Basic Suspend/Resume to workramesh.chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-05-25dma: Fix for Basic Suspend/Resume to workramesh.chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-05-24Merge remote-tracking branch 'armlt/3.3-armlt-gator-5.10' into ↵ubuntu-release-12-07ubuntu-release-12-06Philippe Langlais
stable-linux-ux500-3.3 Conflicts: drivers/Kconfig
2012-05-24Revert "Merge remote-tracking branch 'armlt/previous-armlt-gator' into ↵Philippe Langlais
stable-linux-ux500-3.3" This reverts commit a394b8c66756934bf0bc526da1b888e524313fb4, reversing changes made to a416f0c1e67d56752c38d8db621be99b3cf12bb8.
2012-05-23android: compilation failure with new version of svnBernhard Rosenkranzer
The line setting SVN_REV assumes "svnversion" will report either the svn revision of the directory or "exported". This assumption is no longer true for subversion 1.7.4, which reports "Unversioned directory" instead of "exported", causing the build to fail (gcc -DSVN_REV=Unversioned directory) Signed-off-by: Bernhard Rosenkranzer <bernhard.rosenkranzer@linaro.org> Submitted-by: Mathieu Poirier <mathieu.poirier@linaro.org>
2012-05-18gator: ubuntu: Add packagingJon Medhurst
Files and scripts for creating Debian packages for Gator and ARM DS-5 target. Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-05-18gator: Revert #error about lack of CONFIG_PERF_EVENTSJon Medhurst
Make this a #warning as in version 5.9. This lets Gator build (with much reduced functionality) on platforms which require CONFIG_PERF_EVENTS to be disabled for whatever reason. Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-05-18gator-daemon: Fix sequence-point compile errorJon Medhurst
In mxml/mxml-file.c in the expression: (getc(fp) << 8) | getc(fp) the C standard allows right-hand getc() to be called before left hand one, which would cause a bug. The compiler gives an warning about this and we are treating warnings as errors this breaks the build with: error: operation on 'fp->_r' may be undefined [-Werror=sequence-point] We can fix this by rewriting the expressions in two parts, however the code in question has licensing clauses for modified versions which have not yet been resolved. Therefore, for now, we will disable the problematic error in the makefiles. Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-05-18gator-daemon: Fix building on armhfJon Medhurst
Remove compiler options for arm arch and interworking as they break the build and are superfluous now we build for armhf. Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-05-18gator: Default GATOR_MALI_INTERFACE_STYLE to '2'Jon Medhurst
At the moment, we only have users with the old style interface, so make our life easier by making it the default. Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-05-18gator: Add config for building the module in-treeJon Medhurst
Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-05-18gator: Version 5.10Jon Medhurst
New gator release (build 1385) for ARM DS-5 v5.10 Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-04-24RTC: Fix to correct improper implementation of clock update irq (RTC_UIE) ↵ramesh.chandrasekaran
and enable UIE Emulation Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-04-23RTC: Fix to correct improper implementation of clock update irq (RTC_UIE) ↵ramesh.chandrasekaran
and enable UIE Emulation Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-04-20board-mop500: changing default user_led trigger to heartbeatRicardo Salveti de Araujo
The snowball user_led is enabled and exported to userspace, but no useful default trigger is currently enabled by default. This patch is to just change the default trigger when heartbeat is compiled and enabled, so it can report the CPU status already during boot. Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
2012-04-18Sound: Fix for improper handling of DMA RX Channelubuntu-2012.04Ramesh Chandrasekaran
Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-04-18inlining without body is not allowed with gcc 4.7Bernhard Rosenkranzer
Adding 'inline' before a function requires that the body be provided in the same file when using gcc 4.7. Signed-off-by: Bernhard Rosenkranzer <bernhard.rosenkranzer@linaro.org> Committed-by: Mathieu Poirier <mathieu.poirier@linaro.org>
2012-04-13dma/ste_dma40: fix erroneous comparisonLinus Walleij
A small fallout from Vinod's conversions to dma_transfer_direction, this small comparison was done with a dma_data_direction instead. Fix it by comparing against the correct enum. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2012-04-13Merge remote-tracking branch 'armlt/previous-armlt-gator' into ↵Philippe Langlais
stable-linux-ux500-3.3 Conflicts: drivers/Kconfig
2012-04-02sound: Fix for audio doesn't work in IK 3.3ramesh.chandrasekaran
Enable "Headset left" and "Headset Right" ALSA options by default Signed-off-by: ramesh.chandrasekaran <ramesh.chandrasekaran@stericsson.com>
2012-03-28mach_ux500:Removed suspend flagNaveen Kumar GADDIPATI
By disbaling the suspend we could avoid the hangs in suspend and resume. This workaround will be removed once the power management supports for all other peripheral drivers. Signed-off-by: Naveen Kumar Gaddipati <naveen.gaddipati@stericsson.com>
2012-03-21snowball: removing GPIO161 config for external connectorMathieu J. Poirier
On snwoball V5 and up GPIO161 is routed to PMU_EN of the cg2900 and as such shouldn't be configured to handle an event from the external connector (J23). Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
2012-03-21cg2900: Change the PMU_EN gpio for snowballRobert MARKLUND
Snowball have the GPIO_EN on GPIO161 diffrent from u8500. Change-Id: I6dddb1e3d7b7b80ce046fbd92a7852a3d0a6c59d Signed-off-by: Robert Marklund <robert.marklund@stericsson.com>
2012-03-20usb: otg: ab8500: Go back to previous 3.2 version for ab8500-usb.cPhilippe Langlais
This is a workaround, till there is an explanation why this don't work on Snowball Signed-off-by: Philippe Langlais <philippe.langlais@linaro.org>
2012-03-20configs: Temporary disable STM traces for SnowballPhilippe Langlais
There are conflicts with Snowball GPIOs Signed-off-by: Philippe Langlais <philippe.langlais@linaro.org>
2012-03-19gator/driver: Add config for building the module in-treeJon Medhurst
Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-03-19gator/driver: Makefile fixes for building in-treeJon Medhurst
Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-03-19gator/driver: Makefile fix for output path of generated file gator_events.hJon Medhurst
Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-03-19gator/driver: Fix build failure on Linux 3.3Wade Cherry
Some meminfo tracepoint APIs were renamed in commit b413d48a (mm-tracepoint: rename page-free events) Signed-off-by: Wade Cherry <wade.cherry@arm.com> Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-03-19gator/driver: Version 5.9Jon Medhurst
Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-03-19gator/daemon: Fix counters initialisationWade Cherry
In certain circumstances counter were not enabled correctly. Fixed. Signed-off-by: Wade Cherry <wade.cherry@arm.com> Signed-off-by: Pawel Moll <pawel.moll@arm.com> Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-03-19gator/daemon: Version 5.9Jon Medhurst
Signed-off-by: Jon Medhurst <tixy@linaro.org>
2012-03-19mcde: hdmi: Workaround to don't use the clock framework for MCDE on SnowballPhilippe Langlais
After Jimmy Rubin commit "video: mcde: Add dsi/dpi freq settings", HDMI framebuffer is no more functional, hence this workaround. Signed-off-by: Philippe Langlais <philippe.langlais@stericsson.com>
2012-03-19Merge topic branch 'other' into integration-linux-ux500-3.3Philippe Langlais
2012-03-19Merge topic branch 'caif' into integration-linux-ux500-3.3Philippe Langlais
2012-03-19Merge topic branch 'hsi' into integration-linux-ux500-3.3Philippe Langlais
2012-03-19Merge topic branch 'modem' into integration-linux-ux500-3.3Philippe Langlais
2012-03-19Merge topic branch 'ste-multimedia-framework' into integration-linux-ux500-3.3Philippe Langlais
2012-03-19Merge topic branch 'wlan' into integration-linux-ux500-3.3Philippe Langlais
2012-03-19Merge topic branch 'st-mems-sensors' into integration-linux-ux500-3.3Philippe Langlais
2012-03-19Merge topic branch 'cg2900-fm' into integration-linux-ux500-3.3Philippe Langlais
2012-03-19Merge topic branch 'cg2900' into integration-linux-ux500-3.3Philippe Langlais