Re: [PATCH] mmc: tegra: don't enable UHS modes on Tegra210

2016-01-03 Thread Thierry Reding
s up as a fix on top. > --- > drivers/mmc/host/sdhci-tegra.c | 3 --- > 1 file changed, 3 deletions(-) Acked-by: Thierry Reding signature.asc Description: PGP signature

[PATCH 1/2] mmc: tegra: Constify SoC data

2015-11-16 Thread Thierry Reding
From: Thierry Reding The data in the SoC description structures is static and can therefore reside in read-only memory. Signed-off-by: Thierry Reding --- drivers/mmc/host/sdhci-tegra.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/host/sdhci-tegra.c b

[PATCH 2/2] mmc: tegra: Add Tegra210 support

2015-11-16 Thread Thierry Reding
From: Thierry Reding Signed-off-by: Thierry Reding --- drivers/mmc/host/sdhci-tegra.c | 17 + 1 file changed, 17 insertions(+) diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-tegra.c index 8d49d9af6f54..368f1b74a525 100644 --- a/drivers/mmc/host/sdhci

Re: [PATCH v6 00/12] Improvements to Tegra-based Chromebook support

2015-03-24 Thread Thierry Reding
On Wed, Mar 18, 2015 at 10:52:15AM +0100, Tomeu Vizoso wrote: > v6: * Added Acked-by and Reviewed-By tags > * Rebased on top of 4.0-rc1 > * Added patch that marks the WiFi card as powered during suspend > > v5: * Moved to use gpio-restart for reboots, had to make tegra_pmc_restart

[PATCH] mmc: tegra: Do not include asm/gpio.h

2014-07-07 Thread Thierry Reding
From: Thierry Reding This doesn't seem to be used any longer and removing the include fixes 64-bit ARM builds. Signed-off-by: Thierry Reding --- drivers/mmc/host/sdhci-tegra.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-te

Re: [PATCH REPOST2] mmc: tegra: add support for Tegra124

2013-12-19 Thread Thierry Reding
very > simple and doesn't enable those modes, we don't actually need to address > any of these HW differences in the code yet, hence the simple nature of > this patch. > > Signed-off-by: Stephen Warren > Reviewed-by: Thierry Reding > --- > drivers/mmc/host/sdhci-te

Re: [PATCH] mmc: tegra: add support for Tegra124

2013-11-29 Thread Thierry Reding
very > simple and doesn't enable those modes, we don't actually need to address > any of these HW differences in the code yet, hence the simple nature of > this patch. > > Signed-off-by: Stephen Warren > --- > drivers/mmc/host/sdhci-tegra.c | 1 + > 1 file c

Re: [PATCH] mmc: sdhci: dove: Fix build breakage

2013-10-28 Thread Thierry Reding
On Sun, Oct 27, 2013 at 08:56:55AM -0400, Chris Ball wrote: > Hi, > > On Wed, Oct 23 2013, Thierry Reding wrote: > > Commit 2d7c51f (mmc: sdhci: Use work structs instead of tasklets) > > converts tasklets to work structs, but typos the conversion in the Dove > > dr

[PATCH] mmc: sdhci: dove: Fix build breakage

2013-10-23 Thread Thierry Reding
Commit 2d7c51f (mmc: sdhci: Use work structs instead of tasklets) converts tasklets to work structs, but typos the conversion in the Dove driver. Signed-off-by: Thierry Reding --- drivers/mmc/host/sdhci-dove.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host

Re: [PATCH 0/2] mmc: tegra: use mmc_of_parse to get support of standard MMC DT binding

2013-02-21 Thread Thierry Reding
0-whistler.dts | 1 + > arch/arm/boot/dts/tegra30-beaver.dts| 2 +- > arch/arm/boot/dts/tegra30-cardhu.dtsi | 2 +- > drivers/mmc/host/sdhci-tegra.c | 85 > +++-- > 9 files changed, 16 insertions(+), 86 deletions(-) With the same DTS change

Re: [PATCH 1/2] ARM: dts: tegra: fix the activate polarity of cd-gpio in mmc host

2013-02-21 Thread Thierry Reding
On Wed, Feb 20, 2013 at 09:59:23AM -0700, Stephen Warren wrote: > On 02/20/2013 12:05 AM, Joseph Lo wrote: > > The GPIO pin of SD slot card detection should active low. > > Thierry, Lucas, can you please check if the same change should be made > to all the Avionic Design and Toradex boards? I assu

Re: [PATCH 2/2] mmc: tegra: use mmc_of_parse to get the support of standard MMC DT bindings

2013-02-21 Thread Thierry Reding
On Thu, Feb 21, 2013 at 02:26:37PM +0800, Joseph Lo wrote: > On Thu, 2013-02-21 at 12:20 +0800, Stephen Warren wrote: > > On 02/20/2013 07:23 PM, Joseph Lo wrote: > > > On Thu, 2013-02-21 at 01:07 +0800, Stephen Warren wrote: > > >> On 02/20/2013 12:05 AM, Joseph Lo wrote: > > >>> Updating the sdhc

Re: [PATCH] mmc: sdhci-esdhc-imx: Remove unused variables

2013-01-30 Thread Thierry Reding
On Thu, Jan 31, 2013 at 08:31:20AM +0800, Shawn Guo wrote: > On Wed, Jan 30, 2013 at 09:11:21PM +0100, Thierry Reding wrote: > > Commit 3f175a6 (mmc: sdhci-esdhc-imx: remove ESDHC_CD_GPIO handling from > > IO accessory) removed all the code that was using these variables, so it >

[PATCH] mmc: sdhci-esdhc-imx: Remove unused variables

2013-01-30 Thread Thierry Reding
Commit 3f175a6 (mmc: sdhci-esdhc-imx: remove ESDHC_CD_GPIO handling from IO accessory) removed all the code that was using these variables, so it is safe to drop them. Signed-off-by: Thierry Reding --- drivers/mmc/host/sdhci-esdhc-imx.c | 5 - 1 file changed, 5 deletions(-) diff --git a

[PATCH 18/33] mmc: Convert to devm_ioremap_resource()

2013-01-21 Thread Thierry Reding
Convert all uses of devm_request_and_ioremap() to the newly introduced devm_ioremap_resource() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages so all explicit error messages can be removed from the failure code paths. Signed-off-by: Thierry

Re: [PATCH] SDIO / PM: Add empty bus-level suspend/resume callbacks

2012-12-02 Thread Thierry Reding
; > > Rafael > > > > Hi Rafael, > > I just discovered that this patch has since been reverted - with an 'ack' > > from you: > > -- > > commit d8e2ac330f65bcf47e8894fe5331a7e8ee019c06 > > Author: Thierry Reding > > Date: Th

[PATCH] mmc: sdio: Fix PM_SLEEP related build warnings

2012-08-09 Thread Thierry Reding
Power management callbacks defined by SIMPLE_DEV_PM_OPS are only used if the PM_SLEEP Kconfig symbol has been defined. If not, the compiler will complain about them being unused. However, since the callback for this driver doesn't do anything it can just as well be dropped. Signed-off-by: Th

Re: [PATCH] mmc: sdio: Fix PM_SLEEP related build warnings

2012-08-09 Thread Thierry Reding
On Thu, Aug 09, 2012 at 11:27:02AM +0200, Rafael J. Wysocki wrote: > On Thursday, August 09, 2012, Thierry Reding wrote: > > Power management callbacks defined by SIMPLE_DEV_PM_OPS are only used if > > the PM_SLEEP Kconfig symbol has been defined. If not, the compiler will > >

[PATCH] mmc: sdio: Fix PM_SLEEP related build warnings

2012-08-08 Thread Thierry Reding
Power management callbacks defined by SIMPLE_DEV_PM_OPS are only used if the PM_SLEEP Kconfig symbol has been defined. If not, the compiler will complain about them being unused. Signed-off-by: Thierry Reding --- drivers/mmc/core/sdio_bus.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion

Re: Where to power on the wifi device before loading the driver.

2012-06-13 Thread Thierry Reding
On Wed, Jun 13, 2012 at 03:17:06PM -0600, Stephen Warren wrote: > On 06/13/2012 04:40 AM, Wei Ni wrote: > > Hi, all > > I'm working on the tegra30 wifi upstream issue. > > > > The tegra30 board (Cardhu) use Broadcom 4329 as wifi device, and use > > brcmfmac as the wifi driver. > > > > In the brc