* [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig
@ 2012-12-14 5:32 AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 1/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65217 PMIC AnilKumar Ch
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:32 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.
Changes from v1:
- Incorporated martinez javier's comments on v1
* Enabled few more triggers in omap2plus_defconfig
- Included Igor's patch, which modifies the omap2plus
defconfig for AM33XX 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
Igor Mazanov (1):
ARM: OMAP2+: omap2plus_defconfig: Enable tps65217 PMIC
arch/arm/configs/omap2plus_defconfig | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
--
1.7.9.5
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2 1/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65217 PMIC
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
@ 2012-12-14 5:32 ` AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 2/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC AnilKumar Ch
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:32 UTC (permalink / raw)
To: linux-arm-kernel
From: Igor Mazanov <i.mazanov@gmail.com>
The BeagleBone platform uses TPS65217 PMIC to control voltages
on the board. This patch enables TPS65217 MFD and regulator
drivers in omap2plus_defconfig.
Signed-off-by: Igor Mazanov <i.mazanov@gmail.com>
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 a1dc5c0..19b7311 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -132,9 +132,11 @@ CONFIG_POWER_SUPPLY=y
CONFIG_WATCHDOG=y
CONFIG_OMAP_WATCHDOG=y
CONFIG_TWL4030_WATCHDOG=y
+CONFIG_MFD_TPS65217=y
CONFIG_REGULATOR_TWL4030=y
CONFIG_REGULATOR_TPS65023=y
CONFIG_REGULATOR_TPS6507X=y
+CONFIG_REGULATOR_TPS65217=y
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_MODE_HELPERS=y
--
1.7.9.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 2/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 1/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65217 PMIC AnilKumar Ch
@ 2012-12-14 5:32 ` AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 3/8] ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer AnilKumar Ch
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:32 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 19b7311..27bf465 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -133,10 +133,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] 9+ messages in thread
* [PATCH v2 3/8] ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 1/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65217 PMIC AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 2/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC AnilKumar Ch
@ 2012-12-14 5:32 ` AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 4/8] ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor AnilKumar Ch
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:32 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 27bf465..417a320 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -81,6 +81,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] 9+ messages in thread
* [PATCH v2 4/8] ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
` (2 preceding siblings ...)
2012-12-14 5:32 ` [PATCH v2 3/8] ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer AnilKumar Ch
@ 2012-12-14 5:33 ` AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 5/8] ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver AnilKumar Ch
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:33 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 417a320..f0d6afb 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -82,6 +82,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] 9+ messages in thread
* [PATCH v2 5/8] ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
` (3 preceding siblings ...)
2012-12-14 5:33 ` [PATCH v2 4/8] ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor AnilKumar Ch
@ 2012-12-14 5:33 ` AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 6/8] ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor AnilKumar Ch
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:33 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 f0d6afb..c004d9b 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -109,6 +109,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] 9+ messages in thread
* [PATCH v2 6/8] ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
` (4 preceding siblings ...)
2012-12-14 5:33 ` [PATCH v2 5/8] ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver AnilKumar Ch
@ 2012-12-14 5:33 ` AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 7/8] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 8/8] ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller AnilKumar Ch
7 siblings, 0 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:33 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 c004d9b..e1d2385 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -133,6 +133,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] 9+ messages in thread
* [PATCH v2 7/8] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
` (5 preceding siblings ...)
2012-12-14 5:33 ` [PATCH v2 6/8] ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor AnilKumar Ch
@ 2012-12-14 5:33 ` AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 8/8] ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller AnilKumar Ch
7 siblings, 0 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:33 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
different TRIGGERS like TRIGGER_TIMER, TRIGGER_HEARTBEAT and etc.
Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
---
arch/arm/configs/omap2plus_defconfig | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index e1d2385..b0ad0b0 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -200,6 +200,16 @@ 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_ONESHOT=y
+CONFIG_LEDS_TRIGGER_HEARTBEAT=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=y
+CONFIG_LEDS_TRIGGER_CPU=y
+CONFIG_LEDS_TRIGGER_GPIO=y
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_DRV_TWL92330=y
CONFIG_RTC_DRV_TWL4030=y
--
1.7.9.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 8/8] ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
` (6 preceding siblings ...)
2012-12-14 5:33 ` [PATCH v2 7/8] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver AnilKumar Ch
@ 2012-12-14 5:33 ` AnilKumar Ch
7 siblings, 0 replies; 9+ messages in thread
From: AnilKumar Ch @ 2012-12-14 5:33 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 b0ad0b0..0ce6771 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -52,6 +52,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] 9+ messages in thread
end of thread, other threads:[~2012-12-14 5:33 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-14 5:32 [PATCH v2 0/8] ARM: OMAP2+: AM33XX: Enable few drivers in omap2plus_defconfig AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 1/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65217 PMIC AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 2/8] ARM: OMAP2+: omap2plus_defconfig: Enable tps65910 PMIC AnilKumar Ch
2012-12-14 5:32 ` [PATCH v2 3/8] ARM: OMAP2+: omap2plus_defconfig: Enable lis3lv02d accelerometer AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 4/8] ARM: OMAP2+: omap2plus_defconfig: Enable tsl2550 ambient light sensor AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 5/8] ARM: OMAP2+: omap2plus_defconfig: Enable matrix keypad driver AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 6/8] ARM: OMAP2+: omap2plus_defconfig: Enable tmp275 sensor AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 7/8] ARM: OMAP2+: omap2plus_defconfig: Enable leds-gpio driver AnilKumar Ch
2012-12-14 5:33 ` [PATCH v2 8/8] ARM: OMAP2+: omap2plus_defconfig: Enable DCAN controller AnilKumar Ch
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).