summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-06ENGR00255484-3 msl: usb: add clock deinit at fail pathrel_imx_3.0.35_2.1.0Peter Chen
If not, the clocks usage will be mismatch Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-05-06ENGR00255484-2 usb: ehci-arc: add NULL pointer check for pdata->pdevPeter Chen
The pdata->pdev is initialized at platform code, if init fails at first, it will be not initialized, and platform exit will not be called. This also fixes an oop when config usb module wrongly: Unable to handle kernel NULL pointer dereference at virtual address 0000005c pgd = ba1c4000 [0000005c] *pgd=4a145831, *pte=00000000, *ppte=00000000 Internal error: Oops: 17 [#1] PREEMPT SMP Modules linked in: ehci_hcd(+) usbcore CPU: 1 Not tainted (3.0.35-02451-ge361da1 #60) PC is at fsl_usb_host_uninit_ext+0xc/0x28 LR is at usb_hcd_fsl_probe+0x2c8/0x44c [ehci_hcd] pc : [<80062b58>] lr : [<7f060934>] psr: a0000013 sp : ba11be80 ip : 00005027 fp : 000a76e0 r10: 00000048 r9 : ba11a000 r8 : bfd4d608 r7 : ffffffed r6 : bfd4d600 r5 : bfc84400 r4 : 80aaee48 r3 : 80062b4c r2 : 00000000 r1 : 60000093 r0 : 00000000 Flags: NzCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment user Control: 10c53c7d Table: 4a1c404a DAC: 00000015 Process modprobe (pid: 1555, stack limit = 0xba11a2f0) Stack: (0xba11be80 to 0xba11c000) be80: bfd97600 7f060934 00000000 00000000 bfd4d608 bfd4d608 80aca808 bfd4d63c bea0: 7f062bd4 80041704 ba11a000 00000000 000a76e0 802a5cec bfd4d608 802a4a14 bec0: bfd4d608 7f062bd4 bfd4d63c 00000000 80041704 802a4bac 7f062bd4 ba11bee8 bee0: 802a4b20 802a4254 bffd4040 bff03f38 7f065000 7f062bd4 80a934c8 bfc8cd20 bf00: 00000000 802a3be0 7f062b1c 7f062bd4 00000000 7f017ec8 7f062bd4 00000000 bf20: 7f065000 80041704 00000000 802a51a0 7f017ec8 80aae500 00000000 7f065000 bf40: 80041704 7f065058 000a79e8 8003b4c4 00000000 00000000 00000000 80a14834 bf60: 000a79e8 000a79e8 7f062c20 00000000 0000e67b 80041704 ba11a000 00000000 bf80: 000a76e0 800aa428 ba076740 800f58dc 000a79e8 0000e67b 00000000 000a75d0 bfa0: 00000080 80041580 0000e67b 00000000 000a79e8 0000e67b 000a75d0 000a76e0 bfc0: 0000e67b 00000000 000a75d0 00000080 000a6a78 00000008 000a76a0 000a76e0 bfe0: 7ec7ab50 7ec7ab40 0001a32c 2ace6490 20000010 000a79e8 4fffe821 4fffec21 [<80062b58>] (fsl_usb_host_uninit_ext+0xc/0x28) from [<7f060934>] (usb_hcd_fsl_probe+0x2c8/0x44c [ehci_hcd]) [<7f060934>] (usb_hcd_fsl_probe+0x2c8/0x44c [ehci_hcd]) from [<802a5cec>] (platform_drv_probe+0x18/0x1c) [<802a5cec>] (platform_drv_probe+0x18/0x1c) from [<802a4a14>] (driver_probe_device+0x98/0x1a4) [<802a4a14>] (driver_probe_device+0x98/0x1a4) from [<802a4bac>] (__driver_attach+0x8c/0x90) [<802a4bac>] (__driver_attach+0x8c/0x90) from [<802a4254>] (bus_for_each_dev+0x60/0x8c) [<802a4254>] (bus_for_each_dev+0x60/0x8c) from [<802a3be0>] (bus_add_driver+0x184/0x25c) [<802a3be0>] (bus_add_driver+0x184/0x25c) from [<802a51a0>] (driver_register+0x78/0x13c) [<802a51a0>] (driver_register+0x78/0x13c) from [<7f065058>] (ehci_hcd_init+0x58/0x88 [ehci_hcd]) [<7f065058>] (ehci_hcd_init+0x58/0x88 [ehci_hcd]) from [<8003b4c4>] (do_one_initcall+0x30/0x16c) [<8003b4c4>] (do_one_initcall+0x30/0x16c) from [<800aa428>] (sys_init_module+0x84/0x19c) [<800aa428>] (sys_init_module+0x84/0x19c) from [<80041580>] (ret_fast_syscall+0x0/0x30) Code: 80aaee48 e92d4010 e30e4e48 e34840aa (e590005c) ---[ end trace 719afdfe4af3a442 ]--- Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-05-06ENGR00255484-1 msl: usb: add NULL poiner check for fsl_xcvr_opsPeter Chen
Add NULL pointer check for global fsl_xcvr_ops Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-05-04ENGR00261276 mx6sl: Fix build warningRobby Cai
Fix the following build warning: arch/arm/mach-mx6/board-mx6sl_evk.c: In function 'mxc_wm8962_init': arch/arm/mach-mx6/board-mx6sl_evk.c:529:14: warning: unused variable 'pll4' [-Wunused-variable] Signed-off-by: Robby Cai <R63905@freescale.com>
2013-05-04ENGR00261060 mx6sl evk: make two BT modules configurable dynamicallyRobby Cai
In current implementation, the SXSDMAN BT module (on UART3) is enabled by default. This is done by hard-coded in board file, which means if we need enable the other BT module AR3001 (on UART1), we need to modify the codes and recompile the kernel. This is not good. In this patch, we enhance it by passing parameters via cmdline. Signed-off-by: Robby Cai <R63905@freescale.com>
2013-05-03ENGR00261037-2: usb: fix the bug that mark lowpower flag wronglyPeter Chen
At default, we mark lowpower as true. After PHY initialization finishes, it should mark lowpower as false. Besides, at error patch, we need to mark lowpower as true. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-05-03ENGR00261037-1: usb: usb host works abnormal after unload gadget modulePeter Chen
If there is usb device on the OTG port when controller works at host mode, and at this time, we unload gadget module, the usbcmd.rs will be cleared, it is unexpected behavior. When the controller works at one mode(eg, host mode), the register should not be written by other mode driver (eg, devcie driver). The OTG driver does not consider this situation, and current i.mx FSL OTG driver does not support fully OTG function, so we remove the caller at fsl_otg_set_peripheral which will touch controller register. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-05-02ENGR00258651 thermal: update equation for i.MX6slAnson Huang
New thermal equation is working for all i.MX6 series SOCs, so update it for i.MX6SL as well. Signed-off-by: Anson Huang <b20788@freescale.com>
2013-05-02ENGR00256543 mx6: Update equation for thermal sensor on i.MX6DLAnson Huang
Use universal equation and 25C's calibration data to get thermal sensor's ratio on i.MX6DL. Signed-off-by: Anson Huang <b20788@freescale.com>
2013-05-02ENGR00255481 mx6: Update equation for thermal sensorAnson Huang
Use universal equation and 25C's calibration data to get thermal sensor's ratio. If want to use old calibration method, please add "use_calibration" into kernel command line. Signed-off-by: Anson Huang <b20788@freescale.com>
2013-04-24ENGR00260082 mx6sl_evk: Change wm8962's MCLK to 24MHzNicolin Chen
The clock, output from wm8962's FLL, is sometimes inaccurate. This's because 26MHz is not quite stable for wm8962's internal FLL, So change to 24MHz, the value recommended by Wolfson, which has been used on SabreSD for quite a long time. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com> (cherry picked from commit ff8d1e71b22575cd3cd598045a34bb072ef560a2)
2013-04-24ENGR00258491-4 msl-mx6: usb: fix clock unmatch problem after unload modulePeter Chen
Move clock disable from MSL to driver Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-24ENGR00258491-3 usb: fix clock unmatch problem after unload modulePeter Chen
Move clock disable from MSL to driver Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-24ENGR00258491-2 msl-mx6: usb: put PHY to be out of low power explicitlyPeter Chen
We have wrong understanding that reset controller will put PHY to be out of low power automatically, but in fact, it is not. So, we should put PHY to be out of low power explicitly if the portsc.phcd = 1 before we need to access controller's register. Some register writing will hang system (eg,PERIODICLISTBASE), some reading will not get the correct value (eg, otgsc). Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-24ENGR00258491-1 usb: host: fix error at unload module pathPeter Chen
- When take the PHY out of low power mode, it needs to call PHY's API, only set controller register is not enough for some platforms - usb_put_hcd will free hcd, all hcd related operation should be prior to it. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-17ENGR00259189 thermal:mx6: Make sure thermal alarm working safelyAnson Huang
The thermal sensor's value will be updated even it is power down, as thermal sensor's clock source is from PLL3, so there is chance that PLL3 is disabled before thermal driver is probed during kernel boot up, so the value in thermal sensor can be incorrect in this PLL3 disabled window. Previous flow of thermal driver probe routine will enable PLL3 clock, then set the thermal alarm value and enable the alarm irq, there is no delay or check about the thermal sensor's value, only when the thermal sensor's value is correct, its alarm function can be enabled. As adding delay in the probe routine is not a good option, so we move the enabling of thermal alarm function into the get temperature routine, as after the thermal value is read, the alarm function is safe enough, as the thermal sensor will be always working right after a read if its clock is enabled. Signed-off-by: Anson Huang <b20788@freescale.com>
2013-04-11ENGR00255733 MX6SL: Enable DISPLAY power gating only on TO1.2Robby Cai
Add chip revision checking and only enable DISPLAY power gating on TO1.2 Signed-off-by: Robby Cai <R63905@freescale.com>
2013-04-11ENGR00257130-7 usb: host: Disable wakeup when switch PHY from off to onPeter Chen
Disable wakeup interrupt, since there is wakeup when phcd from 1->0 if wakeup interrupt is enabled. The unexpected wakeup can be disappeared using this fix. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-11ENGR00257130-6 mx6-msl: usb: Add 500us delay for phy stable timePeter Chen
The PHY needs 500us time to be stable when its clock from off to on. If there is wakeup enable before the PHY is stable, there will be an unexpected wakeup. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-11ENGR00257130-5 mx6sl: Add config for USB ID as system wakeup sourcePeter Chen
Since USB ID pin may affect power savings, we add enable/disable USB ID pin as system wakeup source using Kconfig option, the user can determine it. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-11ENGR00257130-4 mx6sl: different layout for stop_mode_configPeter Chen
The mx6sl has different register layout for STOP_MODE_CONFIG bit at CCM_ANALOG_MISC0. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-11ENGR00257130-3 usb: host: open the PHY when changing wakeup settingPeter Chen
- Disable irq when we change wakeup setting as there is unexpected interrupt when we power PHY but enables wakeup. - Power PHY when we need to change wakeup setting, as some wakeup settings at PHY domain. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-11ENGR00257130-2 msl: usb: Disable auto power PHY if usb wakeup disabledPeter Chen
- We need to disable auto power PHY if there is a wakeup at USB port, but usb as wakeup source is disabled, otherwise, there will be unexpected interrupt when the software thinks the controller is still at low power mode. - Rework usbh1_wakeup_event_clear. The old design was incorrect, align it with usb_dr.c. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-11ENGR00257130-1 mx6sl_evk: Add Host 1 vbus callbackPeter Chen
- Make vbus is off default, and let the driver opens it. - Add host 1 vbus callback, in that case, the driver can control it. Signed-off-by: Peter Chen <peter.chen@freescale.com>
2013-04-10ENGR00257244 Fixed endless collisions in EPDCJay Monkman
Fixed reversed conditional, causing endless collions in some situations. Signed-off-by: Jay Monkman <jay.monkman@freescale.com> (cherry picked from commit 939f49daf76997e870e20880a0d9e6835d813b74)
2013-03-22ENGR00255491 ov5640: Fix build break by make modulesRobby Cai
Fix the kernel modules building error for mx6q/mx6dl as follows: LD [M] drivers/usb/gadget/g_serial.o Building modules, stage 2. MODPOST 48 modules ERROR: "csi_enable_mclk" [drivers/media/video/mxc/capture/ov5640_camera.ko] undefined! make[1]: *** [__modpost] Error 1 make: *** [modules] Error 2 Signed-off-by: Robby Cai <R63905@freescale.com>
2013-03-21ENGR00252064-3 camera: ov5640: fix missed setting for light_frequencyRobby Cai
Confirmed from OV, the missed setting for light_frequency need to be added. Signed-off-by: Robby Cai <R63905@freescale.com> (cherry picked from commit 3c4d081940ec00fecd87a55721e14116dc01e481)
2013-03-21ENGR00252064-2 mx6sl: ov5640: need enable MCLK before read sensor IDRobby Cai
After the patch of auto-detection for sensor pushed, there's a need to read sensor ID in probe function. But on MX6SL, MCLK is not enabled at that time. So need to enable it before read sensor ID. Signed-off-by: Robby Cai <R63905@freescale.com> (cherry picked from commit 78ad8b6f9d18cf5595cb532b7e08804aff158815)
2013-03-21ENGR00252064-1 csi/v4l: need power on sensor for its initializationRobby Cai
Need power on the sensor for its initialization, otherwise the sensor can not work properly. Signed-off-by: Sheng Nan <b38800@freescale.com> Signed-off-by: Robby Cai <R63905@freescale.com> (cherry picked from commit 24ef6f52c717b9f2288d1c66ec6efd284935e23e)
2013-03-21ENGR00253947 EPDC: fix reboot failureRobby Cai
This patch is to 1) add clock enablement before access EPDC registers, otherwise system may hang. And, 2) fix unbalanced disablement for PMIC regulators ------------[ cut here ]------------ WARNING: at drivers/regulator/core.c:1422 _regulator_disable+0xf8/0x12c() unbalanced disables for VCOM Modules linked in: [<80040518>] (unwind_backtrace+0x0/0xf8) from [<800671d8>] (warn_slowpath_common +0x4c/0x64) [<800671d8>] (warn_slowpath_common+0x4c/0x64) from [<80067284>] (warn_slowpath_fmt+0x30/0x40) [<80067284>] (warn_slowpath_fmt+0x30/0x40) from [<8024ef60>] (_regulator_disable+0xf8/0x12c) [<8024ef60>] (_regulator_disable+0xf8/0x12c) from [<8024efc4>] (regulator_disable+0x30/0x70) [<8024efc4>] (regulator_disable+0x30/0x70) from [<80241044>] (mxc_epdc_fb_shutdown+0x18/0x84) [<80241044>] (mxc_epdc_fb_shutdown+0x18/0x84) from [<80277f64>] (platform_drv_shutdown+0x18/0x1c) [<80277f64>] (platform_drv_shutdown+0x18/0x1c) from [<802751d0>] (device_shutdown+0xac/0x124) [<802751d0>] (device_shutdown+0xac/0x124) from [<8007812c>] (kernel_restart_prepare+0x30/0x38) [<8007812c>] (kernel_restart_prepare+0x30/0x38) from [<80078140>] (kernel_restart+0xc/0x48) [<80078140>] (kernel_restart+0xc/0x48) from [<80078290>] (sys_reboot+0x10c/0x1c4) [<80078290>] (sys_reboot+0x10c/0x1c4) from [<8003ad40>] (ret_fast_syscall+0x0/0x30) ---[ end trace e392f5dd2f75e1a5 ]--- ------------[ cut here ]------------ WARNING: at drivers/regulator/core.c:1422 _regulator_disable+0xf8/0x12c() unbalanced disables for DISPLAY Modules linked in: [<80040518>] (unwind_backtrace+0x0/0xf8) from [<800671d8>] (warn_slowpath_common+0x4c/0x64) [<800671d8>] (warn_slowpath_common+0x4c/0x64) from [<80067284>] (warn_slowpath_fmt+0x30/0x40) [<80067284>] (warn_slowpath_fmt+0x30/0x40) from [<8024ef60>] (_regulator_disable+0xf8/0x12c) [<8024ef60>] (_regulator_disable+0xf8/0x12c) from [<8024efc4>] (regulator_disable+0x30/0x70) [<8024efc4>] (regulator_disable+0x30/0x70) from [<8024104c>] (mxc_epdc_fb_shutdown+0x20/0x84) [<8024104c>] (mxc_epdc_fb_shutdown+0x20/0x84) from [<80277f64>] (platform_drv_shutdown+0x18/0x1c) [<80277f64>] (platform_drv_shutdown+0x18/0x1c) from [<802751d0>] (device_shutdown+0xac/0x124) [<802751d0>] (device_shutdown+0xac/0x124) from [<8007812c>] (kernel_restart_prepare+0x30/0x38) [<8007812c>] (kernel_restart_prepare+0x30/0x38) from [<80078140>] (kernel_restart+0xc/0x48) [<80078140>] (kernel_restart+0xc/0x48) from [<80078290>] (sys_reboot+0x10c/0x1c4) [<80078290>] (sys_reboot+0x10c/0x1c4) from [<8003ad40>] (ret_fast_syscall+0x0/0x30) ---[ end trace e392f5dd2f75e1a6 ]--- Signed-off-by: Robby Cai <R63905@freescale.com> (cherry picked from commit bda715c9defa98cfcdcdf8784717500a42e5b7af)
2013-03-21ENGR00253849 EPDC: fix build warnings in epdc fb driverRobby Cai
This patch is to fix the following warnings: drivers/video/mxc/mxc_epdc_fb.c:5062:2: warning: initialization from incompatible pointer type [enabled by default] drivers/video/mxc/mxc_epdc_fb.c:5062:2: warning: (near initialization for 'mxc_epdc_fb_driver.shutdown') [enabled by default] Signed-off-by: Robby Cai <R63905@freescale.com> (cherry picked from commit a086f9782435b51f494c618236907894dfeff3ad)
2013-03-21ENGR00237365: board-mx6q_sabreauto fix mipi-csi2 settingsAdrian Alonso
* Correct mipi-csi2 settings only one data line is used * Add mx6q_mipi_csi1_io_init ipu-csi setting callback use virtual channel 1 and attach it to CSI1 -> IPU0 * Set i2c slave address to 0x52 * Set ipu-csi clko_clk Signed-off-by: Adrian Alonso <aalonso@freescale.com> (cherry picked from commit c8000cb42cfb6170c95ad4adc8fe4b2473612e92)
2013-03-20ENGR00254896 mx6: hdmidongle: Fix compile error.Zhang Xiaodong
After enable PICE in kernel config, building will meet fatal error:linux/wakelock.h: No such file or directory Signed-off-by: Zhang Xiaodong <B39117@freescale.com>
2013-03-20ENGR00254931 IPUv3 Fb: Fix display twinkling issue during suspend/resumeWayne Zou
Fix display twinkling issue when video playback on LVDS during suspend/resume. The issue happens when the rootfs application Xfbdev calls fb_set_var() for IPU BG fb to unblank the console, so it wants to reinitialize the IPU BG. However, IPU FG is still being used for video playback.It is reasonable to refuse reprogramme because of the resources confilct. Signed-off-by: Wayne Zou <b36644@freescale.com>
2013-03-15ENGR00253355 ARM: imx6q/imx6dl: Set proper PAD value for WEIM NORHuang Shijie
Set proper pad value for WEIM NOR. Without setting these pad value the weim-nor can not work. Signed-off-by: Huang Shijie <b32955@freescale.com>
2013-03-15ENGR00254457 mx6dl: fix mx6dl TO1.1 can't enter 'mem'Robin Gong
The previous patch ENGR00251630 didn't notice mx6q_revision() will return -EINVAL and will match 'mx6q_revision()<IMX_CHIP_REVISION_1_1' ,then mx6dl TO1.1 will also change suspend state to 'standby'. Signed-off-by: Robin Gong <b38343@freescale.com>
2013-03-14ENGR00243289 egalax_ts: Add support for single-touchEric Nelson
Add support for single-touch for the Egalax Touch driver Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com> Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@freescale.com>
2013-03-14ENGR00254267 MX6DL/MX6SL max freq: Fix max cpu freq at 1G on MX6DL ARDRobin Gong
For MX6DL,align max cpufreq judge by SPEED_GRADING fuse bit with MX6DQ. For MX6SL without the fuse bit, we need add condition check, if found arm_max_freq set by default , change to1G. Else decided by 'arm_freq' setting by cmdline. Signed-off-by: Robin Gong <b38343@freescale.com>
2013-03-13ENGR00253927 IPU: Fix NULL pointer bug when BG EOF interrupt occur earlyWayne Zou
Fix NULL pointer bug when IPU BG EOF interrupt occur before register irq handler It can be reproduced on MIPI DSI display on i.mx6dl SabreSD board. The sequence is: a) enable display channel b) pan display (fb_set_var()) -> ipu_enable_irq c) ipu_request_irq If an EOF interrupt comes before c and after b, the issue happens. Signed-off-by: Wayne Zou <b36644@freescale.com>
2013-03-13ENGR00243315-6 ADV7180:Remove unnecessary header filesLiu Ying
This patch removes unnesessary header files in the driver. Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
2013-03-13ENGR00243315-5 ADV7180:Power management adjustmentLiu Ying
ADV7180 power down/on can be controlled by a gpio pin or i2c register setting. The PDBP bit in 0x0f register chooses the control source, and the PWRDWN bit in 0x0f register chooses to power down the chip or power on the chip if control source is i2c. This patch removes all gpio pin power down/on code after probe function and uses i2c to do power down/on operation, as some boards may choose to not connect ADV7180 power down pin with AP, however, AP's i2c bus has to be connect with the ADV7180 chip. Moveover, this patch also adds a 400ms sleep after the chip is powered on, which is a workaround for preview scrolling issue(we suspect that the chip needs some time to in a stable status, so that it may sends correct data to AP). Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
2013-03-13ENGR00243315-4 MXC V4L2 Capture:Improve debug info for s_stdLiu Ying
commit f8e1a3bb62eecf93a31a51c4dbe08a0214fa1d57 introduced an annoying kernel log by changing a pure debug info to error level. This patch reverts that change. Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
2013-03-13ENGR00243315-3 MXC V4L2 Capture:Remove unnecessary mclk settingLiu Ying
commit f8e1a3bb62eecf93a31a51c4dbe08a0214fa1d57 added a hard coding for csi_parma.mclk setting to 27MHz. The comment added by that commit is totally wrong by telling that csi_param.mclk would be a kind of 'pixel clock' set in 'csi_data_dest' register. This patch removes the unnecessary mclk setting for csi_param.mclk variable, since it is only valid for CSI test mode. Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
2013-03-13ENGR00243315-2 IPUv3 CSI:Remove test mode clock settingLiu Ying
This patch removes test mode clock setting in function ipu_csi_init_interface(), since the setting is only necessary for function _ipu_csi_set_test_generator(). This unnecessary setting is added wrongly by commit f8e1a3bb62eecf93a31a51c4dbe08a0214fa1d57. Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
2013-03-13ENGR00243315-1 IPUv3 CSI:Correct CCIR code1/2 for PAL and NTSCLiu Ying
We reversed CCIR code1/2 setting before, which may brings captured frame quality issue(jaggy edge can be seen). This patch revert that change. Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
2013-03-12ENGR00253835: CAAM: Fix build warnings in caamhash.cTerry Lv
A warning was find in caamhash.c: linux-2.6-imx/drivers/crypto/caam/caamhash.c: In function 'ahash_update_ctx': linux-2.6-imx/drivers/crypto/caam/caamhash.c:850: warning: 'desc' may be used uninitialized in this function This commit is to fix it. Signed-off-by: Terry Lv <r65388@freescale.com>
2013-03-12ENGR00253418 IMX6 SabreSD Display: Support LVDS1 and HDMI dual displayWayne Zou
Support LVDS1 and HDMI dual display on SabreSD Rev.C board on i.mx6 By default, LVDS uses LDB_SEP1 mode due to the hardware design. Signed-off-by: Wayne Zou <b36644@freescale.com>
2013-03-12ENGR00169384 imx6q: uart: config and enble uart5Jianzheng Zhou
Config clock,irq,mux pad,data entry, etc to setup uart5. Signed-off-by: Jianzheng Zhou <jianzheng.zhou@freescale.com>
2013-03-12ENGR00234501 ASoC: spdif: fix Ubuntu reboot hang issueNicolin Chen
spdif driver registered kcontrol for ALSA subsystem controlling, while some of those kcontrol functions lack of clk_enable() before register-accessing. So system would definitely hang when those functions're called, which did happen during reboot test on Ubuntu due to its pulse-audio. This patch added paired clk_en/disable() to those functions so as to pevent system hang issue. Acked-by: Wang Shengjiu <b02247@freescale.com> Tested-by: Anson Huang <b20788@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com>
2013-03-08ENGR00253290-2 ASoC: imx-wm8962: fix continuous playback distortion issueNicolin Chen
If DAC volume's set to a value that's lower than 0xd8, contineously FLL setting of wm8962 in machine driver would cause playback distortion issue, which happens to ENGR219882. so we have to put some another code in machine driver to prevent distortion issue. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com>