linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig
@ 2012-11-21  6:59 AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 1/7] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC AnilKumar Ch
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: AnilKumar Ch @ 2012-11-21  6:59 UTC (permalink / raw)
  To: linux-arm-kernel

This patch series enable tps65910, lis3lv02d accelerometer, tsl2550
ambient light sensor, matrix keypad, tmp275 temperature sensor, gpio
leds and D_CAN drivers in omap2plus_defconfig.

These are the peripherals present in AM33XX family of devices.

AnilKumar Ch (7):
  ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC
  ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer
  ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor
  ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver
  ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor
  ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver
  ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller

 arch/arm/configs/omap2plus_defconfig |   17 +++++++++++++++++
 1 file changed, 17 insertions(+)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/7] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC
  2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
@ 2012-11-21  6:59 ` AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 2/7] ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer AnilKumar Ch
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: AnilKumar Ch @ 2012-11-21  6:59 UTC (permalink / raw)
  To: linux-arm-kernel

AM335X-EVM and AM335X-EVMSK devices have tps65910 PMIC regulator, one
has to manually enable this support to use regulators. So this patch
enables tps65910 mfd and regulator driver in omap2plus_defconfig.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index b0563dc..2cf6d0e 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -135,10 +135,12 @@ CONFIG_WATCHDOG=y
 CONFIG_OMAP_WATCHDOG=y
 CONFIG_TWL4030_WATCHDOG=y
 CONFIG_MFD_TPS65217=y
+CONFIG_MFD_TPS65910=y
 CONFIG_REGULATOR_TWL4030=y
 CONFIG_REGULATOR_TPS65023=y
 CONFIG_REGULATOR_TPS6507X=y
 CONFIG_REGULATOR_TPS65217=y
+CONFIG_REGULATOR_TPS65910=y
 CONFIG_FB=y
 CONFIG_FIRMWARE_EDID=y
 CONFIG_FB_MODE_HELPERS=y
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/7] ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer
  2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 1/7] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC AnilKumar Ch
@ 2012-11-21  6:59 ` AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 3/7] ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor AnilKumar Ch
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: AnilKumar Ch @ 2012-11-21  6:59 UTC (permalink / raw)
  To: linux-arm-kernel

AM335X-EVM and AM335X-EVMSK devices have lis331dlh accelerometer, one
has to manually enable this support to use accelerometer. So this patch
enables lis3lv02d driver in omap2plus_defconfig.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 2cf6d0e..c69c08d 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -83,6 +83,8 @@ CONFIG_MTD_UBI=y
 CONFIG_BLK_DEV_LOOP=y
 CONFIG_BLK_DEV_RAM=y
 CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_SENSORS_LIS3LV02D=y
+CONFIG_SENSORS_LIS3_I2C=y
 CONFIG_SCSI=y
 CONFIG_BLK_DEV_SD=y
 CONFIG_SCSI_MULTI_LUN=y
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 3/7] ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor
  2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 1/7] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 2/7] ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer AnilKumar Ch
@ 2012-11-21  6:59 ` AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 4/7] ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver AnilKumar Ch
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: AnilKumar Ch @ 2012-11-21  6:59 UTC (permalink / raw)
  To: linux-arm-kernel

AM335x-evm device have tsl2550 ambient light sensor, one has to
manually enable this support to use light sensor. So this patch
enables tsl2550 driver in omap2plus_defconfig.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index c69c08d..cf08365 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -84,6 +84,7 @@ CONFIG_BLK_DEV_LOOP=y
 CONFIG_BLK_DEV_RAM=y
 CONFIG_BLK_DEV_RAM_SIZE=16384
 CONFIG_SENSORS_LIS3LV02D=y
+CONFIG_SENSORS_TSL2550=y
 CONFIG_SENSORS_LIS3_I2C=y
 CONFIG_SCSI=y
 CONFIG_BLK_DEV_SD=y
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 4/7] ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver
  2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
                   ` (2 preceding siblings ...)
  2012-11-21  6:59 ` [PATCH 3/7] ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor AnilKumar Ch
@ 2012-11-21  6:59 ` AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 5/7] ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor AnilKumar Ch
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: AnilKumar Ch @ 2012-11-21  6:59 UTC (permalink / raw)
  To: linux-arm-kernel

AM335X-EVM device have 3x2 matrix keypad, one has to manually enable
this support to use matrix keypad. So this patch enables matrix keypad
driver in omap2plus_defconfig.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index cf08365..9f9a637 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -111,6 +111,7 @@ CONFIG_USB_KC2190=y
 CONFIG_INPUT_JOYDEV=y
 CONFIG_INPUT_EVDEV=y
 CONFIG_KEYBOARD_GPIO=y
+CONFIG_KEYBOARD_MATRIX=y
 CONFIG_KEYBOARD_TWL4030=y
 CONFIG_INPUT_TOUCHSCREEN=y
 CONFIG_TOUCHSCREEN_ADS7846=y
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 5/7] ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor
  2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
                   ` (3 preceding siblings ...)
  2012-11-21  6:59 ` [PATCH 4/7] ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver AnilKumar Ch
@ 2012-11-21  6:59 ` AnilKumar Ch
  2012-11-21  6:59 ` [PATCH 6/7] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver AnilKumar Ch
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: AnilKumar Ch @ 2012-11-21  6:59 UTC (permalink / raw)
  To: linux-arm-kernel

AM335x-evm device have temperature sensor, one has to manually
enable this support to use of temperature sensor. So this patch
enables tmp275 driver in omap2plus_defconfig.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 9f9a637..133f04a 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -135,6 +135,7 @@ CONFIG_GPIO_SYSFS=y
 CONFIG_GPIO_TWL4030=y
 CONFIG_W1=y
 CONFIG_POWER_SUPPLY=y
+CONFIG_SENSORS_LM75=y
 CONFIG_WATCHDOG=y
 CONFIG_OMAP_WATCHDOG=y
 CONFIG_TWL4030_WATCHDOG=y
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 6/7] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver
  2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
                   ` (4 preceding siblings ...)
  2012-11-21  6:59 ` [PATCH 5/7] ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor AnilKumar Ch
@ 2012-11-21  6:59 ` AnilKumar Ch
  2012-11-26  8:29   ` Javier Martinez Canillas
  2012-11-21  6:59 ` [PATCH 7/7] ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller AnilKumar Ch
  2012-12-14 18:09 ` [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig Tony Lindgren
  7 siblings, 1 reply; 12+ messages in thread
From: AnilKumar Ch @ 2012-11-21  6:59 UTC (permalink / raw)
  To: linux-arm-kernel

AM335X-EVMSK and AM335X-BONE devices have gpio controlled user leds,
one has to manually enable this support to use user leds. So this
patch enables gpio-leds driver in omap2plus_defconfig. Also enables
TRIGGER_TIMER and TRIGGER_HEARTBEAT.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 133f04a..5e1a763 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -202,6 +202,11 @@ CONFIG_MMC_UNSAFE_RESUME=y
 CONFIG_SDIO_UART=y
 CONFIG_MMC_OMAP=y
 CONFIG_MMC_OMAP_HS=y
+CONFIG_NEW_LEDS=y
+CONFIG_LEDS_GPIO=y
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_TIMER=y
+CONFIG_LEDS_TRIGGER_HEARTBEAT=y
 CONFIG_RTC_CLASS=y
 CONFIG_RTC_DRV_OMAP=y
 CONFIG_RTC_DRV_TWL92330=y
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 7/7] ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller
  2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
                   ` (5 preceding siblings ...)
  2012-11-21  6:59 ` [PATCH 6/7] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver AnilKumar Ch
@ 2012-11-21  6:59 ` AnilKumar Ch
  2012-12-14 18:09 ` [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig Tony Lindgren
  7 siblings, 0 replies; 12+ messages in thread
From: AnilKumar Ch @ 2012-11-21  6:59 UTC (permalink / raw)
  To: linux-arm-kernel

AM335X-EVM has BOSCH DCAN controller, one has to manually enable
this support to use of DCAN controller. So this patch enables DCAN
driver in omap2plus_defconfig.

Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 5e1a763..d79f9c3 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -54,6 +54,11 @@ CONFIG_IP_PNP_RARP=y
 # CONFIG_INET_LRO is not set
 # CONFIG_IPV6 is not set
 CONFIG_NETFILTER=y
+CONFIG_CAN=y
+CONFIG_CAN_RAW=y
+CONFIG_CAN_BCM=y
+CONFIG_CAN_C_CAN=y
+CONFIG_CAN_C_CAN_PLATFORM=y
 CONFIG_BT=m
 CONFIG_BT_HCIUART=m
 CONFIG_BT_HCIUART_H4=y
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 6/7] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver
  2012-11-21  6:59 ` [PATCH 6/7] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver AnilKumar Ch
@ 2012-11-26  8:29   ` Javier Martinez Canillas
  2012-11-26  9:17     ` AnilKumar, Chimata
  0 siblings, 1 reply; 12+ messages in thread
From: Javier Martinez Canillas @ 2012-11-26  8:29 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Nov 21, 2012 at 7:59 AM, AnilKumar Ch <anilkumar@ti.com> wrote:
> AM335X-EVMSK and AM335X-BONE devices have gpio controlled user leds,
> one has to manually enable this support to use user leds. So this
> patch enables gpio-leds driver in omap2plus_defconfig. Also enables
> TRIGGER_TIMER and TRIGGER_HEARTBEAT.
>
> Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
> ---
>  arch/arm/configs/omap2plus_defconfig |    5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
> index 133f04a..5e1a763 100644
> --- a/arch/arm/configs/omap2plus_defconfig
> +++ b/arch/arm/configs/omap2plus_defconfig
> @@ -202,6 +202,11 @@ CONFIG_MMC_UNSAFE_RESUME=y
>  CONFIG_SDIO_UART=y
>  CONFIG_MMC_OMAP=y
>  CONFIG_MMC_OMAP_HS=y
> +CONFIG_NEW_LEDS=y
> +CONFIG_LEDS_GPIO=y
> +CONFIG_LEDS_TRIGGERS=y
> +CONFIG_LEDS_TRIGGER_TIMER=y
> +CONFIG_LEDS_TRIGGER_HEARTBEAT=y
>  CONFIG_RTC_CLASS=y
>  CONFIG_RTC_DRV_OMAP=y
>  CONFIG_RTC_DRV_TWL92330=y
> --
> 1.7.9.5
>

Hi AnilKumar,

Your patch looks good to me but I would enable
CONFIG_LEDS_TRIGGER_DEFAULT_ON too
since this seems to be a very popular trigger used on many boards.

But this could be made on a follow up patch too, so is your call.

Best regards,
Javier

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 6/7] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver
  2012-11-26  8:29   ` Javier Martinez Canillas
@ 2012-11-26  9:17     ` AnilKumar, Chimata
  0 siblings, 0 replies; 12+ messages in thread
From: AnilKumar, Chimata @ 2012-11-26  9:17 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Nov 26, 2012 at 13:59:24, Javier Martinez Canillas wrote:
> On Wed, Nov 21, 2012 at 7:59 AM, AnilKumar Ch <anilkumar@ti.com> wrote:
> > AM335X-EVMSK and AM335X-BONE devices have gpio controlled user leds,
> > one has to manually enable this support to use user leds. So this
> > patch enables gpio-leds driver in omap2plus_defconfig. Also enables
> > TRIGGER_TIMER and TRIGGER_HEARTBEAT.
> >
> > Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
> > ---
> >  arch/arm/configs/omap2plus_defconfig |    5 +++++
> >  1 file changed, 5 insertions(+)
> >
> > diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
> > index 133f04a..5e1a763 100644
> > --- a/arch/arm/configs/omap2plus_defconfig
> > +++ b/arch/arm/configs/omap2plus_defconfig
> > @@ -202,6 +202,11 @@ CONFIG_MMC_UNSAFE_RESUME=y
> >  CONFIG_SDIO_UART=y
> >  CONFIG_MMC_OMAP=y
> >  CONFIG_MMC_OMAP_HS=y
> > +CONFIG_NEW_LEDS=y
> > +CONFIG_LEDS_GPIO=y
> > +CONFIG_LEDS_TRIGGERS=y
> > +CONFIG_LEDS_TRIGGER_TIMER=y
> > +CONFIG_LEDS_TRIGGER_HEARTBEAT=y
> >  CONFIG_RTC_CLASS=y
> >  CONFIG_RTC_DRV_OMAP=y
> >  CONFIG_RTC_DRV_TWL92330=y
> > --
> > 1.7.9.5
> >
> 
> Hi AnilKumar,
> 
> Your patch looks good to me but I would enable
> CONFIG_LEDS_TRIGGER_DEFAULT_ON too
> since this seems to be a very popular trigger used on many boards.
> 
> But this could be made on a follow up patch too, so is your call.

I will submit v2 (with this change) in few days. I am waiting
for review comments on other patches in this series.

Thanks
AnilKumar

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig
  2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
                   ` (6 preceding siblings ...)
  2012-11-21  6:59 ` [PATCH 7/7] ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller AnilKumar Ch
@ 2012-12-14 18:09 ` Tony Lindgren
  2013-01-02 10:11   ` AnilKumar, Chimata
  7 siblings, 1 reply; 12+ messages in thread
From: Tony Lindgren @ 2012-12-14 18:09 UTC (permalink / raw)
  To: linux-arm-kernel

* AnilKumar Ch <anilkumar@ti.com> [121120 23:01]:
> This patch series enable tps65910, lis3lv02d accelerometer, tsl2550
> ambient light sensor, matrix keypad, tmp275 temperature sensor, gpio
> leds and D_CAN drivers in omap2plus_defconfig.
> 
> These are the peripherals present in AM33XX family of devices.
> 
> AnilKumar Ch (7):
>   ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC
>   ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer
>   ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor
>   ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver
>   ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor
>   ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver
>   ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller
> 
>  arch/arm/configs/omap2plus_defconfig |   17 +++++++++++++++++
>  1 file changed, 17 insertions(+)

Let's make all these into modules except for the tps65910.

Regards,

Tony

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig
  2012-12-14 18:09 ` [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig Tony Lindgren
@ 2013-01-02 10:11   ` AnilKumar, Chimata
  0 siblings, 0 replies; 12+ messages in thread
From: AnilKumar, Chimata @ 2013-01-02 10:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Dec 14, 2012 at 23:39:05, Tony Lindgren wrote:
> * AnilKumar Ch <anilkumar@ti.com> [121120 23:01]:
> > This patch series enable tps65910, lis3lv02d accelerometer, tsl2550
> > ambient light sensor, matrix keypad, tmp275 temperature sensor, gpio
> > leds and D_CAN drivers in omap2plus_defconfig.
> > 
> > These are the peripherals present in AM33XX family of devices.
> > 
> > AnilKumar Ch (7):
> >   ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC
> >   ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer
> >   ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor
> >   ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver
> >   ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor
> >   ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver
> >   ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller
> > 
> >  arch/arm/configs/omap2plus_defconfig |   17 +++++++++++++++++
> >  1 file changed, 17 insertions(+)
> 
> Let's make all these into modules except for the tps65910.
> 

Happy New Year Tony,

I will send the updated series with the changes. Selecting leds-gpio
driver as module is not supported, so leds-gpio driver is enabled
by default and rest of the drivers as modules.

Thanks
AnilKumar

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-01-02 10:11 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-21  6:59 [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
2012-11-21  6:59 ` [PATCH 1/7] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC AnilKumar Ch
2012-11-21  6:59 ` [PATCH 2/7] ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer AnilKumar Ch
2012-11-21  6:59 ` [PATCH 3/7] ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor AnilKumar Ch
2012-11-21  6:59 ` [PATCH 4/7] ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver AnilKumar Ch
2012-11-21  6:59 ` [PATCH 5/7] ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor AnilKumar Ch
2012-11-21  6:59 ` [PATCH 6/7] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver AnilKumar Ch
2012-11-26  8:29   ` Javier Martinez Canillas
2012-11-26  9:17     ` AnilKumar, Chimata
2012-11-21  6:59 ` [PATCH 7/7] ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller AnilKumar Ch
2012-12-14 18:09 ` [PATCH 0/7] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig Tony Lindgren
2013-01-02 10:11   ` AnilKumar, Chimata

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).