Re: Call for topic updates and new topics for linux-linaro-core-tracking tree

2012-08-10 Thread John Stultz
On 08/10/2012 11:57 AM, Andrey Konovalov wrote: Greetings, The linux-linaro-core-tracking tree (llct, see http://git.linaro.org/gitweb?p=kernel/linux-linaro-tracking.git;a=summary for some more details) is planned to be moved to v3.6-rc1 (or v3.6-rc2 if it is out) early next week. There wil

Call for topic updates and new topics for linux-linaro-core-tracking tree

2012-08-10 Thread Andrey Konovalov
Greetings, The linux-linaro-core-tracking tree (llct, see http://git.linaro.org/gitweb?p=kernel/linux-linaro-tracking.git;a=summary for some more details) is planned to be moved to v3.6-rc1 (or v3.6-rc2 if it is out) early next week. There will be more updates to llct as long as new -rc's ar

Re: [PATCH 5/5][RFC] cpuidle : add cpuidle_register_states function

2012-08-10 Thread Lorenzo Pieralisi
Hi Daniel, thanks for this patchset. On Wed, Jul 25, 2012 at 11:46:02AM +0100, Daniel Lezcano wrote: > The tegra3 and big.LITTLE architecture have different cpu latencies. > This API allows to specify a different cpu latency for a specific cpu. > > With the previous patches, we use the per cpuid

Re: [PATCH v4 0/2] Add v4l2 subdev driver for S5K4ECGX sensor with embedded SoC ISP

2012-08-10 Thread Sangwook Lee
Ccing Sylwester. On 10 August 2012 15:14, Sangwook Lee wrote: > The following 2 patches add driver for S5K4ECGX sensor with embedded ISP > SoC, > and minor v4l2 control API enhancement. S5K4ECGX is 5M CMOS Image sensor > from Samsung > > Changes since v3: > - used request_firmware to configure

[PATCH v4 2/2] v4l: Add v4l2 subdev driver for S5K4ECGX sensor

2012-08-10 Thread Sangwook Lee
This driver implements preview mode of the S5K4ECGX sensor. capture (snapshot) operation, face detection are missing now. Following controls are supported: contrast/saturation/brightness/sharpness Signed-off-by: Sangwook Lee --- drivers/media/video/Kconfig|8 + drivers/media/video/Makef

[PATCH v4 0/2] Add v4l2 subdev driver for S5K4ECGX sensor with embedded SoC ISP

2012-08-10 Thread Sangwook Lee
The following 2 patches add driver for S5K4ECGX sensor with embedded ISP SoC, and minor v4l2 control API enhancement. S5K4ECGX is 5M CMOS Image sensor from Samsung Changes since v3: - used request_firmware to configure initial settings - added parsing functions to read initial settings - updated

[PATCH v4 1/2] v4l: Add factory register values form S5K4ECGX sensor

2012-08-10 Thread Sangwook Lee
Add preview default settings for S5K4ECGX sensor registers, which was copied from the reference code of Samsung S.LSI. Signed-off-by: Sangwook Lee --- drivers/media/video/s5k4ecgx_regs.h | 138 +++ 1 file changed, 138 insertions(+) create mode 100644 drivers/med

Re: [PATCH v4 4/5] thermal: exynos: Register the tmu sensor with the kernel thermal layer

2012-08-10 Thread Hongbo Zhang
On 12 May 2012 17:40, Amit Daniel Kachhap wrote: > This code added creates a link between temperature sensors, linux thermal > framework and cooling devices for samsung exynos platform. This layer > monitors the temperature from the sensor and informs the generic thermal > layer to take the neces

[PATCH 2/2] Thermal: Add ST-Ericsson db8500 thermal dirver.

2012-08-10 Thread hongbo.zhang
From: "hongbo.zhang" This diver is based on the thermal management framework in thermal_sys.c. A thermal zone device is created with the trip points to which cooling devices can be binded, the current cooling device is cpufreq, e.g. CPU frequency is clipped down to cool the CPU, and other cooling

[PATCH 0/2] ST-Ericsson dbx500 thermal driver

2012-08-10 Thread hongbo.zhang
From: "hongbo.zhang" This patch sets contains two patches: [PATCH 1/2] Thermal: Move struct thermal_cooling_device_instance to thermal.h Note: Declaration of struct thermal_cooling_device_instance should be moved to public header file thermal.h, because a thermal zone driver need to operate the

[PATCH 1/2] Thermal: Move struct thermal_cooling_device_instance to thermal.h

2012-08-10 Thread hongbo.zhang
From: "hongbo.zhang" A thermal driver may need to walk through the cooling devices binded to itself, which are listed in cooling_devices of thermal_zone_device, and this goal cannot be achieved without moving this structure declaration to the public header file. Signed-off-by: hongbo.zhang ---