]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - sitara-epos/sitara-epos-kernel.git/log
sitara-epos/sitara-epos-kernel.git
12 years agoarm:omap:omap: export omap_ctrl_writel()
Hebbar, Gururaja [Tue, 13 Dec 2011 06:04:24 +0000 (11:34 +0530)]
arm:omap:omap: export omap_ctrl_writel()

export omap_ctrl_writel() so that it can be used by others which are
built as module.

When we are here, add mising export include

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agovideo: da8xx-fb: Add debug message on sync and underflow error
Manjunathappa, Prakash [Tue, 6 Dec 2011 13:33:49 +0000 (19:03 +0530)]
video: da8xx-fb: Add debug message on sync and underflow error

Patch adds useful debug message on LCDC syn and underflow error.

Signed-off-by: Manjunathappa, Prakash <prakash.pm@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agousb: musb: Fix for handling overcurrent condition in host mode
Ravi B [Mon, 28 Nov 2011 13:28:11 +0000 (18:58 +0530)]
usb: musb: Fix for handling overcurrent condition in host mode

The overcurrent situation can occur in 2 scenarios
a) when usb device connected directly to musb root-port and device draw the
more current, further the VBUS_ERROR is generated and root-hub port change
status need to be notified to hub driver to handle over-current situation.
b) when usb device connected thrugh HUB, the hub status change will be
notified by hub through interrupt transfer and handled approperiately by HUB
driver.

This patch fixes (a), where root hub status change was not notified to hub driver.

Signed-off-by: Ravi B <ravibabu@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am335x: Enable Oprofile support on AM335x
Jeff Lance [Tue, 29 Nov 2011 16:30:53 +0000 (10:30 -0600)]
arm:omap:am335x: Enable Oprofile support on AM335x

This enables support for oProfile on AM335x.

Enabling Oprofile does not impact kernel performance since
Oprofile is dormant unless a profiling session is initiated.

Signed-off-by: Jeff Lance <j-lance1@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoOMAP: clock: am33xx specific API handling
Vaibhav Bedia [Tue, 29 Nov 2011 11:07:40 +0000 (16:37 +0530)]
OMAP: clock: am33xx specific API handling

Jitter correction for AM33XX is not present.
Handle revelant clock API's properly.

Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomfd: TPS65910: Make usable even if interrupt unused
Afzal Mohammed [Tue, 8 Nov 2011 09:57:00 +0000 (15:27 +0530)]
mfd: TPS65910: Make usable even if interrupt unused

TPS65910 can be used even if interrupt is unused.
Hence let probe succeed in case interrupt can't be
configured and let Kernel only to complain about it

Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoregulator: TPS65910: Create an array for reg init data
Kyle Manna [Wed, 2 Nov 2011 12:01:30 +0000 (17:31 +0530)]
regulator: TPS65910: Create an array for reg init data

Create an array of fixed size for the platform to pass regulator
initalization data through.

Passing an array of pointers to init data also allows more flexible
definition of init data as well as prevents reading past the end of the
array should the platform define an incorrectly sized array.

Signed-off-by: Kyle Manna <kyle.manna@fuel7.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoregulator: TPS65910: Move regulator defs to header
Kyle Manna [Wed, 2 Nov 2011 12:00:19 +0000 (17:30 +0530)]
regulator: TPS65910: Move regulator defs to header

Move the regulator defintions to the header so that platform board file
can use them to configure specific regulators.

Signed-off-by: Kyle Manna <kyle.manna@fuel7.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomfd: TPS65910: Move linux/gpio.h include to header
Kyle Manna [Wed, 2 Nov 2011 11:58:47 +0000 (17:28 +0530)]
mfd: TPS65910: Move linux/gpio.h include to header

The tps65910.h file depends on linux/gpio.h.  Move the include from the
source file to the tps65910.h header file.

Signed-off-by: Kyle Manna <kyle.manna@fuel7.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomfd: TPS65910: Fix typo that clobbers genirq
Kyle Manna [Wed, 2 Nov 2011 11:57:39 +0000 (17:27 +0530)]
mfd: TPS65910: Fix typo that clobbers genirq

Fix a typo that clobbers other interrupts in an unobvious way.

Signed-off-by: Kyle Manna <kyle.manna@fuel7.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomfd: TPS65910: Add I2C slave address macros
Kyle Manna [Wed, 2 Nov 2011 11:56:13 +0000 (17:26 +0530)]
mfd: TPS65910: Add I2C slave address macros

Add I2C slave addresses to the header file so that platform definitions
can use them.

Signed-off-by: Kyle Manna <kyle.manna@fuel7.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomfd: TPS65910: Handle non-existent devices
Kyle Manna [Wed, 2 Nov 2011 11:47:29 +0000 (17:17 +0530)]
mfd: TPS65910: Handle non-existent devices

Attempt to read the first register of the device, if there is no
device return -ENODEV

Signed-off-by: Kyle Manna <kyle.manna@fuel7.com>
Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoam335x: tsl2550: Add ambient light sensor support
AnilKumar Ch [Sun, 27 Nov 2011 17:26:32 +0000 (22:56 +0530)]
am335x: tsl2550: Add ambient light sensor support

This patch enables the TAOS, ambient light sensor of am335x

Also adds the tsl2550, ambient light sensor configuration to
default am335x_evm_defconfig kernel configuration

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
12 years agoam335x: Add TI TMP275 temperature sensor support
AnilKumar Ch [Fri, 25 Nov 2011 16:26:24 +0000 (21:56 +0530)]
am335x: Add TI TMP275 temperature sensor support

This patch enables the TI's temperature sensor - TMP275 on
am335x chip

Also adds the tmp275 to default kernel configuration
am335x_evm_defconfig

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
12 years agoam335x: lis33ldlh: Add accelerometer support to AM335X
AnilKumar Ch [Fri, 25 Nov 2011 11:47:38 +0000 (17:17 +0530)]
am335x: lis33ldlh: Add accelerometer support to AM335X

This patch adds lis33ldlh support to AM335X. lis33ldlh is connected
via I2C to am335x and I2C address is 0x18.

Also adds lis33ldlh, accelerometer to default kernel configuration
am335x_evm_defconfig

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
12 years agolis3lv02d: Add STMicroelectronics lis33ldlh digital
AnilKumar Ch [Wed, 30 Nov 2011 11:45:37 +0000 (17:15 +0530)]
lis3lv02d: Add STMicroelectronics lis33ldlh digital

accelerometer

This patch adds support for lis33ldlh digital accelerometer to the
lis3lv02d driver family. Adds ID field for detecting the lis33ldlh
module, based on this ID field lis3lv02d driver will export the
lis33ldlh module functionality.

Also exports g_range parameter to user space for run-time value
change. User must give 2/4/8 value depends on requirement.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
12 years agoarm:omap:am33xx: Create an alias for sgx/gfx clock
Vaibhav Hiremath [Tue, 29 Nov 2011 12:50:12 +0000 (18:20 +0530)]
arm:omap:am33xx: Create an alias for sgx/gfx clock

GFX/SGX driver has specific requriement for clock naming
convention, due to legacy platform support.
So create an alias for the clock "gfx_fclk" --> "sgx_ck".

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Create an alias for pruss clock
Vaibhav Hiremath [Tue, 29 Nov 2011 12:48:16 +0000 (18:18 +0530)]
arm:omap:am33xx: Create an alias for pruss clock

PRUSS driver has specific requriement for clock naming
convention, due to legacy platform support.
So create an alias for the clock "icss_uart_gclk" --> "pruss".

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agovideo:da8xx: Replace dma_alloc_coherent tp get_free_pages
Vaibhav Hiremath [Mon, 28 Nov 2011 06:48:27 +0000 (12:18 +0530)]
video:da8xx: Replace dma_alloc_coherent tp get_free_pages

dma-alloc_coherent supports limited memory allocation, which leads
to failure some time, and always without CONSISTENT_DMA_SIZE defination.
For safe allocation, change dma_alloc_coherent to get_free_pages and
mark the pages as reserved.

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:omap:am33xx: CPSW removes dmtimer re enabling
Chandan Nath [Thu, 24 Nov 2011 09:03:28 +0000 (14:33 +0530)]
ARM:omap:am33xx: CPSW removes dmtimer re enabling

This patch is added to remove unwanted dmtimer re enabling
code after reseting timer status register. Also, some additional
cleanup is done in this patch.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoam335x-evm: beta evm bringup changes for wlan and bt
Eyal Reizer [Tue, 22 Nov 2011 16:23:01 +0000 (18:23 +0200)]
am335x-evm: beta evm bringup changes for wlan and bt

* Fix a wrong gpio pin used for bluetooth enable on the beta evm.
  was using gpio0_17 while it should be gpio3_21

* Add a 70 msec delay after turning wlan on to allow for all voltages
  to settle down before starting sdio activity

Signed-off-by: Eyal Reizer <eyalr@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:omap:am33xx: Implement CPSW interrupt pacing functionality
Chandan Nath [Wed, 23 Nov 2011 13:13:19 +0000 (18:43 +0530)]
ARM:omap:am33xx: Implement CPSW interrupt pacing functionality

CPSW module includes an interrupt pacing block that can
be programmed to throttle the rate at which interrupts are
generated. This patch implements interrupt pacing logic that can
be controlled through the ethtool interface(only rx_coalesce_usecs
param is honored)

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:omap:am33xx: routing CPSW interrupts via Timer
Vaibhav Hiremath [Sat, 26 Nov 2011 20:48:24 +0000 (02:18 +0530)]
ARM:omap:am33xx: routing CPSW interrupts via Timer

This patch is added to route CPSW interrupts through ICSS module.
CPSW CPSW_RX and CPSW_TX interrupts are not directly used from CPSW
and instead they are routed through Timer module. This is done as an
software workaround for enabling interrupt pacing feature. As interrupt
Pacing works on C0_RX_PULSE interrupt connection to A8 INTC, which is
not connected to Cortex A8 interrupt controller directly due to hw issue,
it prevents interrupt pacing to work in AM33xx EVM. Therefore, Timer
capture module is used to pickup these interrupts and routed to A8 INTC.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:OMAP:AM33XX: Add PROFIBUS support
Amit Shah [Tue, 22 Nov 2011 13:47:41 +0000 (19:17 +0530)]
ARM:OMAP:AM33XX: Add PROFIBUS support

Added PROFIBUS pinmux settings

Signed-off-by: Amit Shah <amit.shah@ti.com>
Signed-off-by: Amit Shah <amit.shah@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:OMAP:AM33XX:pruss:Add platform specific changes for AM33XX in UIO PRUSS driver.
Vaibhav Hiremath [Sat, 26 Nov 2011 20:45:12 +0000 (02:15 +0530)]
ARM:OMAP:AM33XX:pruss:Add platform specific changes for AM33XX in UIO PRUSS driver.

Added AM33XX dependency for UIO_PRUSS driver to build in Kconfig.
ICSS memory map base and length were added in am33xx.h
Other PRU specific resources like ICSS IRQs for AM33XX,
uio_pruss driver register were added to devices.c

Signed-off-by: Amit Shah <amit.shah@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:DA850:pruss: Add platform specific changes for DA850 in UIO PRUSS driver
Amit Shah [Wed, 16 Nov 2011 15:32:30 +0000 (21:02 +0530)]
ARM:DA850:pruss: Add platform specific changes for DA850 in UIO PRUSS driver

PRU specific resources like RAM base address, PRUSS clock, IRQs for DA8XX, uio_pruss driver register were added.

Signed-off-by: Amit Shah <amit.shah@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:OMAP:AM33XX:pruss: Disable SRAM support in UIO_PRUSS
Amit Shah [Wed, 16 Nov 2011 12:11:08 +0000 (17:41 +0530)]
ARM:OMAP:AM33XX:pruss: Disable SRAM support in UIO_PRUSS

Disable SRAM export in UIO till consolidated SRAM support available for AM33XX

Signed-off-by: Amit Shah <amit.shah@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:OMAP:AM33XX: Add AM33XX_IRQ_GPMC0 as gpmc_irq for AM33XX
Amit Shah [Wed, 16 Nov 2011 08:17:20 +0000 (13:47 +0530)]
ARM:OMAP:AM33XX: Add AM33XX_IRQ_GPMC0 as gpmc_irq for AM33XX

uio_pruss driver was unable to load due to gpmc driver bug wherein the gpmc_irq for AM33XX was being set to INT_34XX_GPMC_IRQ.
Signed-off-by: Amit Shah <amit.shah@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoAM335XEVM: Volume Keys Support Added.
Goutam Kumar [Wed, 28 Sep 2011 08:47:51 +0000 (14:17 +0530)]
AM335XEVM: Volume Keys Support Added.

         1. GPIO Keys Support Enabled for volume up/down push bottons.
         2. Correction in Matrix Keypad for DB boot mode.

Signed-off-by: Goutam Kumar <goutam.kumar@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoAM335XEVM: Matrix GPIO Keypad support added
Goutam Kumar [Wed, 28 Sep 2011 08:45:53 +0000 (14:15 +0530)]
AM335XEVM: Matrix GPIO Keypad support added

This patch adds support for GPIO based Matric(2 x 3) Keypad.

Signed-off-by: Goutam Kumar <goutam.kumar@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Patil, Rachna <rachna@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoam335x-evm: wl12xx pin mux detection between rev1.0 and rev1.1
Eyal Reizer [Thu, 17 Nov 2011 15:00:24 +0000 (17:00 +0200)]
am335x-evm: wl12xx pin mux detection between rev1.0 and rev1.1

* WLAN and Bluetooth enable pins are different between alpha(rev1.0) and
  beta (rev1.1a) boards.
  Use the right pin muxing based on the header read from eeprom.

* Add the BT and WLAN enable pins to the wl12xx platform data so they can
  be used by external modules

Signed-off-by: Eyal Reizer <eyalr@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoboard-am335xevm: changes for working with catalog wl1271 com6m module
Eyal Reizer [Mon, 14 Nov 2011 07:44:10 +0000 (09:44 +0200)]
board-am335xevm: changes for working with catalog wl1271 com6m module

* The catalog COM6M module is using a 38.4Mhz crystal

* Do not activate the BT enable pin during boot. this is done from the
  appliaction when BT is brought up.

Signed-off-by: Eyal Reizer <eyalr@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoam335x_evm_defconfig: do not activate bluetooth modules
Eyal Reizer [Mon, 14 Nov 2011 07:40:14 +0000 (09:40 +0200)]
am335x_evm_defconfig: do not activate bluetooth modules

Turn off the bluetooth realted modules in the default defconfig
file as we switch to using a compat package which is bluetooth
certifiable.

Signed-off-by: Eyal Reizer <eyalr@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agousb: musb: cppi41: Workaround fix for Tx fifo flush during disconnect
Ajay Kumar Gupta [Fri, 18 Nov 2011 06:56:02 +0000 (12:26 +0530)]
usb: musb: cppi41: Workaround fix for Tx fifo flush during disconnect

Unable to flush musb Tx endpoint fifo during disconnect while i/o
in progress. The workaround is to set only fifoflush bit and clear
other bits in tx-csr register.

Signed-off-by: Ravi B <ravibabu@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agocan: d_can: Add D_CAN config to am335x_evm_defconfig
AnilKumar Ch [Sun, 6 Nov 2011 05:14:26 +0000 (10:44 +0530)]
can: d_can: Add D_CAN config to am335x_evm_defconfig

This patch adds the D_CAN and dependent modules configurations
to am335x_evm_defconfig

Dependent modules are:
CONFIG_CAN_RAW
CONFIG_CAN_BCM

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
12 years agocan: d_can: Add platform data for am33xx device
AnilKumar Ch [Sat, 26 Nov 2011 20:41:48 +0000 (02:11 +0530)]
can: d_can: Add platform data for am33xx device

This patch adds the platform data needed by the driver. Add the
resources to the difference d_can instances.

Initialization of message ram is necessary to read/write the
message object from/into the message RAM

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
12 years agocan: d_can: Add support for Bosch D_CAN controller
AnilKumar Ch [Sun, 6 Nov 2011 08:26:35 +0000 (13:56 +0530)]
can: d_can: Add support for Bosch D_CAN controller

Bosch D_CAN controller is a full-CAN implementation which is compliant
to CAN protocol version 2.0 part A and B. Bosch D_CAN user manual can be
obtained from:

http://www.semiconductors.bosch.de/media/en/pdf/ipmodules_1/can/
d_can_users_manual_111.pdf

This patch adds the support for D_CAN controller.
The following are the design choices made while writing the controller
driver:
1. Interface Register set IF1 has be used for transmit and IF2 is used for
   receive message objects.
2. Out of the total Message objects available, half of it are kept aside for
   RX purposes and the rest for TX purposes.
3. NAPI implementation is such that both the TX and RX paths functions
   in polling mode.

This patch adds the dcan driver support to am335x chip. This patch also adds
the can loopback mode from canutils.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
12 years agoarm:omap:cpsw: Enable/Disable gig support for different evm rev
Chandan Nath [Fri, 11 Nov 2011 11:59:07 +0000 (17:29 +0530)]
arm:omap:cpsw: Enable/Disable gig support for different evm rev

This patch is added to enable cpsw gigabit mode support for beta
evm and disable gigabit support for alpha EVMs. Please note that
phy_register_fixup_for_uid() function cannot be used to configure
phydev->supported as it is not register configuration and that needs
to be configured after phy->connect.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Reverting gigabit disabling support
Chandan Nath [Fri, 11 Nov 2011 10:42:48 +0000 (16:12 +0530)]
arm:omap:am33xx: Reverting gigabit disabling support

This patch is added to revert back gigabit disable changes.
Due to hw issue gigabit support was disabled in alpha revision
and now this will be handled with respect to evm revision which
will be pushed after this patch.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap3:am33xx: HACK for bypassing RTC hwmod
Vaibhav Bedia [Mon, 10 Oct 2011 20:10:12 +0000 (01:40 +0530)]
arm:omap3:am33xx: HACK for bypassing RTC hwmod

Temp patch to avoid rtc clock getting reset
Needs to be investigated

Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agousb: musb_core: kill all global and static variables
Ajay Kumar Gupta [Wed, 2 Nov 2011 05:45:40 +0000 (11:15 +0530)]
usb: musb_core: kill all global and static variables

This needed for dual instances support.
Changes include:
- Move fifo_mode, orig_dma_mask, otg_timer, first to musb struct
- Killed option for use_dma

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM: plat-omap: Fix warnings
Afzal Mohammed [Fri, 28 Oct 2011 07:10:07 +0000 (12:40 +0530)]
ARM: plat-omap: Fix warnings

Fix,

arch/arm/plat-omap/sram.c: In function 'omap3_sram_restore_context':
arch/arm/plat-omap/sram.c:330:3: warning: initialization makes pointer from integer without a cast
arch/arm/mach-omap2/pm34xx.c: In function 'omap_push_sram_idle':
arch/arm/mach-omap2/pm34xx.c:848:22: warning: initialization makes pointer from integer without a cast
arch/arm/mach-omap2/pm34xx.c:851:28: warning: initialization makes pointer from integer without a cast

Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomusb: ti81xx: kill global and static variable for multi instance
Ajay Kumar Gupta [Mon, 24 Oct 2011 11:25:29 +0000 (16:55 +0530)]
musb: ti81xx: kill global and static variable for multi instance

Moved global variable "otg_workaround" and static variable "last_timer"
to "struct musb".

Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agorcu: avoid build error for third-party modules
Paul E. McKenney [Mon, 24 Oct 2011 11:32:57 +0000 (17:02 +0530)]
rcu: avoid build error for third-party modules

The initial definition of __kfree_rcu() checked a static inline function
argument to see if it was a compile-time constant.  Apparently not all
compilers are willing to put up with this at all optimization levels.
Add a nasty comment and remove the warning, relying on the fact that
__kfree_rcu() is called only from kfree_rcu(), which always passes in
a compile-time constant.

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agousb: defconfig: add back VIDEO support
Ajay Kumar Gupta [Fri, 21 Oct 2011 08:48:25 +0000 (14:18 +0530)]
usb: defconfig: add back VIDEO support

Also enabled missing CONFIG_OTG and CONFIG_USB_SUSPEND.
Also added the changes required for new config look in v3.2

Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
12 years agousb: ether_gadget: fix insmod panic after fsg rmmod
Ajay Kumar Gupta [Fri, 21 Oct 2011 05:02:12 +0000 (10:32 +0530)]
usb: ether_gadget: fix insmod panic after fsg rmmod

Fixes kernel panic seen during g_ether.ko module insertion performed
after the FSG gadget rmmod.

Ether gadget doesn't reset the usb_ep(s) during initialization and
so was getting the previous gadget's usb_ep->desc data.

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am335x: Corrects cpsw sa_lo and sa_hi offset
Chandan Nath [Fri, 21 Oct 2011 09:42:06 +0000 (15:12 +0530)]
arm:omap:am335x: Corrects cpsw sa_lo and sa_hi offset

This patch is added to correct register offset of cpgmac
sl1 source low register address and cpgmac sl2 source high
register address. The register offset were 0x21c, 0x220 and
0x31c, 0x320. Instead they are corrected as 0x220, 0x224 and
0x320, 0x324. This is corrected by adding missing P1_TS_SEQ_MTYPE
register in cpsw_slave_reg structure.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am335x: CPSW autonegotiates to 10 mbps for beaglebone
Chandan Nath [Wed, 19 Oct 2011 09:51:43 +0000 (15:21 +0530)]
arm:omap:am335x: CPSW autonegotiates to 10 mbps for beaglebone

This patch is added as an workaround for cpsw in case of beaglebone
board to autonegotiates to 10 mbps speed even if it is connected to
100 mbps link. The reason for this is to overcome hardware issue of
100 mbps speed. However, CPSW works fine for both 10 and 100 mbps
speed in case of am335x evm.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: TLK110 PHY support
Vaibhav Hiremath [Sat, 26 Nov 2011 20:12:56 +0000 (01:42 +0530)]
arm:omap:am33xx: TLK110 PHY support

This patch adds support for TLK110 PHY. This include some
additional phy register configuration for 1.0 phy version.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am335x: Enable JTAG clock by default
Vaibhav Bedia [Thu, 13 Oct 2011 17:28:43 +0000 (22:58 +0530)]
arm:omap:am335x: Enable JTAG clock by default

Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:debug: Add a config option for enabling JTAG clock
Vaibhav Bedia [Thu, 13 Oct 2011 16:54:16 +0000 (22:24 +0530)]
arm:debug: Add a config option for enabling JTAG clock

In a power aware system all unused clocks should be disabled.
However we might want to enable the JTAG clock alone for debugger
connectivity if such an option exists.

Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomusb:host: removing warning message while unable to flush txfifo
Ravi B [Wed, 12 Oct 2011 11:11:10 +0000 (16:41 +0530)]
musb:host: removing warning message while unable to flush txfifo

changing the warning statement to debug when the tx fifo
was unable to flush.

Signed-off-by: Ravi B <ravibabu@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomusb:gadget: use pio mode for zero byte transfer in gadget mode
Ravi B [Wed, 12 Oct 2011 05:59:23 +0000 (11:29 +0530)]
musb:gadget: use pio mode for zero byte transfer in gadget mode

The cppi41 txdma is unable to transfer zero byte length, this
workaround uses pio mode to transfer zero byte length.

Signed-off-by: Ravi B <ravibabu@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoEnable bit15 in the maccontrol register for 100Mbps.
Steve Kipisz [Thu, 6 Oct 2011 20:57:45 +0000 (15:57 -0500)]
Enable bit15 in the maccontrol register for 100Mbps.

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Add eeprom board detection logic for beaglebone
Steve Kipisz [Thu, 13 Oct 2011 11:25:50 +0000 (16:55 +0530)]
arm:omap:am33xx: Add eeprom board detection logic for beaglebone

In case of wrong EEPROM ID, or if device fails to read/detect the
board fall back to BeagleBone board.

Also, add support for BeagleBone version detection and support for
old boards.

Difference in BeagleBone variants.

* Have different dev_cfg structures and setup functions for new, old
  beaglebone boards setup pin mux accordingly

* Fall back to older Bone boards if EEPROM reads are incorrect or empty

* Read version field of EEPROM config to call correct setup_beaglebone
  function according to board version

Signed-off-by: Steve Kipisz <s-kipisz2@ti.com>
Signed-off-by: Joel A Fernandes <joelagnel@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: IA EVM low level debug
Afzal Mohammed [Thu, 13 Oct 2011 05:33:46 +0000 (11:03 +0530)]
arm:omap:am33xx: IA EVM low level debug

Low level debug support for IA EVM, it uses UART3
(numbering as per TRM). This is referred as UART4
by software, software UART numbering starts from 1.

Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Update the pinmux table for IA EVM
Vaibhav Bedia [Mon, 14 Nov 2011 13:41:17 +0000 (19:11 +0530)]
arm:omap:am33xx: Update the pinmux table for IA EVM

Add second I2C instance and MMC/SD to the device list

Signed-off-by: Amit Shah <amit.shah@ti.com>
Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Add support for UART3 on IA EVM
Hebbar, Gururaja [Wed, 17 Aug 2011 15:24:10 +0000 (20:54 +0530)]
arm:omap:am33xx: Add support for UART3 on IA EVM

IA EVM has UART3 as console. provide support for the same

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Enable IA EVM build
Afzal Mohammed [Wed, 17 Aug 2011 05:47:48 +0000 (11:17 +0530)]
arm:omap:am33xx: Enable IA EVM build

Enable IA EVM build in am335x_evm_defconfig

Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Board support for AM335X IA EVM
Afzal Mohammed [Wed, 17 Aug 2011 05:47:48 +0000 (11:17 +0530)]
arm:omap:am33xx: Board support for AM335X IA EVM

UART3 is used as boot console for IA EVM.
To capture decompressor logs & early prints,
a different mach-id is required and so a new
board support. It has machine specific entry
points same as that of AM335XEVM.

Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoAM335XIAEVM: Update mach-id
Afzal Mohammed [Wed, 17 Aug 2011 05:02:54 +0000 (10:32 +0530)]
AM335XIAEVM: Update mach-id

Use machine-id for IA board registered at
http://www.arm.linux.org.uk/developer/machines/

Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agowl12xx: allow selecting platform data independently
Eyal Reizer [Mon, 10 Oct 2011 09:44:15 +0000 (11:44 +0200)]
wl12xx: allow selecting platform data independently

Needed when working with a compat-wireless package:

* allow selecting WL12XX_PLATFORM_DATA independently
* Selects WIRELESS_EXT needed for working with tools like iwconfig
  and can't just be selected using the deconfig file

Signed-off-by: Eyal Reizer <eyalr@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agomux335x: pin muxing additions for wlan and bluetooth
Eyal Reizer [Mon, 10 Oct 2011 09:42:47 +0000 (11:42 +0200)]
mux335x: pin muxing additions for wlan and bluetooth

* Pin muxing for wlan and blutooth enable pins
* Pin muxing for the wlan interrupt line
* Fix muxing mistake for gpmc_ben1 pin

Signed-off-by: Eyal Reizer <eyalr@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: add platform support for wlan and bluetooth
Eyal Reizer [Mon, 10 Oct 2011 09:42:08 +0000 (11:42 +0200)]
arm:omap:am33xx: add platform support for wlan and bluetooth

* Add pin muxing for wlan and bluetooth
* Initialize mmc2 for working with the wl12xx COM module
* Enable wlan and bluetooth

Signed-off-by: Eyal Reizer <eyalr@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoam335x-evm: add deconfig switches needed for wlan and bt
Eyal Reizer [Mon, 10 Oct 2011 09:39:14 +0000 (11:39 +0200)]
am335x-evm: add deconfig switches needed for wlan and bt

* Activated switches needed in the kernel for working with nlcp wlan in
  both softap mode and station mode. the mac80211 switches are not
  activated as we are using a compat-wireless package which is compiled
  with this kernel
* Activates kernel switches needed for using bluetooth

Signed-off-by: Eyal Reizer <eyalr@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:omap3:am335x evm: Update defconfig for RTC driver
Vaibhav Bedia [Mon, 10 Oct 2011 15:14:33 +0000 (20:44 +0530)]
ARM:omap3:am335x evm: Update defconfig for RTC driver

Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:omap3:am335x evm: Add support for RTC
Vaibhav Bedia [Mon, 10 Oct 2011 15:10:49 +0000 (20:40 +0530)]
ARM:omap3:am335x evm: Add support for RTC

Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am335x: CPSW autonegotiates to 10/100 mbps
Chandan Nath [Wed, 5 Oct 2011 10:13:54 +0000 (15:43 +0530)]
arm:omap:am335x: CPSW autonegotiates to 10/100 mbps

This patch is added as an workaround for cpsw to autonegotiates
to 10/100 mbps speed even if it is connected to 1 Gig link. The reason
for this is to overcome hardware issue of 1 Gig speed. Currently cpsw
is not working at 1 Gig speed and so when ethernet is connected to 1 Gig
link, it will auto negotiates and will fall back 10/100 mbps speed.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agovideo: da8xx-fb: Fix build warning on unused label
Manjunathappa, Prakash [Mon, 10 Oct 2011 06:10:55 +0000 (11:40 +0530)]
video: da8xx-fb: Fix build warning on unused label

Patch fixes build warning on label "err_cpu_freq" when CONFIG_CPU_FREQ
is not defined.

Signed-off-by: Manjunathappa, Prakash <prakash.pm@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:omap3:am335x evm: update defconfig
Sekhar Nori [Sat, 8 Oct 2011 10:38:58 +0000 (16:08 +0530)]
ARM:omap3:am335x evm: update defconfig

Update the defconfig to remove configurations
unnecessary for the EVM.

This helps reduce the size of uImage from 3.5MB
to ~2.5MB

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am335x: Enable m25p80 support in defconfig
Philip, Avinash [Tue, 4 Oct 2011 18:52:19 +0000 (00:22 +0530)]
arm:omap:am335x: Enable m25p80 support in defconfig

Support for SPI flash driver m25p80 is enabled through
am335x_evm_defconfig config file.

Signed-off-by: Philip, Avinash <avinashphilip@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am335x - Support for SPI flash device is added
Hebbar, Gururaja [Fri, 7 Oct 2011 14:42:08 +0000 (20:12 +0530)]
arm:omap:am335x - Support for SPI flash device is added

This patch adds support for
1. SPI (instance 0 & 1) controller on am335x
2. MTD Partition table and Pin-muxing for spi flash device.
3. SPI clock is fixed to 24 MHz on SPI bus 0 and 12 MHz for SPI bus 1.

Signed-off-by: Philip, Avinash <avinashphilip@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:mcspi: follow proper probe() & remove() steps
Hebbar, Gururaja [Mon, 24 Oct 2011 10:52:50 +0000 (16:22 +0530)]
arm:omap:mcspi: follow proper probe() & remove() steps

Currently McSPI driver doesn't follow correct failure fallback steps
incase of probe & in case of remove() procedure.

This patch corrects label names to give meaningful labels & also
corrects fallback & removal procedure

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:mcspi: follow proper pm_runtime enable/disable sequence
Hebbar, Gururaja [Mon, 24 Oct 2011 10:20:27 +0000 (15:50 +0530)]
arm:omap:mcspi: follow proper pm_runtime enable/disable sequence

omap mcspi probe() doesn't call pm_runtime put & disable functions
in case of failure. remove() doesn't call pm_runtime disable. This could
lead to warnings as below on subsequent insmod.

root@arago-armv7:~# insmod /lib/modules/3.1.0-rc8/spi-omap2-mcspi.ko
[  255.383671] omap2_mcspi omap2_mcspi.1: Unbalanced pm_runtime_enable!
...

This patch adds the pm_runtime put() & disable() at aprropriate stages.

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:mcspi - DMA support has added for MCSPI
Vaibhav Bedia [Mon, 10 Oct 2011 15:15:05 +0000 (20:45 +0530)]
arm:omap:mcspi - DMA support has added for MCSPI

Support for DMA transmission on MCSPI added.
1. MCSPI TX and RX registers are not 256-bit aligned address, as
required for Constant address mode in DAM and SAM in EDMA, causing EDMA
error generation condition. With this commit SAM and DAM are set to
Increment address mode.
2. SPI uses EDMA AB synchronized mode for transmission and EDMA A
synchronized mode for reception, which can be used to handle large chunk
of data above 64KB with single EDMA completion interrupt.

Signed-off-by: Philip, Avinash <avinashphilip@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:serial: Change MAX_HSUART_PORTS to 6
Afzal Mohammed [Wed, 5 Oct 2011 08:26:56 +0000 (13:56 +0530)]
arm:omap:serial: Change MAX_HSUART_PORTS to 6

In case of AM335x we have 6 UART ports.

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: CPSW fix for using macid from efuse
Chandan Nath [Mon, 3 Oct 2011 05:25:57 +0000 (10:55 +0530)]
arm:omap:am33xx: CPSW fix for using macid from efuse

This patch is added to use proper mac id from efuse and use it
for getting ip address from dhcp server. If mac id from efuse is
not used, cpsw will generate some random mac id and used for
getting new ip address in every  boot.

Signed-off-by: Chandan Nath <chandan.nath@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agovideo: da8xx-fb: Fix flicker due to 1 frame delay in updated frame
Manjunathappa, Prakash [Tue, 27 Sep 2011 06:01:28 +0000 (11:31 +0530)]
video: da8xx-fb: Fix flicker due to 1 frame delay in updated frame

There is flicker/tearing issue was observed with current FB driver.
Below link to wiki describes the issue and it also has link to
application with which issue can be reproduced.
http://ap-fpdsp-swapps.dal.design.ti.com/index.php/DA8XX_LCDC_Linux_FB_FAQs
Issue is because of 2 active DMA channels ping ponging among them
along with usage of 2 DDR buffer ping pong and application is not
aware of active DMA channel.
Below steps describe issue:
1)Initially assume both buffers FB0 and FB1 are programmed for buffer-0.
2)On EOF0: Program FB0 for buffer-1, indicate(wake up) application
 to fill up buffer-0. As FB1 is active and continues to DMA buffer-0
(which is being filled), leading to tearing/flickering issue.
3)On EOF1: Program FB1 for buffer-0, indicate(wake up) application to
 fill up buffer-1. As FB0 is active and continues to DMA buffer-1(which
 is being filled), leading to tearing/flickering issue.
4)On EOF0: Program FB0 for buffer-1, indicate(wake up) application to fill
 up buffer-0. As FB1 is active and continues to DMA buffer-0(which is being
 filled), leading to tearing/flickering issue.
...
The above steps also depicts that there is one frame delay for each
frame panned by application.
Patch fixes the issue by keeping track free DMA channel and configures
it in driver PAN callback so that panned frame from application gets
displayed in next frame period.

Signed-off-by: Nellutla, Aditya <aditya.n@ti.com>
Signed-off-by: Manjunathappa, Prakash <prakash.pm@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Register HSMMC Platform on AM335x EVM
Hebbar, Gururaja [Tue, 4 Oct 2011 18:19:18 +0000 (23:49 +0530)]
arm:omap:am33xx: Register HSMMC Platform on AM335x EVM

This patch adds the hardware info like pin-mux, platform data and
registers the MMC module. AM335x SOC supports 3 HS-MMC instances.
However only 2 HS-MMC (MMC0, 1) instances are supported on EVM.

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:hsmmc: Support new HSMMC IP Variant
Hebbar, Gururaja [Tue, 27 Sep 2011 17:23:34 +0000 (22:53 +0530)]
arm:omap:hsmmc: Support new HSMMC IP Variant

Few OMAP platform has a new Variant of HSMMC.

This patch adds support for the same.

Changes
- Add new mmc version platform data to identify new IP
- Currently code support max segs of 1
- uses different registr bit to identify dma completion errors
- New MMC IP variant defines MMC EDMA Event using HWMOD. Using regular
  platform_get_resource fails for in this manner. Replace it with
  platform_get_resource_byname

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agommc: omap: remove clock rate hard coding
Saxena, Parth [Fri, 24 Jun 2011 07:49:45 +0000 (13:19 +0530)]
mmc: omap: remove clock rate hard coding

MMC master clock rate can vary for each instance of the MMC controller
on the device. Use clk_get_rate instead to get the value.

Signed-off-by: Balaji TK <balajitk@ti.com>
Reviewed-by: Venkatraman S <svenkatr@ti.com>
Tested-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
12 years agoAM335X: Enable touchscreen driver in default am335x_evm_defconfig
Patil, Rachna [Thu, 29 Sep 2011 09:17:45 +0000 (14:47 +0530)]
AM335X: Enable touchscreen driver in default am335x_evm_defconfig

This patch enables ti_tscadc touchscreen driver in the default
am335x_evm_deconfig.

Signed-off-by: Patil, Rachna <rachna@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoAM335X: Enable frame buffer and backlight driver in default am335x_evm_defconfig
Manjunathappa, Prakash [Thu, 29 Sep 2011 07:16:24 +0000 (12:46 +0530)]
AM335X: Enable frame buffer and backlight driver in default am335x_evm_defconfig

This patch enables the da8xx-fb frame buffer device, frame buffer
console and backlight driver.

Signed-off-by: Manjunathappa, Prakash <prakash.pm@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: ASoC: Enable Audio support for AM335x
Hebbar, Gururaja [Mon, 26 Sep 2011 12:22:52 +0000 (17:52 +0530)]
arm:omap:am33xx: ASoC: Enable Audio support for AM335x

This enable Ausio support for am335x in defconfig

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: McASP hookup for AM335x EVM
Hebbar, Gururaja [Mon, 26 Sep 2011 11:33:23 +0000 (17:03 +0530)]
arm:omap:am33xx: McASP hookup for AM335x EVM

This patch adds the machine driver for AM335x EVM in conformance with the new
ASoC framework.

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Register McASP Platform on AM335x EVM
Hebbar, Gururaja [Tue, 4 Oct 2011 15:35:46 +0000 (21:05 +0530)]
arm:omap:am33xx: Register McASP Platform on AM335x EVM

This patch adds the hardware info like base addresses, EDMA events,
interrupt nos. and other module specific data for the McASP IP.

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:omap:am33xx: ASoC: Add support for am33xx in ASoC
Hebbar, Gururaja [Mon, 26 Sep 2011 11:00:21 +0000 (16:30 +0530)]
ARM:omap:am33xx: ASoC: Add support for am33xx in ASoC

AM33xx uses same McASP IP as the Davinci Platform. This patch adds
config option to enable the McASP driver for AM335x (Kconfig & Makefile)

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoASoC: davinci-mcasp: Flush the FIFO before enabling
Vaibhav Bedia [Mon, 17 Oct 2011 09:12:11 +0000 (14:42 +0530)]
ASoC: davinci-mcasp: Flush the FIFO before enabling

FIFO should be flushed before it is enabled for the first time
This fixes the I/O errors reported by the ASoC core on a fresh boot

Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:davinci:mcasp: Support new McASP IP Variant
Hebbar, Gururaja [Fri, 23 Sep 2011 12:17:35 +0000 (17:47 +0530)]
ARM:davinci:mcasp: Support new McASP IP Variant

Few OMAP platform has a new Variant of McASP than those found on Davinci
Platform.

This patch adds support for the same.

Changes
- Add new MCASP_VERSION_3 to identify new IP
- The FIFO offsets for the McASP in new platform are different from the
  ones seen on previous varianats. Use version member to identify and
  process accordingly

This has been tested on DM365 platform to make sure nothing existing
breaks

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoARM:davinci:mcasp: remove unused header file
Hebbar, Gururaja [Mon, 26 Sep 2011 12:46:19 +0000 (18:16 +0530)]
ARM:davinci:mcasp: remove unused header file

parameters from <mach/mux.h> isnt used anywhere. Hence removed

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:davinci:mcasp: Move McASP related defines to common place
Vaibhav Hiremath [Sat, 26 Nov 2011 19:43:37 +0000 (01:13 +0530)]
arm:davinci:mcasp: Move McASP related defines to common place

Davinci McASP IP & its Driver is shared by few OMAP platforms. Moving the
McASP ddefines to a common place, helps to share the same header file
across platforms

This patch moves asp.h from
arch/arm/mach-davinci/include/mach/asp.h -> arch/arm/include/asm/hardware/asp.h

Header define check is also updated to reflect hardware name rather than
platform

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: Make Dummy Regulator default selected
Hebbar, Gururaja [Mon, 26 Sep 2011 09:54:07 +0000 (15:24 +0530)]
arm:omap:am33xx: Make Dummy Regulator default selected

Since Regulators are not (yet) enabled/configured on AM335x, Enable Dummy
Regulator support as default in defconfig

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoConsolidate SRAM support
Jean-Christophe PLAGNIOL-VILLARD [Sun, 10 Jul 2011 12:19:39 +0000 (14:19 +0200)]
Consolidate SRAM support

We have two SoCs using SRAM, both with their own allocation systems,
and both with their own ways of copying functions into the SRAM.

Let's unify this before we have additional SoCs re-implementing this
obviously common functionality themselves.

For this use the generic allocator and the newly introduce
gen_pool_add_virt and gen_pool_virt_to_phys

Uio_pruss should probably take the SRAM pool pointer via
platform data so that it doesn't have to include Davinci specific
includes.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Cc: Kevin Hilman <khilman@ti.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Sascha Hauer <kernel@pengutronix.de>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoAM335X: Avoid i2c pin mux setup.
Patil, Rachna [Wed, 28 Sep 2011 11:01:50 +0000 (16:31 +0530)]
AM335X: Avoid i2c pin mux setup.

Since i2c1 is available only in some profiles, we bypass i2c pin
muxing in i2c.c file. Pin muxing is taken care of, in the board file
instead.

Signed-off-by: Patil, Rachna <rachna@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am33xx: ADD support for i2c-1 instance
Hebbar, Gururaja [Mon, 26 Sep 2011 09:44:07 +0000 (15:14 +0530)]
arm:omap:am33xx: ADD support for i2c-1 instance

i2c-1 bus is available on few EVM variants of AM335X. Provide support
for the same (Pin-mux, board-info, device registration)

Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarch:arm:nand - Changing SPL and U-boot partition permission
Philip, Avinash [Fri, 18 Nov 2011 09:18:39 +0000 (14:48 +0530)]
arch:arm:nand - Changing SPL and U-boot partition permission

SPL and U-boot partition provided with write permission in order to
update SPL and U-boot from kernel.

Signed-off-by: Philip, Avinash <avinashphilip@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarch:arm:nand - 14 byte ECC support for BCH8
Philip, Avinash [Thu, 17 Nov 2011 14:43:56 +0000 (20:13 +0530)]
arch:arm:nand - 14 byte ECC support for BCH8

14 bytes of ECC is provided for every 512 byte even though 13 byte is the
actual requirement. This is to synchronize the ECC layout with U-boot.
Extra byte is cleared to 0.

Signed-off-by: Philip, Avinash <avinashphilip@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:nand - Enable BCH8 support
Philip, Avinash [Wed, 2 Nov 2011 09:22:50 +0000 (14:52 +0530)]
arm:omap:nand - Enable BCH8 support

1. BCH8 ECC support is enabled.
2. Support for BCH8 error correction using ELM module is added.
3. ECC positions updated for BCH8 in synchronized with U-boot.
4. Corrected GPMC settings for BCH8 ECC scheme.

Signed-off-by: Philip, Avinash <avinashphilip@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarm:omap:am335x - Disabled JFFS2 filesystem support
Philip, Avinash [Tue, 6 Dec 2011 07:18:49 +0000 (12:48 +0530)]
arm:omap:am335x - Disabled JFFS2 filesystem support

JFFS2 requires 8 byte in OOB area for clean markers leaving 56 bytes for
ECC. However with BCH8 support requires 58 bytes for ECC which leaves 6
bytes. This causes JFSS2 to fail.

This patch removes JFFS2 Support. Instead UBIFS will be used in NAND
flash device.

Signed-off-by: Philip, Avinash <avinashphilip@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
12 years agoarch:arm:nand - ELM Module is added
Philip, Avinash [Wed, 30 Nov 2011 11:59:58 +0000 (17:29 +0530)]
arch:arm:nand - ELM Module is added

Module support for ELM is added.

Signed-off-by: Philip, Avinash <avinashphilip@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>