Build error in torvalds kernel 3.11 for omap2plus

2013-09-08 Thread Anil Kumar
Hi All, I am getting below build error in torvalds kernel 3.11 for omap2plus. scripts/kconfig/conf --silentoldconfig Kconfig CHK include/generated/uapi/linux/version.h CHK include/generated/utsrelease.h make[1]: `include/generated/mach-types.h' is up to date. CALL

[PATCH v4 1/2] ARM: OMAP: Add secure function omap_smc3() which calling instruction smc #1

2013-09-08 Thread Pali Rohár
Here is new version (v4) of omap secure part patch: Other secure functions omap_smc1() and omap_smc2() calling instruction smc #0 but Nokia RX-51 board needs to call smc #1 for PPA access. Signed-off-by: Ivaylo Dimitrov freemangor...@abv.bg Signed-off-by: Pali Rohár pali.ro...@gmail.com --- diff

[PATCH 3/4] power: isp1704_charger: Add callback function set_current

2013-09-08 Thread Pali Rohár
This patch add callback function set_current to platform data. Driver will call this function when isp1704 change current and board provided this callback funtion in platform data. This patch is needed for Nokia RX-51 to tell bq2415x charging chip about connected wallcharger events.

[PATCH 4/4] RX-51: Add platform function and data for bq24150a charger

2013-09-08 Thread Pali Rohár
This patch will register bq24150a charger in RX-51 board data. Patch also adding platform function between isp1704 and bq2415x drivers for detecting charger type. So finally charging battery on Nokia N900 (RX-51) working automatically without any proprietary Nokia bits in userspace.

[PATCH 2/4] power: isp1704_charger: Fix driver to work with changes introduced in v3.5

2013-09-08 Thread Pali Rohár
* omap musb driver does not report USB_EVENT_ENUMERATED event anymore * omap musb driver reporting USB_EVENT_VBUS when charger is connected * read last event from phy-last_event (instead from ulpi register) * do not call wall charger detection more times Signed-off-by: Pali Rohár

[PATCH 0/4] Add support for charging battery in Nokia RX-51

2013-09-08 Thread Pali Rohár
This patch series finally bringing support for charging battery on Nokia N900 (RX-51) without any proprietary Nokia bits in userspace. Pali Rohár (4): usb: musb: Call atomic_notifier_call_chain when status is changed power: isp1704_charger: Fix driver to work with changes introduced in

[PATCH 1/4] usb: musb: Call atomic_notifier_call_chain when status is changed

2013-09-08 Thread Pali Rohár
More power supply drivers depends on vbus events and without it they not working. Power supply drivers using usb_register_notifier, so to deliver events it is needed to call atomic_notifier_call_chain. So without atomic notifier power supply driver isp1704 not retrieving vbus status and reporting

Re: Build error in torvalds kernel 3.11 for omap2plus

2013-09-08 Thread Russell King - ARM Linux
On Sun, Sep 08, 2013 at 11:34:10AM +0530, Anil Kumar wrote: scripts/kconfig/conf --silentoldconfig Kconfig CHK include/generated/uapi/linux/version.h CHK include/generated/utsrelease.h make[1]: `include/generated/mach-types.h' is up to date. CALLscripts/checksyscalls.sh

[PATCHv3] ARM: OMAP2+: am335x-bone*: add DT for BeagleBone Black

2013-09-08 Thread Koen Kooi
The BeagleBone Black is basically a regular BeagleBone with eMMC and HDMI added, so create a common dtsi both can use. IMPORTANT: booting the existing am335x-bone.dts will blow up the HDMI transceiver after a dozen boots with an uSD card inserted because LDO will be at 3.3V instead of 1.8.

[RFC PATCH 4/4] ARM: dts: am33xx: adopt to cpsw-phy-sel driver to configure phy mode

2013-09-08 Thread Mugunthan V N
Add DT entries for the phy mode selection in AM33xx SoC using cpsw-phy-sel driver. Signed-off-by: Mugunthan V N mugunthan...@ti.com --- arch/arm/boot/dts/am33xx.dtsi | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi index

[RFC PATCH 0/4] cpsw: support for control module register

2013-09-08 Thread Mugunthan V N
This patch series adds the support for configuring GMII_SEL register of control module to select the phy mode type and also to configure the clock source for RMII phy mode whether to use internal clock or the external clock from the phy itself. Till now CPSW works as this configuration is done in

[RFC PATCH 3/4] drivers: net: cpsw: use cpsw-phy-sel driver to configure phy mode

2013-09-08 Thread Mugunthan V N
Phy mode can be configured via the cpsw-phy-sel driver, this patch enabled the cpsw driver to utilise the api provided by the cpsw-phy-sel driver to configure the phy mode. Signed-off-by: Mugunthan V N mugunthan...@ti.com --- drivers/net/ethernet/ti/cpsw.c | 4 1 file changed, 4

[RFC PATCH 2/4] drivers: net: cpsw-phy-sel: Add new driver for phy mode selection for cpsw

2013-09-08 Thread Mugunthan V N
The cpsw currently lacks code to properly set up the hardware interface mode on AM33xx. Other platforms might be equally affected. Usually, the bootloader will configure the control module register, so probably that's why such support wasn't needed in the past. In suspend mode though, this

[RFC PATCH 1/4] net: ethernet: cpsw: switch to devres allocations

2013-09-08 Thread Mugunthan V N
From: Daniel Mack zon...@gmail.com This patch cleans up the allocation and error unwind paths, which allows us to carry less information in struct cpsw_priv and reduce the amount of jump labels in the probe functions. Signed-off-by: Daniel Mack zon...@gmail.com Acked-by: Mugunthan V N

Re: Build error in torvalds kernel 3.11 for omap2plus

2013-09-08 Thread Guenter Roeck
On 09/08/2013 02:02 AM, Russell King - ARM Linux wrote: On Sun, Sep 08, 2013 at 11:34:10AM +0530, Anil Kumar wrote: scripts/kconfig/conf --silentoldconfig Kconfig CHK include/generated/uapi/linux/version.h CHK include/generated/utsrelease.h make[1]:

Re: [RFC PATCH 4/4] ARM: dts: am33xx: adopt to cpsw-phy-sel driver to configure phy mode

2013-09-08 Thread Sergei Shtylyov
Hello. On 09/08/2013 03:23 PM, Mugunthan V N wrote: Add DT entries for the phy mode selection in AM33xx SoC using cpsw-phy-sel driver. Signed-off-by: Mugunthan V N mugunthan...@ti.com --- arch/arm/boot/dts/am33xx.dtsi | 6 ++ 1 file changed, 6 insertions(+) diff --git

Клиентские базы тeл +79IЗ79З63Ч2

2013-09-08 Thread linux-omap
-- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html