[U-Boot][PATCH v2] board: stm32mp1: add splash screen with stmicroelectronics logo

2023-08-16 Thread patrice.chotard
From: Patrick Delaunay Display the STMicroelectronics logo with features VIDEO_LOGO and SPLASH_SCREEN on STMicroelectronics boards. With CONFIG_SYS_VENDOR = "st", the logo st.bmp is selected, loaded at the address indicated by splashimage and centered with "splashpos=m,m". Signed-off-by: Patric

[U-Boot] [PATCH 01/21] reset: Add STi reset support

2017-03-17 Thread patrice.chotard
From: Patrice Chotard This patch adds a reset controller implementation for STMicroelectronics STi family SoCs; it allows a group of related reset like controls found in multiple system configuration registers to be represented by a single controller device. Driver code has been mainly extracted

[U-Boot] [PATCH 03/21] ARM: dts: stih410-family: Add missing reset_names for mmc1 node

2017-03-17 Thread patrice.chotard
From: Patrice Chotard reset-names property is needed to use the reset API for STi sdhci driver. Signed-off-by: Patrice Chotard --- arch/arm/dts/stih407-family.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/stih407-family.dtsi b/arch/arm/dts/stih407-family.dtsi index af66

[U-Boot] [PATCH 02/21] mmc: sti_sdhci: Rework sti_mmc_core_config()

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Use struct udevice* as input parameter. Previous parameters are retrieved through plat and priv data. This to prepare to use the reset framework. Signed-off-by: Patrice Chotard --- drivers/mmc/sti_sdhci.c | 33 ++--- 1 file changed, 18 inserti

[U-Boot] [PATCH 04/21] mmc: sti_sdhci: Use reset framework

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- drivers/mmc/sti_sdhci.c | 31 ++- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/drivers/mmc/sti_sdhci.c b/drivers/mmc/sti_sdhci.c index d6c4d67..8b1b2c0 100644 --- a/drivers/mmc/sti_sdhci.c +++

[U-Boot] [PATCH 00/21] STiH410-B2260: add reset, usb and fastboot support

2017-03-17 Thread patrice.chotard
From: Patrice Chotard This series adds : _ add reset driver _ update existing sdhci driver to use reset framework _ add usb phy driver _ add ehci support _ add ohci support _ add xhci support _ add fastboot support With all this feature ena

[U-Boot] [PATCH 10/21] usb: xhci: Add STi xhci support

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip DWC3 controller available on STMicrolectronics STiH407 family SoCs. On B2260 board, the type AB USB connector is managed by a DWC3 IP. As USB3 signals are not wired, only USB2 is supported. Signed-off-by: Patrice Chotard --- drivers/usb/host/Kconfi

[U-Boot] [PATCH 20/21] STiH410-B2260: enable CMD_GPT

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index 90de12a..4c6a0a1 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/stih41

[U-Boot] [PATCH 07/21] STiH410-B2260: enable USB related flags

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 5 + 1 file changed, 5 insertions(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index ade618f..c2c7256 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/s

[U-Boot] [PATCH 14/21] STiH410-B2260: enable DWC3 support

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index fd13ea3..6deca22 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/sti

[U-Boot] [PATCH 17/21] STiH410-B2260: enable FASTBOOT related flags

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 8 1 file changed, 8 insertions(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index 839da4d..f79173c 100644 --- a/configs/stih410-b2260_defconfig +++ b/config

[U-Boot] [PATCH 18/21] STiH410-B2260: enable OF_LIBFDT_OVERLAY

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index f79173c..83a1e3c 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/stih41

[U-Boot] [PATCH 16/21] STiH410-B2260: enable USB download gadget related flags

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 5 + 1 file changed, 5 insertions(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index 6deca22..839da4d 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/s

[U-Boot] [PATCH 21/21] STiH410-B2260: enable CMD_PART

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index 4c6a0a1..c1113fc 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/stih41

[U-Boot] [PATCH 08/21] usb: ohci: Add STi ohci support

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip ohci controller available on STMicrolectronics SoCs. Ohci support will be then available on both type A USB 2.0 connectors. Signed-off-by: Patrice Chotard --- drivers/usb/host/Kconfig| 9 + drivers/usb/host/Makefile | 1 + drive

[U-Boot] [PATCH 19/21] STiH410-B2260: enable CMD_EXT4_WRITE

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index 83a1e3c..90de12a 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/stih41

[U-Boot] [PATCH 11/21] STiH410-B2260: enable XHCI related flags

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index 46c20e1..835f982 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/stih

[U-Boot] [PATCH 12/21] STiH410-B2260: Enabling USB Host Networking

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 2 ++ include/configs/stih410-b2260.h | 12 2 files changed, 14 insertions(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index 835f982..fd13ea3 100644 --

[U-Boot] [PATCH 05/21] phy: Add STi phy usb support

2017-03-17 Thread patrice.chotard
From: Patrice Chotard This is the generic phy driver for the picoPHY ports used by USB2 and USB3 Host controllers available on STiH407 SoC families. Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 1 + drivers/usb/Kconfig | 4 + drivers/usb/phy/Kconfig

[U-Boot] [PATCH 09/21] STiH410-B2260: enable OHCI related flags

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig index c2c7256..46c20e1 100644 --- a/configs/stih410-b2260_defconfig +++ b/configs/stih

[U-Boot] [PATCH 06/21] usb: ehci: Add STi ehci support

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip ehci controller available on STMicrolectronics SoCs. ehci support will be then available on both type A USB 2.0 connectors. Signed-off-by: Patrice Chotard --- drivers/usb/host/Kconfig| 9 + drivers/usb/host/Makefile | 1 + drivers/usb/h

[U-Boot] [PATCH 13/21] usb: dwc3: Add dwc3 support for STi

2017-03-17 Thread patrice.chotard
From: Patrice Chotard This patch adds the ST glue logic to manage the DWC3 HC on STiH407 SoC family. It configures the internal glue logic and syscfg registers. Part of this code been extracted from kernel.org driver (drivers/usb/dwc3/dwc3-st.c) Signed-off-by: Patrice Chotard --- arch/arm/inc

[U-Boot] [PATCH 15/21] board: STiH410-B2260: add fastboot support

2017-03-17 Thread patrice.chotard
From: Patrice Chotard Add usb_gadget_handle_interrupts(), board_usb_init(), board_usb_cleanup() and g_dnl_board_usb_cable_connected() callbacks needed for FASTBOOT support Signed-off-by: Patrice Chotard --- board/st/stih410-b2260/board.c | 44 ++ 1 file

[U-Boot] board: STiH410-B2260: enable caches

2017-03-20 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- board/st/stih410-b2260/board.c | 8 1 file changed, 8 insertions(+) diff --git a/board/st/stih410-b2260/board.c b/board/st/stih410-b2260/board.c index 363c016..590e8f0 100644 --- a/board/st/stih410-b2260/board.c +++ b/board/st/s

[U-Boot] [PATCH v2 04/14] mmc: sti_sdhci: Use reset framework

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard Reviewed-by: Jaehoon Chung --- drivers/mmc/sti_sdhci.c | 31 ++- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/drivers/mmc/sti_sdhci.c b/drivers/mmc/sti_sdhci.c index d6c4d67..8b1b2c0 100644 --- a

[U-Boot] [PATCH v2 05/14] phy: Add STi phy usb support

2017-03-22 Thread patrice.chotard
From: Patrice Chotard This is the generic phy driver for the picoPHY ports used by USB2 and USB3 Host controllers available on STiH407 SoC families. Signed-off-by: Patrice Chotard --- v2: replace bitfield_replace() by clrsetbits_le32() configs/stih410-b2260_defconfig | 1 + drivers/usb/Kc

[U-Boot] [PATCH v2 02/14] mmc: sti_sdhci: Rework sti_mmc_core_config()

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Use struct udevice* as input parameter. Previous parameters are retrieved through plat and priv data. This to prepare to use the reset framework. Signed-off-by: Patrice Chotard Reviewed-by: Jaehoon Chung --- drivers/mmc/sti_sdhci.c | 33 ++---

[U-Boot] [PATCH v2 11/14] usb: dwc3: Add dwc3 support for STi

2017-03-22 Thread patrice.chotard
From: Patrice Chotard This patch adds the ST glue logic to manage the DWC3 HC on STiH407 SoC family. It configures the internal glue logic and syscfg registers. Part of this code been extracted from kernel.org driver (drivers/usb/dwc3/dwc3-st.c) Signed-off-by: Patrice Chotard --- v2: _ us

[U-Boot] [PATCH v2 03/14] ARM: dts: stih410-family: Add missing reset_names for mmc1 node

2017-03-22 Thread patrice.chotard
From: Patrice Chotard reset-names property is needed to use the reset API for STi sdhci driver. Signed-off-by: Patrice Chotard Reviewed-by: Jaehoon Chung --- arch/arm/dts/stih407-family.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/stih407-family.dtsi b/arch/arm/dts/st

[U-Boot] [PATCH v2 07/14] usb: ohci: Add STi ohci support

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip ohci controller available on STMicrolectronics SoCs. Ohci support will be then available on both type A USB 2.0 connectors. Signed-off-by: Patrice Chotard --- v2: _ put board specific defines in a separate patch (patch 8) drivers/usb/host/Kc

[U-Boot] [PATCH v2 12/14] board: STiH410-B2260: add fastboot support

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Add usb_gadget_handle_interrupts(), board_usb_init(), board_usb_cleanup() and g_dnl_board_usb_cable_connected() callbacks needed for FASTBOOT support Signed-off-by: Patrice Chotard --- board/st/stih410-b2260/board.c | 44 ++ 1 file

[U-Boot] [PATCH v2 01/14] reset: Add STi reset support

2017-03-22 Thread patrice.chotard
From: Patrice Chotard This patch adds a reset controller implementation for STMicroelectronics STi family SoCs; it allows a group of related reset like controls found in multiple system configuration registers to be represented by a single controller device. Driver code has been mainly extracted

[U-Boot] [PATCH v2 08/14] board: STiH410-B2260: add OHCI related defines

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- include/configs/stih410-b2260.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index 28e2f7f..4a5da82 100644 --- a/include/configs/stih410-b2260.h +++ b/include/co

[U-Boot] [PATCH v2 10/14] board: STiH410-B2260: add XHCI related define

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- include/configs/stih410-b2260.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index 4a5da82..bbf64d7 100644 --- a/include/configs/stih410-b2260.h +++ b/include/config

[U-Boot] [PATCH v2 06/14] usb: ehci: Add STi ehci support

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip ehci controller available on STMicrolectronics SoCs. ehci support will be then available on both type A USB 2.0 connectors. Signed-off-by: Patrice Chotard --- v2: _ update error messages _ add remove callback to put core into reset d

[U-Boot] [PATCH v2 00/14] STiH410-B2260: add reset, usb and fastboot support

2017-03-22 Thread patrice.chotard
From: Patrice Chotard This series adds : _ add reset driver _ update existing sdhci driver to use reset framework _ add usb phy driver _ add ehci support _ add ohci support _ add xhci support _ add fastboot support With all this feature ena

[U-Boot] [PATCH v2 14/14] STiH410-B2260: enable USB, fastboot, reset related flags

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- v2 :_ squash patch 7,9,11,12,14,16,17,18,19,20 and 21 configs/stih410-b2260_defconfig | 35 +++ 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/configs/stih410-b2260_defconfig b/configs/

[U-Boot] [PATCH v2 09/14] usb: xhci: Add STi xhci support

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip DWC3 controller available on STMicrolectronics STiH407 family SoCs. On B2260 board, the type AB USB connector is managed by a DWC3 IP. As USB3 signals are not wired, only USB2 is supported. Signed-off-by: Patrice Chotard --- drivers/usb/host/Kconfi

[U-Boot] [PATCH v2 13/14] STiH410-B2260: enable USB Host Networking

2017-03-22 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- include/configs/stih410-b2260.h | 12 1 file changed, 12 insertions(+) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index bbf64d7..0a52af3 100644 --- a/include/configs/stih410-b2260.h +++ b/

[U-Boot] [PATCH v3 01/13] mmc: sti_sdhci: Rework sti_mmc_core_config()

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Use struct udevice* as input parameter. Previous parameters are retrieved through plat and priv data. This to prepare to use the reset framework. Signed-off-by: Patrice Chotard Reviewed-by: Jaehoon Chung --- drivers/mmc/sti_sdhci.c | 33 ++---

[U-Boot] [PATCH v3 00/13] STiH410-B2260: add reset, usb and fastboot support

2017-03-28 Thread patrice.chotard
From: Patrice Chotard This series adds : _ update existing sdhci driver to use reset framework _ add usb phy driver _ add ehci support _ add ohci support _ add xhci support _ add fastboot support With all this feature enable, it's now possible to

[U-Boot] [PATCH v3 02/13] ARM: dts: stih410-family: Add missing reset_names for mmc1 node

2017-03-28 Thread patrice.chotard
From: Patrice Chotard reset-names property is needed to use the reset API for STi sdhci driver. Signed-off-by: Patrice Chotard Reviewed-by: Jaehoon Chung --- arch/arm/dts/stih407-family.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/stih407-family.dtsi b/arch/arm/dts/st

[U-Boot] [PATCH v3 04/13] dm: usb: Add a uclass for USB PHY

2017-03-28 Thread patrice.chotard
From: Patrice Chotard This is a basic implementation of USB PHY which define a standard API that link USB PHY client to USB PHY driver controller. Signed-off-by: Patrice Chotard --- v3: _ this patch intoduce new USB PHY uclass drivers/usb/Kconfig | 4 ++ drivers/usb/phy/Kc

[U-Boot] [PATCH v3 13/13] STiH410-B2260: enable USB, fastboot, reset related flags

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- v2 :_ squash patch 7,9,11,12,14,16,17,18,19,20 and 21 configs/stih410-b2260_defconfig | 36 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/configs/stih410-b2260_defconfig b/config

[U-Boot] [PATCH v3 12/13] STiH410-B2260: enable USB Host Networking

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- include/configs/stih410-b2260.h | 12 1 file changed, 12 insertions(+) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index 3df0e04..6c84e9b 100644 --- a/include/configs/stih410-b2260.h +++ b/

[U-Boot] [PATCH v3 06/13] usb: ehci: Add STi ehci support

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip ehci controller available on STMicrolectronics SoCs. ehci support will be then available on both type A USB 2.0 connectors. Signed-off-by: Patrice Chotard --- v3: _ update to use new USB PHY uclass v2: _ update error messages _ add

[U-Boot] [PATCH v3 03/13] mmc: sti_sdhci: Use reset framework

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard Reviewed-by: Jaehoon Chung --- drivers/mmc/sti_sdhci.c | 31 ++- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/drivers/mmc/sti_sdhci.c b/drivers/mmc/sti_sdhci.c index d6c4d67..8b1b2c0 100644 --- a

[U-Boot] [PATCH v3 10/13] board: STiH410-B2260: add OHCI and XHCI related defines

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- v3: _ squas patches 8 and 10 include/configs/stih410-b2260.h | 4 1 file changed, 4 insertions(+) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index 6f4070f..3df0e04 100644 --- a/include/confi

[U-Boot] [PATCH v3 09/13] usb: dwc3: Add dwc3 glue driver support for STi

2017-03-28 Thread patrice.chotard
From: Patrice Chotard This patch adds the ST glue logic to manage the DWC3 HC on STiH407 SoC family. It configures the internal glue logic and syscfg registers. Part of this code been extracted from kernel.org driver (drivers/usb/dwc3/dwc3-st.c) Signed-off-by: Patrice Chotard --- v3: _ ren

[U-Boot] [PATCH v3 08/13] usb: xhci: Add STi xhci support

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip DWC3 controller available on STMicrolectronics STiH407 family SoCs. On B2260 board, the type AB USB connector is managed by a DWC3 IP. As USB3 signals are not wired, only USB2 is supported. Signed-off-by: Patrice Chotard --- v3: _ update to use

[U-Boot] [PATCH v3 07/13] usb: ohci: Add STi ohci support

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Add support for on-chip ohci controller available on STMicrolectronics SoCs. Ohci support will be then available on both type A USB 2.0 connectors. Signed-off-by: Patrice Chotard --- v3: _ update to use new USB PHY uclass v2: _ put board specific defines in a sep

[U-Boot] [PATCH v3 11/13] board: STiH410-B2260: add fastboot support

2017-03-28 Thread patrice.chotard
From: Patrice Chotard Add usb_gadget_handle_interrupts(), board_usb_init(), board_usb_cleanup() and g_dnl_board_usb_cable_connected() callbacks needed for FASTBOOT support Signed-off-by: Patrice Chotard --- board/st/stih410-b2260/board.c | 44 ++ 1 file

[U-Boot] [PATCH v3 05/13] usb: phy: Add STi USB2 PHY

2017-03-28 Thread patrice.chotard
From: Patrice Chotard This is the generic phy driver for the picoPHY ports used by USB2/1.1 controllers. It is found on STiH407 SoC family from STMicroelectronics. Signed-off-by: Patrice Chotard --- v3: _ convert driver to USB PHY uclass v2: _ replace bitfield_replace() by clrsetbits_

[U-Boot] [PATCH 0/3] STiH410-B2260: update environment/configuration settings

2017-03-31 Thread patrice.chotard
From: Patrice Chotard Update the CONFIG_EXTRA_ENV_SETTINGS, BOOT_TARGET_DEVICES and CONFIG_BOOTARGS Fix SDRAM size This series depends on series "[PATCH v3 00/13] STiH410-B2260: add reset, usb and fastboot support" [1]. Hence this series must be applied when [1] will be merged. [1] http://u-bo

[U-Boot] [PATCH 1/3] board: STiH410-B2260: update environment variable

2017-03-31 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- include/configs/stih410-b2260.h | 31 +-- 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index 6c84e9b..7fcb327 100644 --- a/inc

[U-Boot] [PATCH 2/3] board: STiH410-B2260: fix sdram size

2017-03-31 Thread patrice.chotard
From: Nicolas Le Bayon 32MB are reserved for Trusted Zone purpose Signed-off-by: Nicolas Le Bayon --- include/configs/stih410-b2260.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index 7fcb327..ccbbf32 100

[U-Boot] [PATCH 3/3] board: STiH410-B2260: set ramdisk_addr_r to 0x48000000

2017-03-31 Thread patrice.chotard
From: Lee Jones Signed-off-by: Lee Jones --- include/configs/stih410-b2260.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index ccbbf32..b83bef5 100644 --- a/include/configs/stih410-b2260.h +++ b/include/configs/stih410-b2

[U-Boot] [PATCH 1/7] arm: Add support for STMicroelectronics STiH410 soc

2017-02-02 Thread patrice.chotard
From: Patrice Chotard The STiH410 is an advanced multi-HD AVC processor with 3D graphics acceleration and 1.5-GHz ARM Cortex-A9 SMP CPU part of the stih407 family. It has wide connectivity including USB 3.0, PCI-e, SATA and gigabit ethernet. Signed-off-by: Patrice Chotard --- arch/arm/Kconfig

[U-Boot] [PATCH 2/7] board: Add STMicroelectronics STiH410-B2260 support

2017-02-02 Thread patrice.chotard
From: Patrice Chotard This is a 96Board compliant board based on STiH410 SoC: - 1GB DDR - On-Board USB combo WiFi/Bluetooth RTL8723BU with PCB soldered antenna - Ethernet 1000-BaseT - SAtA - HDMI - 2 x USB2.0 type A - 1 x USB2.0 type micro-AB - SD card slot - High speed conn

[U-Boot] [PATCH 3/7] STiH410: Add STi serial driver

2017-02-02 Thread patrice.chotard
From: Patrice Chotard This patch adds support to ASC (asynchronous serial controller) driver, which is basically a standard serial driver. This IP is common across other STMicroelectronics SoCs Signed-off-by: Patrice Chotard --- arch/arm/Kconfig | 2 + arch/arm/inclu

[U-Boot] [PATCH 0/7] Add STMicroelectronics STiH410-B2260 board support

2017-02-02 Thread patrice.chotard
From: Patrice Chotard This board is a 96board based on STiH410 SoC. This series adds basic support with serial, mmc and pinctrl support. v2: _ fix remarks from Jaechon Chung on SDHCI patch _ fix remarks from Antonio Borneo on board patch _ replace some macro by U-boot generic's one

[U-Boot] [PATCH 4/7] STiH410: Add STi SDHCI driver

2017-02-02 Thread patrice.chotard
From: Patrice Chotard Add SDHCI host controller found on STMicroelctronics SoCs Signed-off-by: Patrice Chotard --- arch/arm/Kconfig | 2 + arch/arm/include/asm/arch-stih410/sdhci.h | 69 +++ drivers/mmc/Kconfig | 7 ++ drivers/mmc

[U-Boot] [PATCH 5/7] STiH410: add STi pinctrl driver

2017-02-02 Thread patrice.chotard
From: Patrice Chotard Add STMicroelectronics STiH410 pinctrl driver Signed-off-by: Patrice Chotard --- drivers/pinctrl/Kconfig | 10 ++ drivers/pinctrl/Makefile | 1 + drivers/pinctrl/pinctrl-sti.c | 315 ++ 3 files changed, 326 insertions(

[U-Boot] [PATCH v2 2/7] board: Add STMicroelectronics STiH410-B2260 support

2017-02-02 Thread patrice.chotard
From: Patrice Chotard This is a 96Board compliant board based on STiH410 SoC: - 1GB DDR - On-Board USB combo WiFi/Bluetooth RTL8723BU with PCB soldered antenna - Ethernet 1000-BaseT - SAtA - HDMI - 2 x USB2.0 type A - 1 x USB2.0 type micro-AB - SD card slot - High speed conn

[U-Boot] [PATCH v2 5/7] STiH410: add STi pinctrl driver

2017-02-02 Thread patrice.chotard
From: Patrice Chotard Add STMicroelectronics STiH410 pinctrl driver Signed-off-by: Patrice Chotard --- drivers/pinctrl/Kconfig | 10 ++ drivers/pinctrl/Makefile | 1 + drivers/pinctrl/pinctrl-sti.c | 315 ++ 3 files changed, 326 insertions(

[U-Boot] [PATCH v2 0/7] Add STMicroelectronics STiH410-B2260 board support

2017-02-02 Thread patrice.chotard
From: Patrice Chotard This board is a 96board based on STiH410 SoC. This series adds basic support with serial, mmc and pinctrl support. v2: _ fix remarks from Jaechon Chung on SDHCI patch _ fix remarks from Antonio Borneo on board patch _ replace some macro by U-boot generic's one

[U-Boot] [PATCH v2 3/7] STiH410: Add STi serial driver

2017-02-02 Thread patrice.chotard
From: Patrice Chotard This patch adds support to ASC (asynchronous serial controller) driver, which is basically a standard serial driver. This IP is common across other STMicroelectronics SoCs Signed-off-by: Patrice Chotard --- arch/arm/Kconfig | 2 + arch/arm/inclu

[U-Boot] [PATCH v2 1/7] arm: Add support for STMicroelectronics STiH410 soc

2017-02-02 Thread patrice.chotard
From: Patrice Chotard The STiH410 is an advanced multi-HD AVC processor with 3D graphics acceleration and 1.5-GHz ARM Cortex-A9 SMP CPU part of the stih407 family. It has wide connectivity including USB 3.0, PCI-e, SATA and gigabit ethernet. Signed-off-by: Patrice Chotard --- arch/arm/Kconfig

[U-Boot] [PATCH v2 4/7] STiH410: Add STi SDHCI driver

2017-02-02 Thread patrice.chotard
From: Patrice Chotard Add SDHCI host controller found on STMicroelctronics SoCs Signed-off-by: Patrice Chotard --- arch/arm/Kconfig | 2 + arch/arm/include/asm/arch-stih410/sdhci.h | 69 +++ drivers/mmc/Kconfig | 7 ++ drivers/mmc

[U-Boot] [PATCH v2 7/7] STIH410-B2260: Add STiH410-B2260 defconfig

2017-02-02 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- configs/stih410-b2260_defconfig | 22 ++ 1 file changed, 22 insertions(+) create mode 100644 configs/stih410-b2260_defconfig diff --git a/configs/stih410-b2260_defconfig b/configs/stih410-b2260_defconfig new file mod

[U-Boot] [PATCH v2 6/7] STiH410-B2260: add device tree

2017-02-03 Thread patrice.chotard
From: Patrice Chotard This device tree has been extracted from v4.9 kernel Signed-off-by: Patrice Chotard --- arch/arm/dts/Makefile |2 + arch/arm/dts/st-pincfg.h | 71 ++ arch/arm/dts/stih407-clock.dtsi | 326 ++

[U-Boot] [PATCH v3 1/9] arm: Add support for STMicroelectronics STiH410 soc

2017-02-10 Thread patrice.chotard
From: Patrice Chotard The STiH410 is an advanced multi-HD AVC processor with 3D graphics acceleration and 1.5-GHz ARM Cortex-A9 SMP CPU part of the STiH407 family. It has wide connectivity including USB 3.0, PCI-e, SATA and gigabit ethernet. Signed-off-by: Patrice Chotard --- MAINTAINERS

[U-Boot] [PATCH v3 0/9] Add STMicroelectronics STiH410-B2260 board support

2017-02-10 Thread patrice.chotard
From: Patrice Chotard v3: _ add reviewed-by _ add top level MAINTAINERS entry and in the board MAINTAINERS _ use the fallback table from include/config_fallbacks.h _ minor update in sti_sdhci.c _ reorder patches with functionnal board and defconfig in last _ remove arch/arm/ma

[U-Boot] [PATCH v3 4/9] STiH410: Add STi serial driver

2017-02-10 Thread patrice.chotard
From: Patrice Chotard This patch adds support to ASC (asynchronous serial controller) driver, which is basically a standard serial driver. This IP is common across other STMicroelectronics SoCs Signed-off-by: Patrice Chotard --- arch/arm/Kconfig | 2 + arch/arm/inclu

[U-Boot] [PATCH v3 6/9] STiH410: Add STi SDHCI driver

2017-02-10 Thread patrice.chotard
From: Patrice Chotard Add SDHCI host controller found on STMicroelectronics SoCs On some ST SoCs, i.e. STiH407/STiH410, the MMC devices can live inside a dedicated flashSS sub-system that provides an extend subset of registers that can be used to configure the Arasan MMC/SD Host Controller. Thi

[U-Boot] [PATCH v3 2/9] STiH410: Add STi timer driver

2017-02-10 Thread patrice.chotard
From: Patrice Chotard Add ARM global timer based timer Signed-off-by: Patrice Chotard --- drivers/timer/Kconfig | 7 + drivers/timer/Makefile| 1 + drivers/timer/sti-timer.c | 78 +++ 3 files changed, 86 insertions(+) create mode 10064

[U-Boot] [PATCH v3 5/9] gpio: do not include for ARCH_STI

2017-02-10 Thread patrice.chotard
From: Patrice Chotard As no gpio.h is defined in arch/arm/include/asm/arch-stih410, to avoid compilation failure, do not include asm/arch/gpio.h. This is needed for example when including sdhci.h, which include asm/gpio.h>. Signed-off-by: Patrice Chotard --- arch/arm/include/asm/gpio.h | 2 +-

[U-Boot] [PATCH v3 3/9] STiH410: Add STi sysreset driver

2017-02-10 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard --- drivers/sysreset/Makefile | 1 + drivers/sysreset/sysreset_sti.c | 82 + 2 files changed, 83 insertions(+) create mode 100644 drivers/sysreset/sysreset_sti.c diff --git a/drivers/sysreset/M

[U-Boot] [PATCH v3 7/9] STiH410: Add STi pinctrl driver

2017-02-10 Thread patrice.chotard
From: Patrice Chotard Add STMicroelectronics STiH410 pinctrl driver Signed-off-by: Patrice Chotard Reviewed-by: Tom Rini --- drivers/pinctrl/Kconfig | 10 ++ drivers/pinctrl/Makefile | 1 + drivers/pinctrl/pinctrl-sti.c | 320 ++ 3 files c

[U-Boot] [PATCH v3 9/9] board: Add STMicroelectronics STiH410-B2260 support

2017-02-10 Thread patrice.chotard
From: Patrice Chotard This is a 96Board compliant board based on STiH410 SoC: - 1GB DDR - On-Board USB combo WiFi/Bluetooth RTL8723BU with PCB soldered antenna - Ethernet 1000-BaseT - SATA - HDMI - 2 x USB2.0 type A - 1 x USB2.0 type micro-AB - SD card slot - High speed conn

[U-Boot] [PATCH v3 8/9] STiH410-B2260: Add device tree

2017-02-10 Thread patrice.chotard
From: Patrice Chotard This device tree has been extracted from v4.9 kernel Signed-off-by: Patrice Chotard Reviewed-by: Tom Rini --- arch/arm/dts/Makefile |2 + arch/arm/dts/st-pincfg.h | 71 ++ arch/arm/dts/stih407-clock.dtsi

[U-Boot] [PATCH v4 0/9] Add STMicroelectronics STiH410-B2260 board

2017-02-14 Thread patrice.chotard
From: Patrice Chotard v4: _ fix STi serial driver to be fully DT compliant _ remove arch/arm/include/asm/arch-stih410/sti.h and include/dm/platform_data/serial_sti_asc.h which became useless _ board file cleanup _ fix some nits in sti_sdhci.c _ rebased on top of v2017.03-rc2

[U-Boot] [PATCH v4 5/9] gpio: do not include for ARCH_STI

2017-02-14 Thread patrice.chotard
From: Patrice Chotard As no gpio.h is defined in arch/arm/include/asm/arch-stih410, to avoid compilation failure, do not include asm/arch/gpio.h. This is needed for example when including sdhci.h, which include asm/gpio.h>. Signed-off-by: Patrice Chotard --- arch/arm/include/asm/gpio.h | 2 +-

[U-Boot] [PATCH v4 2/9] STiH410: Add STi timer driver

2017-02-14 Thread patrice.chotard
From: Patrice Chotard Add ARM global timer based timer Signed-off-by: Patrice Chotard --- v3 : _ convert previous arch/arm/mach-sti/timer.c into STi timer driver drivers/timer/Kconfig | 7 + drivers/timer/Makefile| 1 + drivers/timer/sti-timer.c | 78 +

[U-Boot] [PATCH v4 7/9] STiH410: Add STi pinctrl driver

2017-02-14 Thread patrice.chotard
From: Patrice Chotard Add STMicroelectronics STiH410 pinctrl driver Signed-off-by: Patrice Chotard Reviewed-by: Tom Rini --- drivers/pinctrl/Kconfig | 10 ++ drivers/pinctrl/Makefile | 1 + drivers/pinctrl/pinctrl-sti.c | 320 ++ 3 files c

[U-Boot] [PATCH v4 1/9] arm: Add support for STMicroelectronics STiH410 soc

2017-02-14 Thread patrice.chotard
From: Patrice Chotard The STiH410 is an advanced multi-HD AVC processor with 3D graphics acceleration and 1.5-GHz ARM Cortex-A9 SMP CPU part of the STiH407 family. It has wide connectivity including USB 3.0, PCI-e, SATA and gigabit ethernet. Signed-off-by: Patrice Chotard --- v3: _ add top le

[U-Boot] [PATCH v4 4/9] STiH410: Add STi serial driver

2017-02-14 Thread patrice.chotard
From: Patrice Chotard This patch adds support to ASC (asynchronous serial controller) driver, which is basically a standard serial driver. This IP is common across other STMicroelectronics SoCs Signed-off-by: Patrice Chotard --- v4: _ fix STi serial driver to be fully DT compliant _ remove

[U-Boot] [PATCH v4 3/9] STiH410: Add STi sysreset driver

2017-02-14 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard Reviewed-by: Simon Glass --- v3 : _ convert previous arch/arm/mach-sti/cpu.c into STi sysreset driver drivers/sysreset/Makefile | 1 + drivers/sysreset/sysreset_sti.c | 82 + 2 files changed

[U-Boot] [PATCH v4 8/9] STiH410-B2260: Add device tree

2017-02-14 Thread patrice.chotard
From: Patrice Chotard This device tree has been extracted from v4.9 kernel Signed-off-by: Patrice Chotard Reviewed-by: Tom Rini --- v4 : _ Add mising "stdout-path" property in arch/arm/dts/stih410-b2260.dts which allow serial driver to be probed arch/arm/dts/Makefile

[U-Boot] [PATCH v4 6/9] STiH410: Add STi SDHCI driver

2017-02-14 Thread patrice.chotard
From: Patrice Chotard Add SDHCI host controller found on STMicroelectronics SoCs On some ST SoCs, i.e. STiH407/STiH410, the MMC devices can live inside a dedicated flashSS sub-system that provides an extend subset of registers that can be used to configure the Arasan MMC/SD Host Controller. Thi

[U-Boot] [PATCH v4 9/9] board: Add STMicroelectronics STiH410-B2260 support

2017-02-14 Thread patrice.chotard
From: Patrice Chotard This is a 96Board compliant board based on STiH410 SoC: - 1GB DDR - On-Board USB combo WiFi/Bluetooth RTL8723BU with PCB soldered antenna - Ethernet 1000-BaseT - SATA - HDMI - 2 x USB2.0 type A - 1 x USB2.0 type micro-AB - SD card slot - High speed conn

[U-Boot] [PATCH v5 4/9] STiH410: Add STi serial driver

2017-02-20 Thread patrice.chotard
From: Patrice Chotard This patch adds support to ASC (asynchronous serial controller) driver, which is basically a standard serial driver. This IP is common across other STMicroelectronics SoCs Signed-off-by: Patrice Chotard Reviewed-by: Simon Glass --- arch/arm/Kconfig| 2 +

[U-Boot] [PATCH v5 1/9] arm: Add support for STMicroelectronics STiH410 soc

2017-02-20 Thread patrice.chotard
From: Patrice Chotard The STiH410 is an advanced multi-HD AVC processor with 3D graphics acceleration and 1.5-GHz ARM Cortex-A9 SMP CPU part of the STiH407 family. It has wide connectivity including USB 3.0, PCI-e, SATA and gigabit ethernet. Signed-off-by: Patrice Chotard --- v5: _ migrate b

[U-Boot] [PATCH v5 2/9] STiH410: Add STi timer driver

2017-02-20 Thread patrice.chotard
From: Patrice Chotard Add ARM global timer based timer Signed-off-by: Patrice Chotard Reviewed-by: Simon Glass --- drivers/timer/Kconfig | 7 + drivers/timer/Makefile| 1 + drivers/timer/sti-timer.c | 78 +++ 3 files changed, 86 insert

[U-Boot] [PATCH v5 3/9] STiH410: Add STi sysreset driver

2017-02-20 Thread patrice.chotard
From: Patrice Chotard Signed-off-by: Patrice Chotard Reviewed-by: Simon Glass --- drivers/sysreset/Makefile | 1 + drivers/sysreset/sysreset_sti.c | 82 + 2 files changed, 83 insertions(+) create mode 100644 drivers/sysreset/sysreset_sti.c diff

[U-Boot] [PATCH v5 5/9] gpio: do not include for ARCH_STI

2017-02-20 Thread patrice.chotard
From: Patrice Chotard As no gpio.h is defined in arch/arm/include/asm/arch-stih410, to avoid compilation failure, do not include asm/arch/gpio.h. This is needed for example when including sdhci.h, which include asm/gpio.h>. Signed-off-by: Patrice Chotard Reviewed-by: Simon Glass --- arch/arm

[U-Boot] [PATCH v5 0/9] Add STMicroelectronics STiH410-B2260 board

2017-02-20 Thread patrice.chotard
From: Patrice Chotard v5: _ Add Simon Glass's reviewed-by _ move board Kconfig description from patch 1 to 9 v4: _ fix STi serial driver to be fully DT compliant _ remove arch/arm/include/asm/arch-stih410/sti.h and include/dm/platform_data/serial_sti_asc.h which became useless

[U-Boot] [PATCH v5 7/9] STiH410: Add STi pinctrl driver

2017-02-20 Thread patrice.chotard
From: Patrice Chotard Add STMicroelectronics STiH410 pinctrl driver Signed-off-by: Patrice Chotard Reviewed-by: Tom Rini Reviewed-by: Simon Glass --- drivers/pinctrl/Kconfig | 10 ++ drivers/pinctrl/Makefile | 1 + drivers/pinctrl/pinctrl-sti.c | 320 +++

[U-Boot] [PATCH v5 9/9] board: Add STMicroelectronics STiH410-B2260 support

2017-02-20 Thread patrice.chotard
From: Patrice Chotard This is a 96Board compliant board based on STiH410 SoC: - 1GB DDR - On-Board USB combo WiFi/Bluetooth RTL8723BU with PCB soldered antenna - Ethernet 1000-BaseT - SATA - HDMI - 2 x USB2.0 type A - 1 x USB2.0 type micro-AB - SD card slot - High speed conn

[U-Boot] [PATCH v5 6/9] STiH410: Add STi SDHCI driver

2017-02-20 Thread patrice.chotard
From: Patrice Chotard Add SDHCI host controller found on STMicroelectronics SoCs On some ST SoCs, i.e. STiH407/STiH410, the MMC devices can live inside a dedicated flashSS sub-system that provides an extend subset of registers that can be used to configure the Arasan MMC/SD Host Controller. Thi

  1   2   3   4   5   6   7   >