* [PATCH 0/2] Fixes for STi SOCs
@ 2013-09-17 9:26 Srinivas KANDAGATLA
2013-09-17 9:27 ` [PATCH 1/2] ARM: STi: OF: Fix a typo in pincfg header Srinivas KANDAGATLA
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Srinivas KANDAGATLA @ 2013-09-17 9:26 UTC (permalink / raw)
To: linux-arm-kernel
From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Hi Arnd/Olof,
These two are very minor fixes for STi SOCs.
One of the fix is a typo and other is to add two new options to
multi_v7_defconfig to get STi SOC based boards boot with nfs root with serial
console.
These patches are based on v3.12-rc1.
Thanks,
srini
Srinivas Kandagatla (2):
ARM: STi: OF: Fix a typo in pincfg header
ARM: multi_v7_defconfig: Fix STi support
arch/arm/boot/dts/st-pincfg.h | 2 +-
arch/arm/configs/multi_v7_defconfig | 3 +++
2 files changed, 4 insertions(+), 1 deletions(-)
--
1.7.6.5
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] ARM: STi: OF: Fix a typo in pincfg header
2013-09-17 9:26 [PATCH 0/2] Fixes for STi SOCs Srinivas KANDAGATLA
@ 2013-09-17 9:27 ` Srinivas KANDAGATLA
2013-09-17 9:27 ` [PATCH 2/2] ARM: multi_v7_defconfig: Fix STi support Srinivas KANDAGATLA
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Srinivas KANDAGATLA @ 2013-09-17 9:27 UTC (permalink / raw)
To: linux-arm-kernel
From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
This patch fixes a typo for OD define in st-pincfg header file.
Reported-by: Maxime Coquelin <maxime.coquelin@st.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
---
arch/arm/boot/dts/st-pincfg.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/boot/dts/st-pincfg.h b/arch/arm/boot/dts/st-pincfg.h
index 8c45d85..4851c38 100644
--- a/arch/arm/boot/dts/st-pincfg.h
+++ b/arch/arm/boot/dts/st-pincfg.h
@@ -15,7 +15,7 @@
/* Pull Up */
#define PU (1 << 26)
/* Open Drain */
-#define OD (1 << 26)
+#define OD (1 << 25)
#define RT (1 << 23)
#define INVERTCLK (1 << 22)
#define CLKNOTDATA (1 << 21)
--
1.7.6.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] ARM: multi_v7_defconfig: Fix STi support
2013-09-17 9:26 [PATCH 0/2] Fixes for STi SOCs Srinivas KANDAGATLA
2013-09-17 9:27 ` [PATCH 1/2] ARM: STi: OF: Fix a typo in pincfg header Srinivas KANDAGATLA
@ 2013-09-17 9:27 ` Srinivas KANDAGATLA
2013-09-19 12:03 ` [PATCH 0/2] Fixes for STi SOCs Lee Jones
2013-11-14 10:36 ` srinivas kandagatla
3 siblings, 0 replies; 5+ messages in thread
From: Srinivas KANDAGATLA @ 2013-09-17 9:27 UTC (permalink / raw)
To: linux-arm-kernel
From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
This patch adds ST serial driver (st-asc) and ICPLUS ethernet PHY to
multi_v7_defconfig. All STi based SOCs use this as ST-ASC as default
serial console, and most of the STi SOC based boards have ICPLUS
external ethernet PHY. These two options makes the system boot with nfs
root and console.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
---
arch/arm/configs/multi_v7_defconfig | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 6e572c6..49bec9c 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -65,6 +65,7 @@ CONFIG_NET_CALXEDA_XGMAC=y
CONFIG_KS8851=y
CONFIG_SMSC911X=y
CONFIG_STMMAC_ETH=y
+CONFIG_ICPLUS_PHY=y
CONFIG_MDIO_SUN4I=y
CONFIG_KEYBOARD_SPEAR=y
CONFIG_SERIO_AMBAKMI=y
@@ -87,6 +88,8 @@ CONFIG_SERIAL_XILINX_PS_UART=y
CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y
CONFIG_SERIAL_FSL_LPUART=y
CONFIG_SERIAL_FSL_LPUART_CONSOLE=y
+CONFIG_SERIAL_ST_ASC=y
+CONFIG_SERIAL_ST_ASC_CONSOLE=y
CONFIG_I2C_DESIGNWARE_PLATFORM=y
CONFIG_I2C_SIRF=y
CONFIG_I2C_TEGRA=y
--
1.7.6.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 0/2] Fixes for STi SOCs
2013-09-17 9:26 [PATCH 0/2] Fixes for STi SOCs Srinivas KANDAGATLA
2013-09-17 9:27 ` [PATCH 1/2] ARM: STi: OF: Fix a typo in pincfg header Srinivas KANDAGATLA
2013-09-17 9:27 ` [PATCH 2/2] ARM: multi_v7_defconfig: Fix STi support Srinivas KANDAGATLA
@ 2013-09-19 12:03 ` Lee Jones
2013-11-14 10:36 ` srinivas kandagatla
3 siblings, 0 replies; 5+ messages in thread
From: Lee Jones @ 2013-09-19 12:03 UTC (permalink / raw)
To: linux-arm-kernel
> Hi Arnd/Olof,
>
> These two are very minor fixes for STi SOCs.
> One of the fix is a typo and other is to add two new options to
> multi_v7_defconfig to get STi SOC based boards boot with nfs root with serial
> console.
If these are accepted, it would be a massive help to get them into
v3.12.
> Srinivas Kandagatla (2):
> ARM: STi: OF: Fix a typo in pincfg header
> ARM: multi_v7_defconfig: Fix STi support
>
> arch/arm/boot/dts/st-pincfg.h | 2 +-
> arch/arm/configs/multi_v7_defconfig | 3 +++
> 2 files changed, 4 insertions(+), 1 deletions(-)
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org ? Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 0/2] Fixes for STi SOCs
2013-09-17 9:26 [PATCH 0/2] Fixes for STi SOCs Srinivas KANDAGATLA
` (2 preceding siblings ...)
2013-09-19 12:03 ` [PATCH 0/2] Fixes for STi SOCs Lee Jones
@ 2013-11-14 10:36 ` srinivas kandagatla
3 siblings, 0 replies; 5+ messages in thread
From: srinivas kandagatla @ 2013-11-14 10:36 UTC (permalink / raw)
To: linux-arm-kernel
Hi Arnd/Olof,
I think, these patches some how missed 3.13 window.
Can you please consider these fixes at least for 3.13-rc1?
Without these patches we can not get the serial output with
multi_v7_defconfig on STi SOCs.
Thanks,
srini
On 17/09/13 10:26, Srinivas KANDAGATLA wrote:
> From: Srinivas Kandagatla <srinivas.kandagatla@st.com>
>
> Hi Arnd/Olof,
>
> These two are very minor fixes for STi SOCs.
> One of the fix is a typo and other is to add two new options to
> multi_v7_defconfig to get STi SOC based boards boot with nfs root with serial
> console.
>
> These patches are based on v3.12-rc1.
>
> Thanks,
> srini
>
> Srinivas Kandagatla (2):
> ARM: STi: OF: Fix a typo in pincfg header
> ARM: multi_v7_defconfig: Fix STi support
>
> arch/arm/boot/dts/st-pincfg.h | 2 +-
> arch/arm/configs/multi_v7_defconfig | 3 +++
> 2 files changed, 4 insertions(+), 1 deletions(-)
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-11-14 10:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-17 9:26 [PATCH 0/2] Fixes for STi SOCs Srinivas KANDAGATLA
2013-09-17 9:27 ` [PATCH 1/2] ARM: STi: OF: Fix a typo in pincfg header Srinivas KANDAGATLA
2013-09-17 9:27 ` [PATCH 2/2] ARM: multi_v7_defconfig: Fix STi support Srinivas KANDAGATLA
2013-09-19 12:03 ` [PATCH 0/2] Fixes for STi SOCs Lee Jones
2013-11-14 10:36 ` srinivas kandagatla
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox