firefly-linux-kernel-4.4.55.git
10 years agoi2s : add debug interface
qjb [Wed, 26 Feb 2014 03:31:30 +0000 (11:31 +0800)]
i2s : add debug interface

10 years agopwm-backlight: set default devname as rk28_bl, to make Android happy
黄涛 [Tue, 25 Feb 2014 10:50:08 +0000 (18:50 +0800)]
pwm-backlight: set default devname as rk28_bl, to make Android happy

10 years agoARM: rockchip: rk3188-tb fix backlight setting for Android
黄涛 [Tue, 25 Feb 2014 10:44:58 +0000 (18:44 +0800)]
ARM: rockchip: rk3188-tb fix backlight setting for Android

10 years agoUSB: fix bug in dwc_otg_pcd_remove
wlf [Tue, 25 Feb 2014 10:05:27 +0000 (18:05 +0800)]
USB: fix bug in dwc_otg_pcd_remove

10 years agoUSB: set hcd->has_tt = 1 to support parent hub TT
wlf [Tue, 25 Feb 2014 09:58:46 +0000 (17:58 +0800)]
USB: set hcd->has_tt = 1 to support parent hub TT

10 years agosaradc: rockchip: fix some codes about clk
dkl [Tue, 25 Feb 2014 09:41:59 +0000 (17:41 +0800)]
saradc: rockchip: fix some codes about clk

10 years agoUSB: set bcdDevice default value 3.0
wlf [Tue, 25 Feb 2014 09:37:56 +0000 (17:37 +0800)]
USB: set bcdDevice default value 3.0

10 years agork: ion: modify the ION_IOC_XXX name easy to understand
CMY [Tue, 25 Feb 2014 09:23:06 +0000 (17:23 +0800)]
rk: ion: modify the ION_IOC_XXX name easy to understand

10 years agork3188 i2s dts : set i2s drive default 8ma
qjb [Tue, 25 Feb 2014 09:22:13 +0000 (17:22 +0800)]
rk3188 i2s dts : set i2s drive default 8ma

10 years agoARM: rockchip: rk3188-tb backlight use new enable-gpios property
黄涛 [Tue, 25 Feb 2014 09:16:56 +0000 (17:16 +0800)]
ARM: rockchip: rk3188-tb backlight use new enable-gpios property

10 years agopwm-backlight: Remove unused variable
黄涛 [Tue, 25 Feb 2014 09:08:52 +0000 (17:08 +0800)]
pwm-backlight: Remove unused variable

I forgot to remove this during earlier cleanup patches and only checked
various builds for errors, not warnings.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
10 years agopwm_backlight: avoid short blank screen while doing hibernation
Huayi Li [Wed, 9 Oct 2013 02:33:02 +0000 (10:33 +0800)]
pwm_backlight: avoid short blank screen while doing hibernation

Use SIMPLE_DEV_PM_OPS macro will initialize the member "freeze"
and "thaw" of pwm_backlight_pm_ops as below,
.freeze = suspend_fn,
.thaw = resume_fn,
then during the process of making hibernation snapshot, screen
will be blank at the moment of freezing, and then light at the
moment of thawing.
this is not the right user experience for suspending to disk.

so this patch drops freeze and thaw callback, make the LCD is
always lighting before the final shutdown.

Signed-off-by: Huayi Li <huayi.li@csr.com>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
10 years agopwm-backlight: Fix brightness adjustment
Thierry Reding [Fri, 18 Oct 2013 08:46:24 +0000 (10:46 +0200)]
pwm-backlight: Fix brightness adjustment

Split adjustment of the brightness (by changing the PWM duty cycle) from
the power on sequence. This fixes an issue where the brightness can no
longer be updated once the backlight has been enabled.

Reported-by: Marc Dietrich <marvin24@gmx.de>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Conflicts:
drivers/video/backlight/pwm_bl.c

10 years agopwm-backlight: Allow for non-increasing brightness levels
Mike Dunn [Sun, 22 Sep 2013 16:59:56 +0000 (09:59 -0700)]
pwm-backlight: Allow for non-increasing brightness levels

Currently the driver assumes that the values specified in the
brightness-levels device tree property increase as they are parsed from
left to right.  But boards that invert the signal between the PWM output
and the backlight will need to specify decreasing brightness-levels.
This patch removes the assumption that the last element of the array is
the maximum value, and instead searches the array for the maximum value
and uses that in the duty cycle calculation.

Signed-off-by: Mike Dunn <mikedunn@newsguy.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
10 years agopwm-backlight: Use new enable_gpio field
Thierry Reding [Fri, 30 Aug 2013 10:32:18 +0000 (12:32 +0200)]
pwm-backlight: Use new enable_gpio field

Make use of the new enable_gpio field and allow it to be set from DT as
well. Now that all legacy users of platform data have been converted to
initialize this field to an invalid value, it is safe to use the field
from the driver.

Signed-off-by: Thierry Reding <treding@nvidia.com>
10 years agopwm-backlight: Add optional enable GPIO
Thierry Reding [Fri, 30 Aug 2013 09:51:22 +0000 (11:51 +0200)]
pwm-backlight: Add optional enable GPIO

To support a wider variety of backlight setups, introduce an optional
enable GPIO. Legacy users of the platform data already have a means of
supporting GPIOs by using the .init(), .exit() and .notify() hooks. DT
users however cannot use those, so an alternative method is required.

In order to ease the introduction of the optional enable GPIO, make it
available in the platform data first, so that existing users can be
converted. Once that has happened a second patch will add code to make
use of it in the driver.

Signed-off-by: Thierry Reding <treding@nvidia.com>
10 years agopwm-backlight: Track enable state
Thierry Reding [Wed, 2 Oct 2013 16:01:02 +0000 (18:01 +0200)]
pwm-backlight: Track enable state

Follow up patches will add support for more complex means of powering
the backlight on and off such as using a regulator. To prevent calls to
the regulator API from becoming unbalanced, keep track of the enabled
state internally.

Signed-off-by: Thierry Reding <treding@nvidia.com>
10 years agopwm-backlight: Refactor backlight power on/off
Thierry Reding [Mon, 7 Oct 2013 09:32:02 +0000 (11:32 +0200)]
pwm-backlight: Refactor backlight power on/off

In preparation for adding an optional regulator and enable GPIO to the
driver, split the power on and power off sequences into separate
functions to reduce code duplication at the multiple call sites.

Signed-off-by: Thierry Reding <treding@nvidia.com>
10 years agopwm-backlight: Improve readability
Thierry Reding [Mon, 7 Oct 2013 09:30:50 +0000 (11:30 +0200)]
pwm-backlight: Improve readability

Add more blank lines to increase readability. While at it, remove a
trailing blank line at the end of the file.

Signed-off-by: Thierry Reding <treding@nvidia.com>
10 years agopwm-backlight: reset to unpstream version
黄涛 [Tue, 25 Feb 2014 08:55:47 +0000 (16:55 +0800)]
pwm-backlight: reset to unpstream version

10 years agoi2s : add i2s clr reg check
qjb [Tue, 25 Feb 2014 07:48:01 +0000 (15:48 +0800)]
i2s : add i2s clr reg check

10 years agork: ion: support shared buffer between processes without Binder
CMY [Tue, 25 Feb 2014 07:31:10 +0000 (15:31 +0800)]
rk: ion: support shared buffer between processes without Binder

10 years agoSDMMC:
xbw [Tue, 25 Feb 2014 05:16:10 +0000 (13:16 +0800)]
SDMMC:
continuse with the commit-9401f2e4feea8c884418f3c5821e83aee7b313b0 .
Delete those code which will never be used in the future.

10 years agoSDMMC: Delete those code which will never be used in the future.
xbw [Tue, 25 Feb 2014 05:09:26 +0000 (13:09 +0800)]
SDMMC: Delete those code which will never be used in the future.

10 years agoSDMMC: select SDcard module configuration in kernel-3.10 project
xbw [Tue, 25 Feb 2014 04:59:48 +0000 (12:59 +0800)]
SDMMC: select SDcard module configuration in kernel-3.10 project

10 years agocontinue with the privous Commit. Complete submission SDMMC driver in kernel-3.10...
xbw [Tue, 25 Feb 2014 04:43:01 +0000 (12:43 +0800)]
continue with the privous Commit. Complete submission SDMMC driver in kernel-3.10.Currently,Only the sdcard can be used.

10 years agoSDMMC: Complete submission SDMMC driver in kernel-3.10.Currently,Only the sdcard...
xbw [Tue, 25 Feb 2014 04:41:17 +0000 (12:41 +0800)]
SDMMC: Complete submission SDMMC driver in kernel-3.10.Currently,Only the sdcard can be used.

10 years agoMerge branch 'develop-3.10' of ssh://10.10.10.29/rk/kernel into develop-3.10
xbw [Tue, 25 Feb 2014 04:35:25 +0000 (12:35 +0800)]
Merge branch 'develop-3.10' of ssh://10.10.10.29/rk/kernel into develop-3.10

10 years agoSDMMC:
xbw [Tue, 25 Feb 2014 04:34:50 +0000 (12:34 +0800)]
SDMMC:
   revert the modify in file dw_mmc.c,Keep it to its original version.

10 years agoadd dts for rk3188 LR097
yxj [Tue, 25 Feb 2014 01:24:56 +0000 (09:24 +0800)]
add dts for rk3188 LR097

10 years agork fb:add more screen property
yxj [Fri, 21 Feb 2014 10:36:47 +0000 (18:36 +0800)]
rk fb:add more screen property

10 years agoport edp anx6345 to linux 3.10
yxj [Fri, 21 Feb 2014 10:32:08 +0000 (18:32 +0800)]
port edp anx6345 to linux 3.10

10 years agork32 edp: base version
yxj [Wed, 19 Feb 2014 09:40:36 +0000 (17:40 +0800)]
rk32 edp: base version

10 years agoaudio pcm kernel 3.10 : support
qjb [Mon, 24 Feb 2014 10:00:14 +0000 (18:00 +0800)]
audio pcm kernel 3.10 : support

10 years agork: ion: fixed bug for ION_IOC_GET_PHYS
CMY [Mon, 24 Feb 2014 09:51:23 +0000 (17:51 +0800)]
rk: ion: fixed bug for ION_IOC_GET_PHYS

10 years agoclk: rk: add aclk_lcdc init, fix dclk_lcdc/i2s clk ops
dkl [Mon, 24 Feb 2014 06:51:59 +0000 (14:51 +0800)]
clk: rk: add aclk_lcdc init, fix dclk_lcdc/i2s clk ops

1. Init aclk_lcdc 300M.
2. Fix dclk_lcdc clk ops to set even div only.
3. Repeatly write i2s clk reg, to fix rk3188 problem.

10 years agork: ion: add system heap
CMY [Mon, 24 Feb 2014 03:31:49 +0000 (11:31 +0800)]
rk: ion: add system heap

10 years agoSDMMC: add the sdmmc driver to kernel_3.10
xbw [Sat, 22 Feb 2014 08:03:46 +0000 (16:03 +0800)]
SDMMC: add the sdmmc driver to kernel_3.10

10 years ago1.hdmi: fix cat66121 driver run error 2. rkfb: fix some code error
zwl [Fri, 21 Feb 2014 09:33:24 +0000 (17:33 +0800)]
1.hdmi: fix cat66121 driver run error 2. rkfb: fix some code error

10 years agoclk: rk: fix clk dts info analysis and clk register
dkl [Fri, 21 Feb 2014 09:09:10 +0000 (17:09 +0800)]
clk: rk: fix clk dts info analysis and clk register

1. Fix the way to get info from rk clk dts.
2. Fix rk clk register.
3. Draw out rk_clk_dump_info func.
4. Add more debug.

10 years agork: ion: change heap id
CMY [Fri, 21 Feb 2014 01:23:35 +0000 (09:23 +0800)]
rk: ion: change heap id

10 years agork: proc: fix slub warning when call setup_irq
黄涛 [Thu, 20 Feb 2014 11:39:44 +0000 (19:39 +0800)]
rk: proc: fix slub warning when call setup_irq

BUG: sleeping function called from invalid context at mm/slub.c:926
in_atomic(): 1, irqs_disabled(): 128, pid: 0, name: swapper/3
INFO: lockdep is turned off.
irq event stamp: 45900
hardirqs last  enabled at (45899): [<c009fe18>] rcu_preempt_note_context_switch+0x174/0x18c
hardirqs last disabled at (45900): [<c0605a64>] _raw_spin_lock_irq+0x18/0x50
softirqs last  enabled at (45744): [<c002c424>] irq_enter+0x50/0x78
softirqs last disabled at (45743): [<c002c418>] irq_enter+0x44/0x78
CPU: 3 PID: 0 Comm: swapper/3 Tainted: G           O 3.10.0 #405
[<c0013fe8>] (unwind_backtrace+0x0/0xe0) from [<c0011930>] (show_stack+0x10/0x14)
[<c0011930>] (show_stack+0x10/0x14) from [<c00fa3dc>] (__kmalloc+0x70/0x228)
[<c00fa3dc>] (__kmalloc+0x70/0x228) from [<c0148d2c>] (__proc_create+0x94/0xf0)
[<c0148d2c>] (__proc_create+0x94/0xf0) from [<c0149000>] (proc_mkdir_data+0x30/0x74)
[<c0149000>] (proc_mkdir_data+0x30/0x74) from [<c009babc>] (register_handler_proc+0xe8/0x114)
[<c009babc>] (register_handler_proc+0xe8/0x114) from [<c00982b0>] (__setup_irq+0x334/0x3fc)
[<c00982b0>] (__setup_irq+0x334/0x3fc) from [<c0098558>] (setup_irq+0x58/0x80)
[<c0098558>] (setup_irq+0x58/0x80) from [<c05ef51c>] (rk_timer_init_clockevent+0x98/0xcc)
[<c05ef51c>] (rk_timer_init_clockevent+0x98/0xcc) from [<c05ed0dc>] (percpu_timer_setup+0x54/0xa8)
[<c05ed0dc>] (percpu_timer_setup+0x54/0xa8) from [<c05ed4d8>] (secondary_start_kernel+0x128/0x160)
[<c05ed4d8>] (secondary_start_kernel+0x128/0x160) from [<600081bc>] (0x600081bc)

10 years agots: rk29_i2c_goodix: fix resume with enable wrong irq
黄涛 [Thu, 20 Feb 2014 11:12:23 +0000 (19:12 +0800)]
ts: rk29_i2c_goodix: fix resume with enable wrong irq

10 years agokeys: depend on rockchip adc config
wdc [Thu, 20 Feb 2014 11:49:55 +0000 (19:49 +0800)]
keys: depend on rockchip adc config

10 years agoAudio codec rt5631: add support
qjb [Thu, 20 Feb 2014 10:29:18 +0000 (18:29 +0800)]
Audio codec rt5631: add support

10 years agoAudio codec: add i2c scl_rate,default 100k.
qjb [Thu, 20 Feb 2014 10:01:26 +0000 (18:01 +0800)]
Audio codec: add i2c scl_rate,default 100k.

10 years agosaradc: rm drivers/iio/adc/rk_adc.c
wdc [Thu, 20 Feb 2014 09:34:36 +0000 (17:34 +0800)]
saradc: rm drivers/iio/adc/rk_adc.c

10 years agosaradc filename changed: rk_adc.c => rockchip_adc.c
wdc [Thu, 20 Feb 2014 09:30:44 +0000 (17:30 +0800)]
saradc filename changed: rk_adc.c => rockchip_adc.c

10 years agoARM: rockchip: support cpu hotplug and basic PM
黄涛 [Thu, 20 Feb 2014 08:05:27 +0000 (16:05 +0800)]
ARM: rockchip: support cpu hotplug and basic PM

10 years agoARM: rockchip: rk3188-cpufreq only avaliable on rk3188
黄涛 [Thu, 20 Feb 2014 06:28:36 +0000 (14:28 +0800)]
ARM: rockchip: rk3188-cpufreq only avaliable on rk3188

10 years agolinux3.10: support saradc key driver
wdc [Thu, 20 Feb 2014 06:30:02 +0000 (14:30 +0800)]
linux3.10: support saradc key driver

10 years agoirqchip: gic: fix fiq debugger support when resume
黄涛 [Thu, 20 Feb 2014 06:22:23 +0000 (14:22 +0800)]
irqchip: gic: fix fiq debugger support when resume

10 years agoPort VPU driver to kernel 3.10
ljf [Thu, 20 Feb 2014 05:07:35 +0000 (13:07 +0800)]
Port VPU driver to kernel 3.10

10 years agoaudio: update rockchip_defconfig
陈金泉 [Thu, 20 Feb 2014 03:50:57 +0000 (11:50 +0800)]
audio: update rockchip_defconfig

10 years agork: ion: add custom ioctl: ION_IOC_GET_PHYS
CMY [Thu, 20 Feb 2014 03:21:40 +0000 (11:21 +0800)]
rk: ion: add custom ioctl: ION_IOC_GET_PHYS

10 years agoclk: rk: fix clk add provider and cache parents
dkl [Wed, 19 Feb 2014 12:37:01 +0000 (20:37 +0800)]
clk: rk: fix clk add provider and cache parents

10 years agoAudio: add dts property(i2s format) and delete them from menuconfig, add sound card...
陈金泉 [Wed, 19 Feb 2014 08:00:17 +0000 (16:00 +0800)]
Audio: add dts property(i2s format) and delete them from menuconfig, add sound card info parsing, fix i2s lock error.

10 years agoARM: rockchip: iomap.h add more rk3288 define
黄涛 [Tue, 18 Feb 2014 10:34:00 +0000 (18:34 +0800)]
ARM: rockchip: iomap.h add more rk3288 define

10 years agohdmi: add cat66121 hdmi driver dts property
zwl [Tue, 18 Feb 2014 07:51:42 +0000 (15:51 +0800)]
hdmi: add cat66121 hdmi driver dts property

10 years agoARM: rockchip: grf.h add rk3288 support
黄涛 [Tue, 18 Feb 2014 07:56:57 +0000 (15:56 +0800)]
ARM: rockchip: grf.h add rk3288 support

10 years agoARM: rockchip: rk3188-tb set memory size to 1G for support sdk board
黄涛 [Mon, 17 Feb 2014 12:03:41 +0000 (20:03 +0800)]
ARM: rockchip: rk3188-tb set memory size to 1G for support sdk board

10 years agoRK616: add dts property and fix some compile error
zwl [Mon, 17 Feb 2014 10:03:48 +0000 (18:03 +0800)]
RK616: add dts property and fix some compile error

10 years agoARM: rockchip: rk3188: fix dma irq define
黄涛 [Fri, 14 Feb 2014 02:32:22 +0000 (10:32 +0800)]
ARM: rockchip: rk3188: fix dma irq define

10 years agomove driver/video/display/display-sys.c to driver/video/rockchip/display-sys.c
zwl [Thu, 13 Feb 2014 12:41:03 +0000 (20:41 +0800)]
move driver/video/display/display-sys.c to driver/video/rockchip/display-sys.c

10 years agoARM: rockchip: rk3188-tb add ts support
黄涛 [Thu, 13 Feb 2014 10:12:15 +0000 (18:12 +0800)]
ARM: rockchip: rk3188-tb add ts support

10 years agots: rk29_i2c_goodix: porting to 3.10
黄涛 [Thu, 13 Feb 2014 10:11:01 +0000 (18:11 +0800)]
ts: rk29_i2c_goodix: porting to 3.10

10 years agoUSB: support usb otg and host20 functions
wlf [Thu, 13 Feb 2014 07:45:30 +0000 (15:45 +0800)]
USB: support usb otg and host20 functions

10 years agoAudio: use sound DMA engine for pcm, update i2s, spdif and machine driver, add dts...
陈金泉 [Thu, 13 Feb 2014 02:24:41 +0000 (10:24 +0800)]
Audio: use sound DMA engine for pcm, update i2s, spdif and machine driver, add dts property for i2s and spdif.

10 years agoARM: rockchip: fix rk3188 i2c dts setup again
黄涛 [Wed, 12 Feb 2014 12:01:56 +0000 (20:01 +0800)]
ARM: rockchip: fix rk3188 i2c dts setup again

10 years agoi2c: rockchip: fix check idle init, disable clk control to make dvfs happy, fix rk318...
黄涛 [Wed, 12 Feb 2014 11:55:51 +0000 (19:55 +0800)]
i2c: rockchip: fix check idle init, disable clk control to make dvfs happy, fix rk3188 i2c dts setup

10 years agork fb:fix dma_buf fd
yxj [Wed, 12 Feb 2014 02:41:34 +0000 (10:41 +0800)]
rk fb:fix dma_buf fd

10 years agork: ion: remove ^M character
CMY [Tue, 11 Feb 2014 09:14:56 +0000 (17:14 +0800)]
rk: ion: remove ^M character

10 years agomove rockchip_ion.h file to include/linux/
CMY [Tue, 11 Feb 2014 08:48:16 +0000 (16:48 +0800)]
move rockchip_ion.h file to include/linux/

10 years agork31:pmu:support pmu sleep voltage and sleep mode setting by dts
张晴 [Tue, 11 Feb 2014 08:37:30 +0000 (16:37 +0800)]
rk31:pmu:support pmu sleep voltage and sleep mode setting by dts

10 years agoenable rockchip ion by default
CMY [Tue, 11 Feb 2014 07:31:10 +0000 (15:31 +0800)]
enable rockchip ion by default

10 years agork fb:use ion interface export by rockchip ion
yxj [Tue, 11 Feb 2014 07:26:04 +0000 (15:26 +0800)]
rk fb:use ion interface export by rockchip ion

10 years agork fb: add ion dam_buf support
yxj [Tue, 11 Feb 2014 06:44:08 +0000 (14:44 +0800)]
rk fb: add ion dam_buf support

10 years agoAdd rockchip ion
CMY [Mon, 10 Feb 2014 02:36:02 +0000 (10:36 +0800)]
Add rockchip ion

10 years agoclk: rk: change clk_core init-rate and the way to get cru&grf base
dkl [Tue, 11 Feb 2014 02:16:42 +0000 (10:16 +0800)]
clk: rk: change clk_core init-rate and the way to get cru&grf base

1. Change clk_core init-rate to 792 MHZ.
2. Use RK_CRU_VIRT & RK_GRF_VIRT to get cru&grf base.
3. Fix pll_wait_lock() func.

10 years agopwm: solve the bug sleeping function called from invalid context at kernel/mutex...
许盛飞 [Tue, 11 Feb 2014 03:19:03 +0000 (11:19 +0800)]
pwm: solve the bug sleeping function called from invalid context at kernel/mutex.c:413

10 years ago1.optimize the 'hdmi' global variables 2.fix some compile error
zwl [Mon, 10 Feb 2014 14:11:43 +0000 (22:11 +0800)]
1.optimize the 'hdmi' global variables 2.fix some compile error

10 years agoARM: rockchip: rockchip_defconfig merge android config
黄涛 [Mon, 10 Feb 2014 09:14:04 +0000 (17:14 +0800)]
ARM: rockchip: rockchip_defconfig merge android config

10 years agoMerge remote-tracking branch 'origin/upstream/linux-linaro-lsk-v3.10-android' into...
黄涛 [Mon, 10 Feb 2014 08:23:36 +0000 (16:23 +0800)]
Merge remote-tracking branch 'origin/upstream/linux-linaro-lsk-v3.10-android' into develop-3.10

10 years agoARM: rockchip: fix dma commit 1dcced23a5ed21220d42540a1e897db61cda66ba
黄涛 [Mon, 10 Feb 2014 06:19:24 +0000 (14:19 +0800)]
ARM: rockchip: fix dma commit 1dcced23a5ed21220d42540a1e897db61cda66ba

10 years agodma pl330: add device tree mode support, memcpy function ok,
宋秀杰 [Mon, 10 Feb 2014 03:14:48 +0000 (11:14 +0800)]
dma pl330: add device tree mode support, memcpy function ok,
but clock is not used now.

10 years agoclk: rockchip: add clk_gpu init to rate 200M
dkl [Mon, 10 Feb 2014 02:52:33 +0000 (10:52 +0800)]
clk: rockchip: add clk_gpu init to rate 200M

10 years agork616: update rk616 driver,add dts property
zwl [Sat, 8 Feb 2014 09:40:40 +0000 (17:40 +0800)]
rk616: update rk616 driver,add dts property

10 years agoARM: rockchip: update rockchip_defconfig to support mtd and rknand
黄涛 [Sat, 8 Feb 2014 08:39:23 +0000 (16:39 +0800)]
ARM: rockchip: update rockchip_defconfig to support mtd and rknand

10 years agorknand:remove debug log.
Zhaoyifeng [Sat, 8 Feb 2014 08:13:02 +0000 (16:13 +0800)]
rknand:remove debug log.

10 years agorockchip_defconfig : set default cpufreq governor to interactive
陈亮 [Sat, 8 Feb 2014 06:17:36 +0000 (22:17 -0800)]
rockchip_defconfig : set default cpufreq governor to interactive

10 years agork3188 : add dvfs && cpufreq
陈亮 [Sat, 8 Feb 2014 03:32:55 +0000 (19:32 -0800)]
rk3188 : add dvfs && cpufreq

10 years ago add rknand for debug
Zhaoyifeng [Sat, 8 Feb 2014 02:23:40 +0000 (10:23 +0800)]
add rknand for debug

10 years agoARM: rockchip: correct L2 latency setting
dkl [Fri, 7 Feb 2014 12:19:16 +0000 (20:19 +0800)]
ARM: rockchip: correct L2 latency setting

10 years agoclose pinctrl debug log
luowei [Fri, 7 Feb 2014 05:42:17 +0000 (13:42 +0800)]
close pinctrl debug log

10 years agoclk: rockchip: fix clk reg address description in dts
dkl [Fri, 7 Feb 2014 03:30:51 +0000 (11:30 +0800)]
clk: rockchip: fix clk reg address description in dts

1.Descripe cru address mapping in clocks node's "ranges" property, and
change children nodes' "reg" property accordingly.
2.Get cru base from clock_regs node's "reg" property.

10 years agoRecommit "clk: rockchip: add clk init data and enable clk init"
dkl [Fri, 7 Feb 2014 01:50:53 +0000 (09:50 +0800)]
Recommit "clk: rockchip: add clk init data and enable clk init"

This recommit commit 4673090895385ded057a23dcbdfff2ebe1f80f1b with
fix that lower clk_core init rate to 594 MHZ.

10 years agoMerge branch 'linux-linaro-lsk' into linux-linaro-lsk-android
Mark Brown [Mon, 27 Jan 2014 14:57:42 +0000 (14:57 +0000)]
Merge branch 'linux-linaro-lsk' into linux-linaro-lsk-android

10 years agoMerge tag 'v3.10.28' into linux-linaro-lsk
Mark Brown [Mon, 27 Jan 2014 14:57:25 +0000 (14:57 +0000)]
Merge tag 'v3.10.28' into linux-linaro-lsk

This is the 3.10.28 stable release

10 years agork fb:rename layer to win, add iomux for rk3188 lcdc
yxj [Mon, 20 Jan 2014 22:39:28 +0000 (06:39 +0800)]
rk fb:rename layer to win, add iomux for rk3188 lcdc

10 years agoupdate audio platform driver, add spdif codec dts property
陈金泉 [Sun, 26 Jan 2014 08:28:43 +0000 (16:28 +0800)]
update audio platform driver, add spdif codec dts property