[U-Boot] U-boot Driver Model - MMC - missing uclass implementation?

2016-09-23 Thread Philipp Rossak
Hi, I would like to develop an mmc driver for the STM32 boards with the new driver model. I already built up the basic structure and I discovered some strange behaviour compared to net or serial drivers: When I place only the following statement in the driver .c file: U_BOOT_DRIVER(sdhci_stm32)

Re: [U-Boot] U-boot Driver Model - MMC - missing uclass implementation?

2016-09-23 Thread Philipp Rossak
Hi Simon, I missed the CONFIG_GENERIC_MMC option. Thank you very much !! Regards, Philipp 2016-09-23 17:37 GMT+02:00 Simon Glass : > Hi Phllipp, > > On 23 September 2016 at 09:30, Philipp Rossak wrote: > > Hi, > > > > I would like to develop an mmc driver for th

[U-Boot] STM32F7 SD/MMC Card Driver - Testing/Review

2017-03-21 Thread Philipp Rossak
p me also. Thanks in advance! Best regards, Philipp Rossak [0] https://github.com/embed-3d/stm32_mmc_driver/tree/stm32f7_mmc_hw_testing ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] STM32F7 SD/MMC Card Driver - Testing/Review

2017-03-21 Thread Philipp Rossak
a lot of debug outputs, to make it for me easy for me to find the errors. The most of them will be removed later. Best Regards, Philipp Rossak [1] http://pastebin.com/LcSSmBfp [2] http://pastebin.com/zRbRMXtE On 22.03.2017 01:51, Jaehoon Chung wrote: Hi Philipp, On 03/22/2017 09:27 AM, Ph

Re: [U-Boot] STM32F7 SD/MMC Card Driver - Testing/Review

2017-03-22 Thread Philipp Rossak
d6 Log [4] behaves similar to log [1]. I made a diff between log [3] and Log [4] and till line 265 is everything the same. @ line 266 & 267 the answer to cmd 51 is different!? Best Regards, Philipp Rossak [3] http://pastebin.com/AK3RB1bH [4] http://pastebin.com/xk2TkGpd On 22.03.2017 02

Re: [U-Boot] STM32F7 SD/MMC Card Driver - Testing/Review

2017-03-22 Thread Philipp Rossak
oks everything ok Best Regards, Philipp Rossak [5] http://pastebin.com/H8mWTP4C On 22.03.2017 12:18, Philipp Rossak wrote: Hi Jaehoon, Yes that what you mentioned is a timeout error. That error occurs if I don't get a response from several Hardware/error flags (a counter reach

Re: [U-Boot] [PATCH v3 1/1] mmc: Add MMC support for stm32h7 Socs

2017-07-21 Thread Philipp Rossak
ver got it working. Kind Regards, Philipp Rossak On Jul 20, 2017 11:15, wrote: > From: Patrice Chotard > > This patch adds SD/MMC support for STM32H7 SoCs. > > Here is an extraction of SDMMC main features, embedded in > STM32H7 SoCs. > The SD/MMC block include the follo

[U-Boot] [PATCH 0/4] Enable ethernet on nanopi m1 and nanopi m1 plus

2017-08-29 Thread Philipp Rossak
From: Philipp Rossak This Patchseries enables the ethernet for the Friendlyarm Nanopi M1 and the Friendlyarm Nanopi M1 Plus. Philipp Rossak (4): sunxi: defconfig: enable sun8i emac on nanopi m1 sunxi: defconfig: enable sun8i emac on nanopi m1 plus sunxi: dts: added emac node for nanopi

[U-Boot] [PATCH 3/4] sunxi: dts: added emac node for nanopi m1

2017-08-29 Thread Philipp Rossak
From: Philipp Rossak The sun8i emac hardware is present on the Nanopi M1. It uses the internal PHY. Signed-off-by: Philipp Rossak --- arch/arm/dts/sun8i-h3-nanopi-m1.dts | 11 +++ 1 file changed, 11 insertions(+) diff --git a/arch/arm/dts/sun8i-h3-nanopi-m1.dts b/arch/arm/dts/sun8i

[U-Boot] [PATCH 2/4] sunxi: defconfig: enable sun8i emac on nanopi m1 plus

2017-08-29 Thread Philipp Rossak
From: Philipp Rossak The sun8i emac hardware is present on the Nanopi M1. It uses an external PHY. Pin PD6 is used to enable the external PHY. Signed-off-by: Philipp Rossak --- configs/nanopi_m1_plus_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs

[U-Boot] [PATCH 1/4] sunxi: defconfig: enable sun8i emac on nanopi m1

2017-08-29 Thread Philipp Rossak
From: Philipp Rossak The sun8i emac hardware is present on the Nanopi M1. It uses the internal PHY. Signed-off-by: Philipp Rossak --- configs/nanopi_m1_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/nanopi_m1_defconfig b/configs/nanopi_m1_defconfig index 498496b

[U-Boot] [PATCH 4/4] sunxi: dts: added emac node for nanopi m1 plus

2017-08-29 Thread Philipp Rossak
From: Philipp Rossak The sun8i emac hardware is present on the Nanopi M1. It uses an external PHY. Signed-off-by: Philipp Rossak --- arch/arm/dts/sun8i-h3-nanopi-m1-plus.dts | 30 ++ 1 file changed, 30 insertions(+) diff --git a/arch/arm/dts/sun8i-h3-nanopi-m1

Re: [U-Boot] [PATCH 3/4] sunxi: dts: added emac node for nanopi m1

2017-08-30 Thread Philipp Rossak
Am 30.08.2017 um 08:47 schrieb Jagan Teki: On Wed, Aug 30, 2017 at 6:02 AM, Philipp Rossak wrote: From: Philipp Rossak The sun8i emac hardware is present on the Nanopi M1. It uses the internal PHY. Signed-off-by: Philipp Rossak --- arch/arm/dts/sun8i-h3-nanopi-m1.dts | 11

Re: [U-Boot] [linux-sunxi] Re: [PATCH 3/4] sunxi: dts: added emac node for nanopi m1

2017-08-30 Thread Philipp Rossak
On 30.08.2017 18:59, Jagan Teki wrote: On Wed, Aug 30, 2017 at 8:06 PM, Ondřej Jirman wrote: Hi, Jagan Teki píše v St 30. 08. 2017 v 19:48 +0530: On Wed, Aug 30, 2017 at 2:40 PM, Philipp Rossak wrote: Am 30.08.2017 um 08:47 schrieb Jagan Teki: On Wed, Aug 30, 2017 at 6:02 AM, Philipp