Commit f7efdad0 authored by Olof Johansson's avatar Olof Johansson

Merge tag 'omap-fixes-against-v3.18-rc4' of...

Merge tag 'omap-fixes-against-v3.18-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into fixes

Merge "omap fixes against v3.18-rc4" from Tony Lindgren:

Few omap fixes for hangs and wrong pinctrl defines, and update
MAINTAINERS file to avoid missing PMIC and SoC related patches:

- Fix random hangs on am437x because of incorrect default
  value for the DDR regulator

- Fix wrong partition name for NAND on am335x-evm

- Fix wrong pinctrl defines for dra7xx

- Update maintainers entries for PMICs and SoCs

* tag 'omap-fixes-against-v3.18-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap:
  pinctrl: dra: dt-bindings: Fix output pull up/down
  MAINTAINERS: Update entry for omap related .dts files to cover new SoCs
  MAINTAINERS: add more files under OMAP SUPPORT
  ARM: dts: AM437x-SK-EVM: Fix DCDC3 voltage
  ARM: dts: AM437x-GP-EVM: Fix DCDC3 voltage
  ARM: dts: AM43x-EPOS-EVM: Fix DCDC3 voltage
  ARM: dts: am335x-evm: Fix 5th NAND partition's name
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents ae8f5041 73b3a665
...@@ -6596,6 +6596,23 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git ...@@ -6596,6 +6596,23 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
S: Maintained S: Maintained
F: arch/arm/*omap*/ F: arch/arm/*omap*/
F: drivers/i2c/busses/i2c-omap.c F: drivers/i2c/busses/i2c-omap.c
F: drivers/irqchip/irq-omap-intc.c
F: drivers/mfd/*omap*.c
F: drivers/mfd/menelaus.c
F: drivers/mfd/palmas.c
F: drivers/mfd/tps65217.c
F: drivers/mfd/tps65218.c
F: drivers/mfd/tps65910.c
F: drivers/mfd/twl-core.[ch]
F: drivers/mfd/twl4030*.c
F: drivers/mfd/twl6030*.c
F: drivers/mfd/twl6040*.c
F: drivers/regulator/palmas-regulator*.c
F: drivers/regulator/pbias-regulator.c
F: drivers/regulator/tps65217-regulator.c
F: drivers/regulator/tps65218-regulator.c
F: drivers/regulator/tps65910-regulator.c
F: drivers/regulator/twl-regulator.c
F: include/linux/i2c-omap.h F: include/linux/i2c-omap.h
OMAP DEVICE TREE SUPPORT OMAP DEVICE TREE SUPPORT
...@@ -6606,6 +6623,9 @@ L: devicetree@vger.kernel.org ...@@ -6606,6 +6623,9 @@ L: devicetree@vger.kernel.org
S: Maintained S: Maintained
F: arch/arm/boot/dts/*omap* F: arch/arm/boot/dts/*omap*
F: arch/arm/boot/dts/*am3* F: arch/arm/boot/dts/*am3*
F: arch/arm/boot/dts/*am4*
F: arch/arm/boot/dts/*am5*
F: arch/arm/boot/dts/*dra7*
OMAP CLOCK FRAMEWORK SUPPORT OMAP CLOCK FRAMEWORK SUPPORT
M: Paul Walmsley <paul@pwsan.com> M: Paul Walmsley <paul@pwsan.com>
......
...@@ -489,7 +489,7 @@ partition@3 { ...@@ -489,7 +489,7 @@ partition@3 {
reg = <0x00060000 0x00020000>; reg = <0x00060000 0x00020000>;
}; };
partition@4 { partition@4 {
label = "NAND.u-boot-spl"; label = "NAND.u-boot-spl-os";
reg = <0x00080000 0x00040000>; reg = <0x00080000 0x00040000>;
}; };
partition@5 { partition@5 {
......
...@@ -291,8 +291,8 @@ dcdc2: regulator-dcdc2 { ...@@ -291,8 +291,8 @@ dcdc2: regulator-dcdc2 {
dcdc3: regulator-dcdc3 { dcdc3: regulator-dcdc3 {
compatible = "ti,tps65218-dcdc3"; compatible = "ti,tps65218-dcdc3";
regulator-name = "vdcdc3"; regulator-name = "vdcdc3";
regulator-min-microvolt = <1350000>; regulator-min-microvolt = <1500000>;
regulator-max-microvolt = <1350000>; regulator-max-microvolt = <1500000>;
regulator-boot-on; regulator-boot-on;
regulator-always-on; regulator-always-on;
}; };
......
...@@ -363,8 +363,8 @@ dcdc2: regulator-dcdc2 { ...@@ -363,8 +363,8 @@ dcdc2: regulator-dcdc2 {
dcdc3: regulator-dcdc3 { dcdc3: regulator-dcdc3 {
compatible = "ti,tps65218-dcdc3"; compatible = "ti,tps65218-dcdc3";
regulator-name = "vdds_ddr"; regulator-name = "vdds_ddr";
regulator-min-microvolt = <1350000>; regulator-min-microvolt = <1500000>;
regulator-max-microvolt = <1350000>; regulator-max-microvolt = <1500000>;
regulator-boot-on; regulator-boot-on;
regulator-always-on; regulator-always-on;
}; };
......
...@@ -358,8 +358,8 @@ dcdc2: regulator-dcdc2 { ...@@ -358,8 +358,8 @@ dcdc2: regulator-dcdc2 {
dcdc3: regulator-dcdc3 { dcdc3: regulator-dcdc3 {
compatible = "ti,tps65218-dcdc3"; compatible = "ti,tps65218-dcdc3";
regulator-name = "vdcdc3"; regulator-name = "vdcdc3";
regulator-min-microvolt = <1350000>; regulator-min-microvolt = <1500000>;
regulator-max-microvolt = <1350000>; regulator-max-microvolt = <1500000>;
regulator-boot-on; regulator-boot-on;
regulator-always-on; regulator-always-on;
}; };
......
...@@ -40,8 +40,8 @@ ...@@ -40,8 +40,8 @@
/* Active pin states */ /* Active pin states */
#define PIN_OUTPUT (0 | PULL_DIS) #define PIN_OUTPUT (0 | PULL_DIS)
#define PIN_OUTPUT_PULLUP (PIN_OUTPUT | PULL_ENA | PULL_UP) #define PIN_OUTPUT_PULLUP (PULL_UP)
#define PIN_OUTPUT_PULLDOWN (PIN_OUTPUT | PULL_ENA) #define PIN_OUTPUT_PULLDOWN (0)
#define PIN_INPUT (INPUT_EN | PULL_DIS) #define PIN_INPUT (INPUT_EN | PULL_DIS)
#define PIN_INPUT_SLEW (INPUT_EN | SLEWCONTROL) #define PIN_INPUT_SLEW (INPUT_EN | SLEWCONTROL)
#define PIN_INPUT_PULLUP (PULL_ENA | INPUT_EN | PULL_UP) #define PIN_INPUT_PULLUP (PULL_ENA | INPUT_EN | PULL_UP)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment