R: [EXT] Re: [PATCH v8 01/15] crypto/fsl: Add support for CAAM Job ring driver model

2022-03-19 Thread Raffaele RECALCATI
Hi Michael, >HI Tom > >On Sat, Mar 19, 2022 at 6:51 PM Tom Rini wrote: >> >> On Sat, Mar 19, 2022 at 06:49:25PM +0100, Michael Nazzareno Trimarchi wrote: >> > HI Tom >> > >> > On Sat, Mar 19, 2022 at 6:44 PM Tom Rini wrote: >> > > >> > > On Sat, Mar 19, 2022 at 06:37:18PM +0100, Michael Nazzaren

Re: [U-Boot] [Patch v2 2/3] net: ks8851_mll: add ethernet support

2013-04-24 Thread Raffaele Recalcati
Hi Bo, On 10:46 Wed 24 Apr , Bo Shen wrote: > From: Roberto Cerati > > The device interface is 16 bits wide. > All the available packets are read from the incoming fifo. > > Signed-off-by: Roberto Cerati > Signed-off-by: Raffaele Recalcati > [voice.s...@atmel.co

Re: [U-Boot] cache support make DaVinci dm365 quicker reading emmc

2011-06-08 Thread Raffaele Recalcati
On Wed, Jun 1, 2011 at 3:09 PM, Raffaele Recalcati wrote: > Thanks to: > > commit c3330e9d6a11b6ead4a2346001338ce884b5832b > Author: Heiko Schocher > Date:   Fri Sep 17 13:10:30 2010 +0200 > >    ARM (ARM926ejs): add data cache support, tested on magnesium and tx25 board

[U-Boot] cache support make DaVinci dm365 quicker reading emmc

2011-06-01 Thread Raffaele Recalcati
Thanks to: commit c3330e9d6a11b6ead4a2346001338ce884b5832b Author: Heiko Schocher Date: Fri Sep 17 13:10:30 2010 +0200 ARM (ARM926ejs): add data cache support, tested on magnesium and tx25 board My 'Basi' board, based on DaVinci dm365, can read the uImage (1.5MB) in 0.7 sec (with ext2loa

Re: [U-Boot] [RFC 2/3][v4] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-04-14 Thread Raffaele Recalcati
Hi Andy, On Wed, Apr 13, 2011 at 1:24 PM, Andy Fleming wrote: > On Fri, Mar 11, 2011 at 6:01 AM, Raffaele Recalcati > wrote: >> From: Raffaele Recalcati >> >> The first SEND_OP_COND (CMD1) command added is used to ask card capabilities. >> After it an AND

Re: [U-Boot] [PATCH] S5P: mmc: Resolved interrupt error during mmc_init

2011-04-06 Thread Raffaele Recalcati
Hi Andy, On Sun, Apr 3, 2011 at 4:49 PM, Minkyu Kang wrote: > Dear Raffaele Recalcati, > > On 3 April 2011 13:39, Raffaele Recalcati wrote: >> Hi Minkyu, >> >> I have sent some patches about mmc and reviewed one, can you please >> tell me what to do mainline t

Re: [U-Boot] [PATCH] S5P: mmc: Resolved interrupt error during mmc_init

2011-04-02 Thread Raffaele Recalcati
Hi Minkyu, On Thu, Mar 24, 2011 at 3:46 AM, Minkyu Kang wrote: > Dear Chander Kashyap, > > On 22 March 2011 20:40, Chander Kashyap wrote: >> Blocksize was hardcoded to 512 bytes. But the blocksize varies >> depeding on various mmc subsystem commands (between 8 and 512). >> This hardcoding was re

Re: [U-Boot] Network Code Custodian ?

2011-04-02 Thread Raffaele Recalcati
clean and send it. We really want to mainline it. Regards, Raffaele Recalcati ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] MMC may wrongly regconize 2GB eMMC as high capacity

2011-03-23 Thread Raffaele Recalcati
Hi Terry, > So I guess: > mmc_init calls mmc_send_op_cond  that set  high_capacity, > than it calls mmc_startup, that, with MMC_CMD_SEND_CSD  command, set > the capacity, using values in CSD register. > So I guess that mmc_change_freq should not recalculate high_capacity. > > It seems better, isn'

Re: [U-Boot] [PATCH] MMC may wrongly regconize 2GB eMMC as high capacity

2011-03-23 Thread Raffaele Recalcati
Hi Terry, On Mon, Mar 21, 2011 at 7:03 AM, Terry Lv wrote: > MMC driver may wrongly regconize some 2GB eMMC as high capacity card. > > This patch is based on the patch picked from community. > > fc8a0985c2846292312556cba10b8a4182f55967 > From: Hanumath Prasad > Date: Tue, 10 Aug 2010 18:01:45 -0

[U-Boot] [RFC] ks8851_mll: add ethernet support

2011-03-16 Thread Raffaele Recalcati
From: Roberto Cerati The device interface is 16 bits wide. All the available packets are read from the incoming fifo. Signed-off-by: Roberto Cerati --- This driver has been adapted to u-boot starting from ks8851_mll linux driver. The smsc911x u-boot has been used as reference. TODO: smsc911x r

[U-Boot] [RFC 3/3][v4] mmc: trace added

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati Defining CONFIG_MMC_TRACE in the include board file it is possible to activate a tracing support. This code helps in case of eMMC hw failure or to investigate possible eMMC initialization issues. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 57

[U-Boot] [RFC 2/3][v4] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati The first SEND_OP_COND (CMD1) command added is used to ask card capabilities. After it an AND operation is done between card capabilities and host capabilities (at the moment only for the voltage field). Finally the correct value is sent to the MMC, waiting that the card

[U-Boot] [RFC 1/3][v4] mmc: checking status after commands with R1b response

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati It is recommended to check card status after these kind of commands. This is done using CMD13 (SEND_STATUS) JEDEC command until the card is ready. In case of error the card status field is displayed. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 60

[U-Boot] [RFC 0/3][v4] mmc inizialization steps enhanced

2011-03-11 Thread Raffaele Recalcati
series on basi board, based on Davinci dm365, that contains an eMMC device. Raffaele Recalcati (3): mmc: checking status after commands with R1b response mmc: SEND_OP_COND considers card capabilities (voltage) mmc: trace added drivers/mmc/mmc.c | 136

Re: [U-Boot] [PATCH 1/3][v3] mmc: checking status after commands with R1b response

2011-03-11 Thread Raffaele Recalcati
Hi Gururaja, On Fri, Mar 11, 2011 at 9:57 AM, Hebbar, Gururaja wrote: > Hi, > > On Fri, Mar 11, 2011 at 14:08:14, Raffaele Recalcati wrote: >> From: Raffaele Recalcati >> > [...] > [...] it means the lines are ok? >> @@ -48,6 +48,36 @@ int mmc_send_cmd(str

[U-Boot] [PATCH 3/3][v3] mmc: trace added

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati Defining CONFIG_MMC_TRACE in the include board file it is possible to activate a tracing support. This code helps in case of eMMC hw failure or to investigate possible eMMC initialization issues. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 71

[U-Boot] [RFC 2/3][v3] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati The first SEND_OP_COND (CMD1) is used only to ask card capabilities, waiting that the card is not busy. After it, an AND operation is done between card capabilities and host capabilities, (at the moment only for the voltage field). Finally the correct value is sent to

[U-Boot] [PATCH 1/3][v3] mmc: checking status after commands with R1b response

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati It is a recommended to check card status after these kind of commands. This is done using CMD13 (SEND_STATUS) JEDEC command. In case of error the card status field is displayed. Signed-off-by: Raffaele Recalcati --- It is not clear what should nice to do in case of

[U-Boot] [RFC 0/3][v3] mmc inizialization steps enhanced

2011-03-11 Thread Raffaele Recalcati
series on basi board, based on Davinci dm365, that contains an eMMC device. Raffaele Recalcati (3): mmc: checking status after commands with R1b response mmc: SEND_OP_COND considers card capabilities (voltage) mmc: trace added drivers/mmc/mmc.c | 146

Re: [U-Boot] [RFC 2/3][v2] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-10 Thread Raffaele Recalcati
On Fri, Mar 11, 2011 at 4:14 AM, Lei Wen wrote: > On Fri, Mar 11, 2011 at 12:59 AM, Raffaele Recalcati > wrote: >> On Thu, Mar 10, 2011 at 5:29 PM, Lei Wen wrote: >>> Hi Raffaele, >>> >>> On Thu, Mar 10, 2011 at 11:43 PM, Raffaele Recalcati &g

Re: [U-Boot] [RFC 2/3][v2] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-10 Thread Raffaele Recalcati
On Thu, Mar 10, 2011 at 5:29 PM, Lei Wen wrote: > Hi Raffaele, > > On Thu, Mar 10, 2011 at 11:43 PM, Raffaele Recalcati > wrote: >> From: Raffaele Recalcati >> >> The first SEND_OP_COND (CMD1) is used only to ask card capabilities, waiting >> that the c

[U-Boot] [PATCH 3/3][v2] mmc: trace added

2011-03-10 Thread Raffaele Recalcati
From: Raffaele Recalcati Defining CONFIG_MMC_TRACE in the include board file it is possible to activate a tracing support. This code helps in case of eMMC hw failure or to investigate possible eMMC initialization issues. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 71

[U-Boot] [RFC 2/3][v2] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-10 Thread Raffaele Recalcati
From: Raffaele Recalcati The first SEND_OP_COND (CMD1) is used only to ask card capabilities, waiting that the card is not busy. After it, an AND operation is done between card capabilities and host capabilities, (at the moment only for the voltage field). Finally the correct value is sent to

[U-Boot] [PATCH 1/3][v2] mmc: checking status after commands with R1b response

2011-03-10 Thread Raffaele Recalcati
From: Raffaele Recalcati It is a recommended to check card status after these kind of commands. This is done using CMD13 (SEND_STATUS) JEDEC command. In case of error the card status field is displayed. Signed-off-by: Raffaele Recalcati --- It is not clear what should nice to do in case of

[U-Boot] [RFC 0/3][v2] mmc inizialization steps enhanced

2011-03-10 Thread Raffaele Recalcati
series on basi board, based on Davinci dm365, that contains an eMMC device. Raffaele Recalcati (3): mmc: checking status after commands with R1b response mmc: SEND_OP_COND considers card capabilities (voltage) mmc: trace added drivers/mmc/mmc.c | 148

Re: [U-Boot] [RFC 1/3] mmc: checking status after commands with R1b response

2011-03-10 Thread Raffaele Recalcati
Hi Lei, > I apply your patch and test on my board and find this patch mess my sd card... Can't you trace the behaviour using the latest patch and send the results to me ? > Why you need to keep send the stop command (Also the other command in > this patch) > if mmc_send_status fail? As my unders

[U-Boot] [RFC 3/3] mmc: trace added

2011-03-09 Thread Raffaele Recalcati
From: Raffaele Recalcati Defining CONFIG_MMC_TRACE in the include board file it is possible to activate a tracing support. This code helps in case of eMMC hw failure or to investigate possible eMMC initialization issues. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 71

[U-Boot] [RFC 2/3] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-09 Thread Raffaele Recalcati
From: Raffaele Recalcati The first SEND_OP_COND (CMD1) is used only to ask card capabilities, waiting that the card is not busy. After it, an AND operation is done between card capabilities and host capabilities, (at the moment only for the voltage field). Finally the correct value is sent to

[U-Boot] [RFC 1/3] mmc: checking status after commands with R1b response

2011-03-09 Thread Raffaele Recalcati
From: Raffaele Recalcati It is a recommended to check card status after these kind of commands. This is done using CMD13 (SEND_STATUS) JEDEC command. In case of error the previous command is issued again. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 106

[U-Boot] [RFC 0/3] mmc inizialization steps enhanced

2011-03-09 Thread Raffaele Recalcati
series on basi board, based on Davinci dm365, that contains an eMMC device. Raffaele Recalcati (3): mmc: checking status after commands with R1b response mmc: SEND_OP_COND considers card capabilities (voltage) mmc: trace added drivers/mmc/mmc.c | 198

Re: [U-Boot] smc911x: problem with if there is ethernet traffic

2009-10-26 Thread Raffaele Recalcati
2009/10/26 Mike Frysinger : > On Monday 26 October 2009 07:35:14 Raffaele Recalcati wrote: >> I've customized the commit f67066b6b0740b826ed862615c5ab022aaf4779a >> for my pxa255/smx911x (lan9118) board. >> tftp works nice, also through a switch, but only if I

[U-Boot] smc911x: problem with if there is ethernet traffic

2009-10-26 Thread Raffaele Recalcati
I've customized the commit f67066b6b0740b826ed862615c5ab022aaf4779a for my pxa255/smx911x (lan9118) board. tftp works nice, also through a switch, but only if I'm not connected to the LAN. => tftp a200 uImage smc911x: detected LAN9118 controller smc911x: phy initialized .. BSR=0x782D smc911x: