summaryrefslogtreecommitdiff
path: root/drivers
AgeCommit message (Collapse)Author
2014-08-21rtc: snvs: force enable wake alarmStefan Agner
On Vybrid, the machine/architecture specific code seems not to enable wakeup for devices, hence force RTC as wakeup source in the driver.
2014-08-12i2c: imx: add SMBus block read supportKaushal Butala
The smbus block read is not currently supported for imx i2c devices. This patchset adds the support to imx i2c bus so that blocks of data can be read using SMbus block reads.(using i2c_smbus_read_block_data() function from the i2c_core.c.). Tested with 3.10.9 kernel. Reviewed-by: Shawn Guo <shawn.guo@freescale.com> Signed-off-by: Kaushal Butala <kaushalkernelmailinglist@gmail.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de> Signed-off-by: Stefan Agner <stefan.agner@toradex.com> [backported to Toradex 3.0 branch from 8e8782c71595a5ad29e234ce6b3d2fce787fb07a]
2014-08-12i2c: imx: assign semaphore before adding I2C adapterBhuvanchandra DV
Adding the i2c_add_numbered_adapter might already lead to calls of i2c_imx_xfer, which requires the semaphore to be assigned. Hence we should assign the semaphore before add the I2C adapter. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
2014-08-12i2c: imx: don't disable clock between transfersBhuvanchandra DV
Don't disable I2C clock between each transfers. Instead, disable the module internally between the transfers. This also fixes SMBus multi-block transfers. Signed-off-by: Stefan Agner <stefan.agner@toradex.com> [Removed uncommented clk_enable/disable calls]
2014-07-29can: flexcan: flexcan_chip_start: fix regression, mark one MB for TX and ↵Colibri_VF_LinuxImageV2.3Beta1_20140804Marc Kleine-Budde
abort pending TX In patch 0d1862e can: flexcan: fix flexcan_chip_start() on imx6 the loop in flexcan_chip_start() that iterates over all mailboxes after the soft reset of the CAN core was removed. This loop put all mailboxes (even the ones marked as reserved 1...7) into EMPTY/INACTIVE mode. On mailboxes 8...63, this aborts any pending TX messages. After a cold boot there is random garbage in the mailboxes, which leads to spontaneous transmit of CAN frames during first activation. Further if the interface was disabled with a pending message (usually due to an error condition on the CAN bus), this message is retransmitted after enabling the interface again. This patch fixes the regression by: 1) Limiting the maximum number of used mailboxes to 8, 0...7 are used by the RX FIFO, 8 is used by TX. 2) Marking the TX mailbox as EMPTY/INACTIVE, so that any pending TX of that mailbox is aborted. Cc: linux-stable <stable@vger.kernel.org> Cc: Lothar Waßmann <LW@KARO-electronics.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> [backported for 3.0 kernel by Stefan Agner <stefan.agner@toradex.com>] d5a7b406c529e4595ce03dc8f6dcf7fa36f106fa can: flexcan: flexcan_chip_start: fix regression, mark one MB for TX and abort pending TX
2014-07-24colibri-vf50-ts: add min_pressure parameterStefan Agner
Add parameter to define the minimal pressure required to be interpreted as a touch event. Also filter out unusual high pressure since this means there is no touch screen connected.
2014-07-11Merge tag '3.0-vybrid-ts2.17' into colibri_vf_nextStefan Agner
3.0-vybrid-ts2.17 Conflicts: arch/arm/plat-mxc/include/mach/iomux-mvf.h
2014-07-11can: flexcan: add Vybrid supportStefan Agner
Extend FlexCAN driver to support Vybrid. Vybrids variant of the IP has ECC support which is controlled through the memory error control register (MECR). There is also an errata which leads to false positive error detections (ID e5295). This patch disables the memory error detection completely. Extend the clock control for FlexCAN to enable the clocks. Fix the base addresses and introduce the necessary pinmux defines.
2014-07-11can: flexcan: dynamically sleep for chip_{en,dis}ableStefan Agner
In flexcan_chip_enable() and flexcan_chip_disable() fixed delays are used. Experiments have shown that the transition from and to low power mode may take several microseconds. This patch adds a while loop which polls the Low Power Mode ACK bit (LPM_ACK) that indicates a successfull mode change. If the function runs into a timeout a error value is returned. This is a simpliefied backport of can: flexcan: fix transition from and to low power mode in chip_{en,dis}able 9b00b300e7bce032c467c36ca47fe2a776887fc2
2014-06-20can: flexcan: Fix CAN_RAW_RECV_OWN_MSGS and CAN_RAW_LOOPBACKReuben Dowle
Currently the flexcan driver uses hardware local echo. This blindly echos all transmitted frames to all receiving sockets, regardless what CAN_RAW_RECV_OWN_MSGS and CAN_RAW_LOOPBACK are set to. This patch now submits transmitted frames to be echoed in the transmit complete interrupt, preserving the reference to the sending socket. This allows the can protocol to correctly handle the local echo. Further this patch moves tx_bytes statistic accounting into the tx_complete handler. Signed-off-by: Reuben Dowle <reuben.dowle@navico.com> [mkl: move tx_bytes accounting into tx_complete handler; cleanups] Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
2014-06-20can: dev: let can_get_echo_skb() return dlc of CAN frameMarc Kleine-Budde
can_get_echo_skb() is usually called in the TX complete handler. The stats->tx_packets and stats->tx_bytes should be updated there, too. This patch simplifies to figure out the size of the sent CAN frame. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
2014-06-17ENGR00217318-3 flexcan: only enter stop mode when device is upDong Aisheng
The flexcan is still in disable mode during suspend if it's still not up. We do not need to enter stop mode if find the device is not up since the stop mode does not work well in disable mode(remote wakeup does not work). Using disable mode for suspend if it's not up. Signed-off-by: Dong Aisheng <b29396@freescale.com>
2014-06-17ENGR00217318-2 flexcan: create abstract api to enter and exit stop modeDong Aisheng
Clean up duplicated code and hide the details of enter/exit stop mode into API. Signed-off-by: Dong Aisheng <b29396@freescale.com>
2014-06-17ENGR00217318-1 flexcan: exit stop mode when resumeDong Aisheng
Currently flexcan only exits stop mode by remote wakeup, if system resumes normally, the flexcan may still in stop mode and can not work anymore. Change to also exit stop mode during normal resume in case system is not remote wakeup by flexcan. Signed-off-by: Dong Aisheng <b29396@freescale.com>
2014-06-17ENGR00171114 flexcan: enable can2 remote wakeup for mx6qDong Aisheng
The root cause is missed to set CAN2_STOP_REQ in iomuxc group register which is used to support can wakeup feature. Signed-off-by: Dong Aisheng <b29396@freescale.com>
2014-05-29serial/mvf.c: Fix DMA channel deallocation.Gordon Smith
Signed-off-by: Anthony Felice <tony.felice@timesys.com>
2014-05-15Merge tag '3.0-vybrid-ts2.16' into colibri_vfColibri_VF_LinuxImageV2.2Beta1_20140603Marcel Ziswiler
3.0-vybrid-ts2.16 Conflicts: drivers/tty/serial/mvf.c
2014-05-15fsl_nfc: rename device to fsl_nfcStefan Agner
Use the more common name "fsl_nfc" instead of "NAND" for this device. This also affects the mtdparts option of the kernel command line.
2014-05-15fsl_nfc: add chip selectStefan Agner
Add correct chip select handling. This is required when using mainline U-Boot since chip select is properly done there as well.
2014-05-15fsl_nfc: check hardware ECC resultStefan Agner
Hardware ECC was enabled, however the result of the ECC check was actually ignored. This patch checks the result and acts accordingly. Also, enable ECC hardware for every page (which is required for UBIFS, this might be a relict of JFFS2 support). The driver passes the mtd_pagetest. Bits an pieces taken from the RFC mainline driver from Bill Pringlemeir.
2014-05-15colibri-vf50-ts: GPIOs from pdata/support VF50 V1.1 and newerStefan Agner
In order to properly support VF50 V1.1 and older modules we need to move the GPIOs to platform data. This is anyway the cleaner and easier maintainable solution. Also raise pressure threshold to a reasonable level for our resistive touchscreens.
2014-05-15colibri_vf: add support for second EthernetStefan Agner
Add alternative pinmux and platform data for second Ethernet. Also make sure MAC address is calculated from first Ethernet MAC address, which is derived from part serial number. Note that FEC1 is the default Ethernet controller (and hence eth0), while FEC0 is the additional Ethernet controller (eth1).
2014-05-15serial: mvf: don't use work queue to receive dataStefan Agner
In low latency mode, tty_flip_buffer_push should be called from interrupt context. However, because flush_to_ldisc is not safe to call from interrupt, the user get a kernel message "BUG: scheduling while atomic". This is actually a kernel bug, which essentially breaks low latency. Using a work queue works around this, however, it also makes the low latency mode useless. In non-low latency mode, the tty code uses a work queue too. So, don't use our own work queue to work around a kernel bug. Instead rely on work queue implementation in the tty code, disable the UPF_LOW_LATENCY feature and hope the low latency bug itself gets fixed eventually. This is also the way the proposed upstream driver works.
2014-05-15serial: mvf: clear pending data before alter FIFOStefan Agner
When data are pending and altering FIFO size and flushing FIFO, we end up having the UARTSR1_RDRF (receive data register full) bit set while UARTSFIFO_RXEMPT (FIFO empty) is set too. We check the second flag in the interrupt routine, which is set, and hence don't read the data register. This leads to an interrupt storm, which never gets handled properly. However, we can not check the UARTSR1_RDRF flag in the interrupt routine, since reading data in this case would misalign the FIFO buffer. Hence we should make sure there are no data before dealing with the FIFO. This fixes a race condition during bootup: when a character was sent between imx_console_setup and imx_startup, the kernel got stuck in a interrupt storm. Another character usually fixed that storm.
2014-04-03mvf: Allow DMA channel 0 to be used in imx_shutdown in the serial driver.3.0-vybrid-ts2.15Anthony Felice
2014-03-27Fixed a panic seen as soon as you type a character on the terminal when EDMA ↵Roshni Shah
is disabled in UART config. The receive interrupt was attempting to schedule a work queue only defined if EDMA is enabled. kernel BUG at kernel/workqueue.c:1037! Unable to handle kernel NULL pointer dereference at virtual address 00000000
2014-03-18Merge tag '3.0-vybrid-ts2.13' into colibri_vfColibri_VF_LinuxImageV2.1Beta3_20140318Stefan Agner
3.0-vybrid-ts2.13
2014-03-13dspi: fix dma for SPI1Stefan Agner
Fix registers and channels for SPI1, however using SPI with DMA still doesn't work (dspi_interrupt doesn't fire).
2014-03-13dspi: use parent clock for clock calculationStefan Agner
Use the supplied parent clock for SPI clock calculation. This results in correct clock calculation for 396MHz/500MHz Vybrid SoCs. Also fix an calculation issue: Another division by 2 is not required, the prescaler is taken into account already.
2014-03-12dspi: define mode_bitsStefan Agner
Define drivers supported mode using mode_bits. This fixes warnings which claim that hardware don't support modes which actually are supported, e.g. [ 64.586777] spidev spi1.0: setup: unsupported mode bits 3
2014-03-06phy/micrel: Add suspend/resume support to Micrel PHYsStefan Agner
All supported Micrel PHYs implement the standard "power down" bit 11 of BMCR, so this patch adds support using the generic genphy_{suspend,resume} functions. Backported patch by Patrice Vilchez, see 1a5465f5d6a23e84ef5c06cb32f3d8c26632f42a
2014-03-04mvf_dcu: polarity parametersStefan Agner
Add boot time parameters for pixelclock, hsync and vsync polarity. The parameters are aligned with pxafb and tegrafb, e.g. video=dcufb:pixclockpol:1,800x480@60
2014-02-17serial: mvf: enable FIFO even when using serial consoleStefan Agner
Enable FIFO unconditionally, even when CONFIG_SERIAL_CORE_CONSOLE is turned on. Serial consoles get enabled anyway, but this compile time switch lead to disabling FIFO for all serial ports. Not using FIFO when using a serial port might lead to missing characters quite easily.
2014-02-04serial: mvf: fix NULL pointer dereference in rx_workStefan Agner
When a process is closed while work is pending, the receiving tty might be closed when the work is actually scheduled. This leads to a kernel NULL pointer dereference. Check if tty is still there before submitting new data. Unable to handle kernel NULL pointer dereference at virtual address 000000bc pgd = c0004000 [000000bc] *pgd=00000000 Internal error: Oops: 17 [#1] PREEMPT Modules linked in: CPU: 0 Not tainted (3.0.15-00021-gc52df36 #198) PC is at tty_flip_buffer_push+0x28/0x84 LR is at rx_work+0x20/0x2c pc : [<c025a380>] lr : [<c026ba9c>] psr: 200f0093 sp : ca015f78 ip : 00000001 fp : 00000000 r10: 00000000 r9 : c026ba7c r8 : 00000000 r7 : cfff0a00 r6 : c067d2ec r5 : cfebc31c r4 : 00000000 r3 : ca014000 r2 : 200f0013 r1 : 00000001 r0 : 00000000 Flags: nzCv IRQs off FIQs on Mode SVC_32 ISA ARM Segment kernel Control: 10c53c7d Table: 8a19c059 DAC: 00000015 Process kworker/0:0 (pid: 558, stack limit = 0xca0142e8) Stack: (0xca015f78 to 0xca016000) 5f60: cfebc31c c026ba9c 5f80: cf83ce80 c005dff4 cfff0a05 cf83ce80 ca014000 c067d2ec c06d804c cf83ce90 5fa0: 00000009 c067d2ec 00000000 c005e35c ca197f3c cf83ce80 c005e188 00000013 5fc0: 00000000 00000000 00000000 c0062d08 00000000 00000000 cf83ce80 00000000 5fe0: ca015fe0 ca015fe0 ca197f3c c0062c8c c00350e8 c00350e8 00000000 00000000 [<c025a380>] (tty_flip_buffer_push+0x28/0x84) from [<c026ba9c>] (rx_work+0x20/0x2c) [<c026ba9c>] (rx_work+0x20/0x2c) from [<c005dff4>] (process_one_work+0x1f4/0x35c) [<c005dff4>] (process_one_work+0x1f4/0x35c) from [<c005e35c>] (worker_thread+0x1d4/0x314) [<c005e35c>] (worker_thread+0x1d4/0x314) from [<c0062d08>] (kthread+0x7c/0x88) [<c0062d08>] (kthread+0x7c/0x88) from [<c00350e8>] (kernel_thread_exit+0x0/0x8) Code: e3c3303f e5931004 e2811001 e5831004 (e59030bc) ---[ end trace d9cc3df0e23f6c96 ]---
2014-02-04Merge tag '3.0-vybrid-ts2.10' into vybrid-latest-mergeStefan Agner
3.0-vybrid-ts2.10 Conflicts: arch/arm/mach-mvf/clock.c
2014-01-27input: touchscreen: fusion: fix error handlingStefan Agner
Fix chip reset by sleeping long enought after reset. Do proper error handling (free GPIO on failure). Use dev_* for message logging to get similar messages for all fusion driver related errors and warnings.
2014-01-27input: touchscreen: fusion: use new I2C PM functionsStefan Agner
To avoid warnings use the new I2C power management function for suspend and resume.
2014-01-27input: touchscreen: added platform data for Fusion touchscreenStefan Agner
Added platform data struct to define interrupt and reset GPIO. This allows to initialize the touchscreen controller inside the driver rather then in each platform and use the driver as a module.
2014-01-23input: touchscreen: fix race condition in Fusion driverStefan Agner
When the next interrupt request apeares between the confirmation of the previous (a write via I2C, fusion_F0710A_write_complete) and the reenable of the GPIO interrupt, the driver hangs and no more touch inputs are reported. This patch moves the confirmation after the reenabling of the GPIO interrupt.
2014-01-23input: touchscreen: add ABS_X/ABS_Y axis for Fusion touchscreenStefan Agner
Recent evdev X-Server input driver implementation complain when only multitouch axes have been reported ("found only multitouch-axes. That shouldn't happen."). Therefor also report the primary touch detection with default axis.
2014-01-23input: touchscreen: add Fusion 7 and 10 multi-touch driverMarcel Ziswiler
This patch adds the multi-touch input driver for the TouchRevolution Fusion 7 and 10 panels (See Fusion 7 and 10 drivers for Linux.pdf and Linux Drivers Fusion 10.zip). Conflicts: drivers/input/touchscreen/Makefile
2014-01-22mvf_dcu: use modedb to set video modeStefan Agner
Use modedb helper function to get video mode from kernel cmd line. Video mode can now be choosen at boot time using video=dcufb:...
2014-01-22mvf_dcu: calculate clock ratio from pixclockStefan Agner
In order to support different video modes the driver needs to calculate the DCU div ratio from the pixelclock. Taken from mainline framebuffer proposal by Alison Wang.
2014-01-16usb: core: fix two problems for unsupported devices3.0-vybrid-ts2.12Peter Chen
- NULL pointer after removing unsupported devices - only print "hub 2-0:1.0: port 1 nyet suspended" for device who has enumerated successfully Signed-off-by: Peter Chen <peter.chen@freescale.com>
2014-01-16usb: certification: several fixesPeter Chen
- change PHY TX/RX parameters accoording to Richard's email - Disable OTG descripor - Add Freescale VID/PID Signed-off-by: Peter Chen <peter.chen@freescale.com>
2014-01-16usb: misc: introduce OTG & EH Test DriverFelipe Balbi
This patch introduces support for test modes as defined by the USB OTG & Embedded host Specification. Note that we _must_ be able to suspend & resume ports as we wish, so this driver depends on USB_SUSPEND and makes use (well, somewhat abuses) usb autopm features to achieve what we want. Signed-off-by: Felipe Balbi <balbi@ti.com>
2014-01-16ENGR00241582 MX6 USB host: USB host certification patchmake shi
The patch include: - USB test mode on hub port and Root-hub port - support 3 types of message: too much hub ties for hub attachment too much power consumption for device attachment unsupported device class warning - support menuconfig select the FSL_USB_TEST_MODE, located in: -> Device Drivers -> USB support (USB_SUPPORT [=y]) -> FSL High-speed Electrical Test Mode support Signed-off-by: make shi <b15407@freescale.com>
2014-01-02mtd: m25p80: set writebufsizeBrian Norris
Using UBI on m25p80 can give messages like: UBI error: io_init: bad write buffer size 0 for 1 min. I/O unit We need to initialize writebufsize; I think "page_size" is the correct "bufsize", although I'm not sure. Comments? Signed-off-by: Brian Norris <computersforpeace@gmail.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Cc: stable@kernel.org [2.6.38+] Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
2013-12-16Only allow i2c driver to assign mvf_sema4 once.Anthony Felice
Multiple assignments should not occur and will cause a hang if they do.
2013-11-29colibri_vf: fix pixel clock polarityColibri_VF_LinuxImageV2.1Beta2_20131129Marcel Ziswiler
Fix pixel clock polarity.