Greetings From Sivia

2014-06-13 Thread ra Raji
Greetings From Sivia Dear how are you today? and how is things moving with you? hope fine and you are in good health.My name is Sivia, I am looking for a very nice person of love, caring, sincere, easy going, matured, and understanding, i came across your Email today and decided to be in touch wit

[PATCH v4 0/2] mmc: sdhci: Use mmc core regulator infrastucture

2014-06-13 Thread Markus Mayer
This series switches the common SDHCI code over to use mmc_host's regulator pointers rather than keeping its own set. In addition, we can now re-use the newly introduced local "mmc" pointer in several function calls in lieu of using host->mmc. The first patch in the series has been posted before

[PATCH v4 2/2] mmc: sdhci: Replace host->mmc with mmc where possible

2014-06-13 Thread Markus Mayer
After the switch to the MMC core regulator infrastucture, we already have a local "mmc" pointer in various functions. There is no longer a need to access the data structure via host->mmc. Signed-off-by: Markus Mayer Reviewed-by: Matt Porter --- drivers/mmc/host/sdhci.c | 30 +++-

[PATCH v4 1/2] mmc: sdhci: Use mmc core regulator infrastucture

2014-06-13 Thread Markus Mayer
From: Tim Kryger Switch the common SDHCI code over to use mmc_host's regulator pointers and remove the ones in the sdhci_host structure. Additionally, use the common mmc_regulator_get_supply function to get the regulators and set the ocr_avail mask. This change sets the ocr_avail directly based

Re: [PATCH v2 1/2] mmc: sdhci: add init_card callback

2014-06-13 Thread Steffen Trumtrar
On Fri, Jun 13, 2014 at 01:01:25PM +0200, Ulf Hansson wrote: > On 13 June 2014 12:25, Steffen Trumtrar wrote: > > Currently host drivers using the sdhci-pltfm code can not configure the > > host based on the type of card inserted. > > > > The sdio driver e.g. calls the card_init callback, so the h

Re: [PATCHv7 2/2] ARM: dts: unuse the slot-node and deprecated supports-highspeed for dw-mmc.

2014-06-13 Thread Ulf Hansson
On 13 June 2014 06:31, Jaehoon Chung wrote: > dw-mmc controller can support multiple slots. > But, there are no use-cases anywhere. So we don't need to support the > slot-node for dw-mmc controller. > And "supports-highspeed" property in dw-mmc is deprecated. > "supports-highspeed" property can be

Re: [PATCH v2 1/2] mmc: sdhci: add init_card callback

2014-06-13 Thread Ulf Hansson
On 13 June 2014 12:25, Steffen Trumtrar wrote: > Currently host drivers using the sdhci-pltfm code can not configure the > host based on the type of card inserted. > > The sdio driver e.g. calls the card_init callback, so the host can now > know what card is used and configure itself accordingly.

Re: [PATCH v3 0/3] mmc: sdhci: Use mmc core regulator infrastucture

2014-06-13 Thread Ulf Hansson
On 12 June 2014 20:48, Markus Mayer wrote: > This series switches the common SDHCI code over to use mmc_host's > regulator pointers rather than keeping its own set. > > In addition, we can now re-use the newly introduced local "mmc" pointer > in several other function calls in lieu of using host->

[PATCH v2 1/2] mmc: sdhci: add init_card callback

2014-06-13 Thread Steffen Trumtrar
Currently host drivers using the sdhci-pltfm code can not configure the host based on the type of card inserted. The sdio driver e.g. calls the card_init callback, so the host can now know what card is used and configure itself accordingly. Provide a callback for users of the sdhci-pltfm code to

[PATCH v2 2/2] mmc: sdhci-esdhc-imx: add callback for card_type inits

2014-06-13 Thread Steffen Trumtrar
At least the i.MX35 (there may be others) currently implements a quirk to turn of multiblock transfers for the esdhc host. According to the errata this is only true for SD cards and NOT for sdio cards. When the sdio driver initializes the card, it knows the type of card we actually have. So now th