Message ID | 1385386009-14981-3-git-send-email-afenkart@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
* Andreas Fenkart <afenkart@gmail.com> [131125 05:30]: > --- a/drivers/mmc/host/omap_hsmmc.c > +++ b/drivers/mmc/host/omap_hsmmc.c > @@ -452,10 +475,23 @@ static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata) > } else > pdata->slots[0].gpio_wp = -EINVAL; > > + if (gpio_is_valid(pdata->slots[0].gpio_cirq)) { > + ret = gpio_request_one(pdata->slots[0].gpio_cirq, GPIOF_DIR_IN, > + "sdio_cirq"); > + if (ret) > + goto err_free_ro; > + > + } else { > + pdata->slots[0].gpio_cirq = -EINVAL; > + } > + > + > return 0; > > +err_free_ro: > + if (gpio_is_valid(pdata->slots[0].gpio_wp)) > err_free_wp: > - gpio_free(pdata->slots[0].gpio_wp); > + gpio_free(pdata->slots[0].gpio_wp); > err_free_cd: > if (gpio_is_valid(pdata->slots[0].switch_pin)) > err_free_sp: This patch we can now make a bit more generic with the recent addition of interrupts-extended property that's now merged in mainline tree :) We can optionally pass two interrupts to omap_hsmmc.c where the second interrupt is either the pinctrl-single wake-up interrupt, or the GPIO interrupt. Both the iochain wake interrupt or the GPIO interrupt are available with request_irq as long as configured in the .dts file. And can both use the SDIO interrupt handler. The only difference is that the GPIO wake-up still needs to do the dynamic remuxing of pins. So omap3 can use: mmc: mmc@4800abcd { compatible = "ti,omap3-hsmmc"; ... interrupts-extended = <&intc 83 &omap3_pmx_core 0x11a>; ... }; And am33xx can use: mmc: mmc@4810abcd { compatible = "ti,omap33xx-hsmmc"; ... interrupts-extended = <&intc 64 &gpio3 28>; ... }; Then the logic of enabling the dynamic remuxing can be done based on the ti,omap33xx-hsmmc compatible flag if there are two interrupts and the needed pin states are defined. > @@ -1791,6 +1890,7 @@ static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev) > pdata->nr_slots = 1; > pdata->slots[0].switch_pin = cd_gpio; > pdata->slots[0].gpio_wp = wp_gpio; > + pdata->slots[0].gpio_cirq = of_get_named_gpio(np, "ti,cirq-gpio", 0); > > if (of_find_property(np, "ti,non-removable", NULL)) { > pdata->slots[0].nonremovable = true; We should just add the two interrupts to the host, not to the pdata. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi, On Mon, Nov 25, 2013 at 02:46:02PM -0800, Tony Lindgren wrote: > * Andreas Fenkart <afenkart@gmail.com> [131125 05:30]: > > --- a/drivers/mmc/host/omap_hsmmc.c > > +++ b/drivers/mmc/host/omap_hsmmc.c > > @@ -452,10 +475,23 @@ static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata) > > } else > > pdata->slots[0].gpio_wp = -EINVAL; > > > > + if (gpio_is_valid(pdata->slots[0].gpio_cirq)) { > > + ret = gpio_request_one(pdata->slots[0].gpio_cirq, GPIOF_DIR_IN, > > + "sdio_cirq"); > > + if (ret) > > + goto err_free_ro; > > + > > + } else { > > + pdata->slots[0].gpio_cirq = -EINVAL; > > + } > > + > > + > > return 0; > > > > +err_free_ro: > > + if (gpio_is_valid(pdata->slots[0].gpio_wp)) > > err_free_wp: > > - gpio_free(pdata->slots[0].gpio_wp); > > + gpio_free(pdata->slots[0].gpio_wp); > > err_free_cd: > > if (gpio_is_valid(pdata->slots[0].switch_pin)) > > err_free_sp: > > This patch we can now make a bit more generic with the recent addition > of interrupts-extended property that's now merged in mainline tree :) > > We can optionally pass two interrupts to omap_hsmmc.c where the second > interrupt is either the pinctrl-single wake-up interrupt, or the GPIO > interrupt. > > Both the iochain wake interrupt or the GPIO interrupt are available with > request_irq as long as configured in the .dts file. And can both use the > SDIO interrupt handler. The only difference is that the GPIO wake-up > still needs to do the dynamic remuxing of pins. could that be done automatically if DTS provides "suspend" pinctrl state ? Would that be done before or after driver's ->{runtime_,}suspend() methods ? > mmc: mmc@4810abcd { > compatible = "ti,omap33xx-hsmmc"; I would rather call it "ti,am33xx-hsmmc" just to make it match marketing name of the device. > Then the logic of enabling the dynamic remuxing can be done based > on the ti,omap33xx-hsmmc compatible flag if there are two interrupts > and the needed pin states are defined. or maybe dynamic remuxing can be done by calling pinctrl_select_state() with appropriate arguments ?
* Felipe Balbi <balbi@ti.com> [131125 17:17]: > Hi, > > On Mon, Nov 25, 2013 at 02:46:02PM -0800, Tony Lindgren wrote: > > * Andreas Fenkart <afenkart@gmail.com> [131125 05:30]: > > > --- a/drivers/mmc/host/omap_hsmmc.c > > > +++ b/drivers/mmc/host/omap_hsmmc.c > > > @@ -452,10 +475,23 @@ static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata) > > > } else > > > pdata->slots[0].gpio_wp = -EINVAL; > > > > > > + if (gpio_is_valid(pdata->slots[0].gpio_cirq)) { > > > + ret = gpio_request_one(pdata->slots[0].gpio_cirq, GPIOF_DIR_IN, > > > + "sdio_cirq"); > > > + if (ret) > > > + goto err_free_ro; > > > + > > > + } else { > > > + pdata->slots[0].gpio_cirq = -EINVAL; > > > + } > > > + > > > + > > > return 0; > > > > > > +err_free_ro: > > > + if (gpio_is_valid(pdata->slots[0].gpio_wp)) > > > err_free_wp: > > > - gpio_free(pdata->slots[0].gpio_wp); > > > + gpio_free(pdata->slots[0].gpio_wp); > > > err_free_cd: > > > if (gpio_is_valid(pdata->slots[0].switch_pin)) > > > err_free_sp: > > > > This patch we can now make a bit more generic with the recent addition > > of interrupts-extended property that's now merged in mainline tree :) > > > > We can optionally pass two interrupts to omap_hsmmc.c where the second > > interrupt is either the pinctrl-single wake-up interrupt, or the GPIO > > interrupt. > > > > Both the iochain wake interrupt or the GPIO interrupt are available with > > request_irq as long as configured in the .dts file. And can both use the > > SDIO interrupt handler. The only difference is that the GPIO wake-up > > still needs to do the dynamic remuxing of pins. > > could that be done automatically if DTS provides "suspend" pinctrl > state ? Yes based on the compatible flag and the provided named pin states. > Would that be done before or after driver's ->{runtime_,}suspend() > methods ? Pins need to remuxed to GPIO input on 33xx in runtime suspend, and then back to SDIO dat1 in runtime resume. Possibly needs to be done also for 34xx, but that's yet to be seen. > > mmc: mmc@4810abcd { > > compatible = "ti,omap33xx-hsmmc"; > > I would rather call it "ti,am33xx-hsmmc" just to make it match marketing > name of the device. Except you have both am33xx and dm33xx where the only difference is the DSP on dm33xx? Other than that, I'm fine with am33xx naming as long as it's clear to people and does not involve adding dm33xx stuff separately. > > Then the logic of enabling the dynamic remuxing can be done based > > on the ti,omap33xx-hsmmc compatible flag if there are two interrupts > > and the needed pin states are defined. > > or maybe dynamic remuxing can be done by calling pinctrl_select_state() > with appropriate arguments ? Yes the way to do the remuxing is to call pinctrl_select_state() on the named state desired. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Tuesday 26 November 2013 04:16 AM, Tony Lindgren wrote: > * Andreas Fenkart <afenkart@gmail.com> [131125 05:30]: >> --- a/drivers/mmc/host/omap_hsmmc.c >> +++ b/drivers/mmc/host/omap_hsmmc.c >> @@ -452,10 +475,23 @@ static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata) >> } else >> pdata->slots[0].gpio_wp = -EINVAL; >> >> + if (gpio_is_valid(pdata->slots[0].gpio_cirq)) { >> + ret = gpio_request_one(pdata->slots[0].gpio_cirq, GPIOF_DIR_IN, >> + "sdio_cirq"); >> + if (ret) >> + goto err_free_ro; >> + >> + } else { >> + pdata->slots[0].gpio_cirq = -EINVAL; >> + } >> + >> + >> return 0; >> >> +err_free_ro: >> + if (gpio_is_valid(pdata->slots[0].gpio_wp)) >> err_free_wp: >> - gpio_free(pdata->slots[0].gpio_wp); >> + gpio_free(pdata->slots[0].gpio_wp); >> err_free_cd: >> if (gpio_is_valid(pdata->slots[0].switch_pin)) >> err_free_sp: > > This patch we can now make a bit more generic with the recent addition > of interrupts-extended property that's now merged in mainline tree :) > > We can optionally pass two interrupts to omap_hsmmc.c where the second > interrupt is either the pinctrl-single wake-up interrupt, or the GPIO > interrupt. > > Both the iochain wake interrupt or the GPIO interrupt are available with > request_irq as long as configured in the .dts file. And can both use the > SDIO interrupt handler. The only difference is that the GPIO wake-up > still needs to do the dynamic remuxing of pins. > > So omap3 can use: > > mmc: mmc@4800abcd { > compatible = "ti,omap3-hsmmc"; > ... > interrupts-extended = <&intc 83 &omap3_pmx_core 0x11a>; > ... > }; > > And am33xx can use: > > mmc: mmc@4810abcd { > compatible = "ti,omap33xx-hsmmc"; > ... > interrupts-extended = <&intc 64 &gpio3 28>; > ... > }; > Hi Tony, I made similar changes for omap4 panda-es as below, but get WARNING for no irq domain [1] omap3 beagle seems to be OK. mmc1: mmc@4809c000 { compatible = "ti,omap4-hsmmc"; reg = <0x4809c000 0x400>; + interrupts-extended = <&gic GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH &omap4_pmx_core 0xa8>; ti,hwmods = "mmc1"; [ 0.338745] OMAP GPIO hardware version 0.1 [ 0.348266] omap-gpmc 50000000.gpmc: GPMC revision 6.0 [ 0.354339] irq: no irq domain found for /ocp/pinmux@4a100040 ! [ 0.354339] ------------[ cut here ]------------ [ 0.354370] WARNING: CPU: 1 PID: 1 at /home/a0393241/git/lo/drivers/of/platform.c:171 of_device_alloc+0x158/0x16c() [ 0.354370] Modules linked in: [ 0.354400] CPU: 1 PID: 1 Comm: swapper/0 Not tainted 3.13.0-rc1-00141-g8ae516a-dirty #36 [ 0.354431] [<c001520c>] (unwind_backtrace+0x0/0xf0) from [<c0011ef4>] (show_stack+0x10/0x14) [ 0.354431] [<c0011ef4>] (show_stack+0x10/0x14) from [<c0521750>] (dump_stack+0x78/0x94) [ 0.354461] [<c0521750>] (dump_stack+0x78/0x94) from [<c003e678>] (warn_slowpath_common+0x6c/0x90) [ 0.354492] [<c003e678>] (warn_slowpath_common+0x6c/0x90) from [<c003e6b8>] (warn_slowpath_null+0x1c/0x24) [ 0.354492] [<c003e6b8>] (warn_slowpath_null+0x1c/0x24) from [<c04460e4>] (of_device_alloc+0x158/0x16c) [ 0.354522] [<c04460e4>] (of_device_alloc+0x158/0x16c) from [<c0446128>] (of_platform_device_create_pdata+0x30/0x94) [ 0.354522] [<c0446128>] (of_platform_device_create_pdata+0x30/0x94) from [<c044626c>] (of_platform_bus_create+0xe0/0x164) [ 0.354553] [<c044626c>] (of_platform_bus_create+0xe0/0x164) from [<c04462c8>] (of_platform_bus_create+0x13c/0x164) [ 0.354553] [<c04462c8>] (of_platform_bus_create+0x13c/0x164) from [<c044634c>] (of_platform_populate+0x5c/0x9c) [ 0.354583] [<c044634c>] (of_platform_populate+0x5c/0x9c) from [<c0785c38>] (pdata_quirks_init+0x28/0x70) [ 0.354614] [<c0785c38>] (pdata_quirks_init+0x28/0x70) from [<c0777458>] (customize_machine+0x1c/0x40) [ 0.354614] [<c0777458>] (customize_machine+0x1c/0x40) from [<c00088fc>] (do_one_initcall+0xec/0x150) [ 0.354644] [<c00088fc>] (do_one_initcall+0xec/0x150) from [<c0774bfc>] (kernel_init_freeable+0xfc/0x1cc) [ 0.354644] [<c0774bfc>] (kernel_init_freeable+0xfc/0x1cc) from [<c051c9ac>] (kernel_init+0x8/0x118) [ 0.354675] [<c051c9ac>] (kernel_init+0x8/0x118) from [<c000e5e8>] (ret_from_fork+0x14/0x2c) [ 0.354766] ---[ end trace 7067c7558a4cd015 ]--- [ 0.366607] platform 4b501000.aes: Cannot lookup hwmod 'aes' [ 0.367034] platform 480a5000.des: Cannot lookup hwmod 'des' [ 0.374481] No ATAGs? [ 0.374511] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers. [ 0.374542] hw-breakpoint: maximum watchpoint size is 4 bytes. [ 0.377502] OMAP DMA hardware revision 0.0 [ 0.415100] bio: create slab <bio-0> at 0 [ 0.417388] edma-dma-engine edma-dma-engine.0: Can't allocate PaRAM dummy slot [ 0.417419] edma-dma-engine: probe of edma-dma-engine.0 failed with error -5 [ 0.460754] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver [ 0.462249] hsusb1_vbus: 3300 mV -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
* Balaji T K <balajitk@ti.com> [131127 09:00]: > On Tuesday 26 November 2013 04:16 AM, Tony Lindgren wrote: > > > >This patch we can now make a bit more generic with the recent addition > >of interrupts-extended property that's now merged in mainline tree :) > > > >We can optionally pass two interrupts to omap_hsmmc.c where the second > >interrupt is either the pinctrl-single wake-up interrupt, or the GPIO > >interrupt. > > > >Both the iochain wake interrupt or the GPIO interrupt are available with > >request_irq as long as configured in the .dts file. And can both use the > >SDIO interrupt handler. The only difference is that the GPIO wake-up > >still needs to do the dynamic remuxing of pins. > > > >So omap3 can use: > > > >mmc: mmc@4800abcd { > > compatible = "ti,omap3-hsmmc"; > > ... > > interrupts-extended = <&intc 83 &omap3_pmx_core 0x11a>; > > ... > >}; > > > >And am33xx can use: > > > >mmc: mmc@4810abcd { > > compatible = "ti,omap33xx-hsmmc"; > > ... > > interrupts-extended = <&intc 64 &gpio3 28>; > > ... > >}; > > > Hi Tony, > > I made similar changes for omap4 panda-es as below, but get WARNING for no irq domain [1] > omap3 beagle seems to be OK. > > mmc1: mmc@4809c000 { > compatible = "ti,omap4-hsmmc"; > reg = <0x4809c000 0x400>; > + interrupts-extended = <&gic GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH &omap4_pmx_core 0xa8>; > ti,hwmods = "mmc1"; > > [ 0.338745] OMAP GPIO hardware version 0.1 > [ 0.348266] omap-gpmc 50000000.gpmc: GPMC revision 6.0 > [ 0.354339] irq: no irq domain found for /ocp/pinmux@4a100040 ! > [ 0.354339] ------------[ cut here ]------------ > [ 0.354370] WARNING: CPU: 1 PID: 1 at /home/a0393241/git/lo/drivers/of/platform.c:171 of_device_alloc+0x158/0x16c() > [ 0.354370] Modules linked in: > [ 0.354400] CPU: 1 PID: 1 Comm: swapper/0 Not tainted 3.13.0-rc1-00141-g8ae516a-dirty #36 > [ 0.354431] [<c001520c>] (unwind_backtrace+0x0/0xf0) from [<c0011ef4>] (show_stack+0x10/0x14) > [ 0.354431] [<c0011ef4>] (show_stack+0x10/0x14) from [<c0521750>] (dump_stack+0x78/0x94) > [ 0.354461] [<c0521750>] (dump_stack+0x78/0x94) from [<c003e678>] (warn_slowpath_common+0x6c/0x90) > [ 0.354492] [<c003e678>] (warn_slowpath_common+0x6c/0x90) from [<c003e6b8>] (warn_slowpath_null+0x1c/0x24) > [ 0.354492] [<c003e6b8>] (warn_slowpath_null+0x1c/0x24) from [<c04460e4>] (of_device_alloc+0x158/0x16c) > [ 0.354522] [<c04460e4>] (of_device_alloc+0x158/0x16c) from [<c0446128>] (of_platform_device_create_pdata+0x30/0x94) > [ 0.354522] [<c0446128>] (of_platform_device_create_pdata+0x30/0x94) from [<c044626c>] (of_platform_bus_create+0xe0/0x164) > [ 0.354553] [<c044626c>] (of_platform_bus_create+0xe0/0x164) from [<c04462c8>] (of_platform_bus_create+0x13c/0x164) > [ 0.354553] [<c04462c8>] (of_platform_bus_create+0x13c/0x164) from [<c044634c>] (of_platform_populate+0x5c/0x9c) > [ 0.354583] [<c044634c>] (of_platform_populate+0x5c/0x9c) from [<c0785c38>] (pdata_quirks_init+0x28/0x70) > [ 0.354614] [<c0785c38>] (pdata_quirks_init+0x28/0x70) from [<c0777458>] (customize_machine+0x1c/0x40) > [ 0.354614] [<c0777458>] (customize_machine+0x1c/0x40) from [<c00088fc>] (do_one_initcall+0xec/0x150) > [ 0.354644] [<c00088fc>] (do_one_initcall+0xec/0x150) from [<c0774bfc>] (kernel_init_freeable+0xfc/0x1cc) > [ 0.354644] [<c0774bfc>] (kernel_init_freeable+0xfc/0x1cc) from [<c051c9ac>] (kernel_init+0x8/0x118) > [ 0.354675] [<c051c9ac>] (kernel_init+0x8/0x118) from [<c000e5e8>] (ret_from_fork+0x14/0x2c) > [ 0.354766] ---[ end trace 7067c7558a4cd015 ]--- Yeah that's nasty looking but harmless, so you can ignore that for now :) See the thread "[PATCH] of/platform: Fix no irq domain found errors when populating interrupts" on LAKML for attempted fix for that. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/Documentation/devicetree/bindings/mmc/ti-omap-hsmmc.txt b/Documentation/devicetree/bindings/mmc/ti-omap-hsmmc.txt index 1136e6b..146f3ad 100644 --- a/Documentation/devicetree/bindings/mmc/ti-omap-hsmmc.txt +++ b/Documentation/devicetree/bindings/mmc/ti-omap-hsmmc.txt @@ -21,8 +21,11 @@ ti,non-removable: non-removable slot (like eMMC) ti,needs-special-reset: Requires a special softreset sequence ti,needs-special-hs-handling: HSMMC IP needs special setting for handling High Speed ti,quirk-swakup-missing: SOC missing the swakeup line, will not detect -SDIO irq while in suspend. Fallback to polling. Affected chips are -am335x, +SDIO irq while in suspend. The workaround is to reconfigure the dat1 line as a +GPIO upon suspend. Beyond this option and the GPIO config, you also need to set +named pinctrl states "default", "active" and "idle ", see example below. The +MMC driver will then then toggle between default and idle during the runtime +Affected chips are am335x, ------ | PRCM | @@ -49,3 +52,24 @@ Example: vmmc-supply = <&vmmc>; /* phandle to regulator node */ ti,non-removable; }; + +[am335x with with gpio for sdio irq] + + mmc1_cirq_pin: pinmux_cirq_pin { + pinctrl-single,pins = < + 0x0f8 0x3f /* MMC0_DAT1 as GPIO2_28 */ + >; + }; + + mmc1: mmc@48060000 { + ti,non-removable; + bus-width = <4>; + vmmc-supply = <&ldo2_reg>; + vmmc_aux-supply = <&vmmc>; + ti,quirk-swakeup-missing; + pinctrl-names = "default", "active", "idle"; + pinctrl-0 = <&mmc1_pins>; + pinctrl-1 = <&mmc1_pins>; + pinctrl-2 = <&mmc1_cirq_pin>; + ti,cirq-gpio = <&gpio3 28 0>; + }; diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index 6b0ec55..c8c54f5 100644 --- a/drivers/mmc/host/omap_hsmmc.c +++ b/drivers/mmc/host/omap_hsmmc.c @@ -36,6 +36,7 @@ #include <linux/mmc/core.h> #include <linux/mmc/mmc.h> #include <linux/io.h> +#include <linux/irq.h> #include <linux/gpio.h> #include <linux/regulator/consumer.h> #include <linux/pinctrl/consumer.h> @@ -202,6 +203,7 @@ struct omap_hsmmc_host { u32 hctl; u32 capa; int irq; + int gpio_sdio_irq; int use_dma, dma_ch; struct dma_chan *tx_chan; struct dma_chan *rx_chan; @@ -213,11 +215,32 @@ struct omap_hsmmc_host { int req_in_progress; int flags; #define HSMMC_SDIO_IRQ_ENABLED (1 << 0) /* SDIO irq enabled */ +#define HSMMC_SWAKEUP_QUIRK (1 << 1) +#define HSMMC_CIRQ_GPIO_ENABLED (1 << 2) struct omap_hsmmc_next next_data; + struct pinctrl *pinctrl; + struct pinctrl_state *fixed, *active, *idle; struct omap_mmc_platform_data *pdata; }; +static irqreturn_t omap_hsmmc_cirq(int irq, void *dev_id) +{ + struct omap_hsmmc_host *host = dev_id; + unsigned long flags; + + spin_lock_irqsave(&host->irq_lock, flags); + if (host->flags & HSMMC_CIRQ_GPIO_ENABLED) { + disable_irq_nosync(host->gpio_sdio_irq); + host->flags &= ~HSMMC_CIRQ_GPIO_ENABLED; + } + spin_unlock_irqrestore(&host->irq_lock, flags); + + pm_request_resume(host->dev); /* no use counter */ + + return IRQ_HANDLED; +} + static int omap_hsmmc_card_detect(struct device *dev, int slot) { struct omap_hsmmc_host *host = dev_get_drvdata(dev); @@ -452,10 +475,23 @@ static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata) } else pdata->slots[0].gpio_wp = -EINVAL; + if (gpio_is_valid(pdata->slots[0].gpio_cirq)) { + ret = gpio_request_one(pdata->slots[0].gpio_cirq, GPIOF_DIR_IN, + "sdio_cirq"); + if (ret) + goto err_free_ro; + + } else { + pdata->slots[0].gpio_cirq = -EINVAL; + } + + return 0; +err_free_ro: + if (gpio_is_valid(pdata->slots[0].gpio_wp)) err_free_wp: - gpio_free(pdata->slots[0].gpio_wp); + gpio_free(pdata->slots[0].gpio_wp); err_free_cd: if (gpio_is_valid(pdata->slots[0].switch_pin)) err_free_sp: @@ -469,6 +505,69 @@ static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata) gpio_free(pdata->slots[0].gpio_wp); if (gpio_is_valid(pdata->slots[0].switch_pin)) gpio_free(pdata->slots[0].switch_pin); + if (gpio_is_valid(pdata->slots[0].gpio_cirq)) + gpio_free(pdata->slots[0].gpio_cirq); +} + +static int omap_hsmmc_pin_init(struct omap_hsmmc_host *host) +{ + int ret; + + host->pinctrl = devm_pinctrl_get(host->dev); + if (IS_ERR(host->pinctrl)) { + dev_dbg(host->dev, "no pinctrl handle\n"); + ret = 0; + goto out; + } + + host->fixed = pinctrl_lookup_state(host->pinctrl, + PINCTRL_STATE_DEFAULT); + if (IS_ERR(host->fixed)) { + dev_dbg(host->dev, + "pins are not configured from the driver\n"); + host->fixed = NULL; + ret = 0; + goto out; + } + + ret = pinctrl_select_state(host->pinctrl, host->fixed); + if (ret < 0) + goto err; + + /* For most cases we don't have wake-ups, and exit after this */ + host->active = pinctrl_lookup_state(host->pinctrl, "active"); + if (IS_ERR(host->active)) { + ret = PTR_ERR(host->active); + host->active = NULL; + return 0; + } + + host->idle = pinctrl_lookup_state(host->pinctrl, + PINCTRL_STATE_IDLE); + if (IS_ERR(host->idle)) { + ret = PTR_ERR(host->idle); + host->idle = NULL; + goto err; + } + + /* Let's make sure the active and idle states work */ + ret = pinctrl_select_state(host->pinctrl, host->idle); + if (ret < 0) + goto err; + + ret = pinctrl_select_state(host->pinctrl, host->active); + if (ret < 0) + goto err; + + dev_info(mmc_dev(host->mmc), "pins configured for wake-up events\n"); + + return 0; + +err: + dev_err(mmc_dev(host->mmc), "pins configuration error: %i\n", ret); + +out: + return ret; } /* @@ -1791,6 +1890,7 @@ static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev) pdata->nr_slots = 1; pdata->slots[0].switch_pin = cd_gpio; pdata->slots[0].gpio_wp = wp_gpio; + pdata->slots[0].gpio_cirq = of_get_named_gpio(np, "ti,cirq-gpio", 0); if (of_find_property(np, "ti,non-removable", NULL)) { pdata->slots[0].nonremovable = true; @@ -1837,7 +1937,6 @@ static int omap_hsmmc_probe(struct platform_device *pdev) const struct of_device_id *match; dma_cap_mask_t mask; unsigned tx_req, rx_req; - struct pinctrl *pinctrl; match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev); if (match) { @@ -1875,7 +1974,7 @@ static int omap_hsmmc_probe(struct platform_device *pdev) ret = omap_hsmmc_gpio_init(pdata); if (ret) - goto err; + goto err_gpio; mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev); if (!mmc) { @@ -2068,10 +2167,27 @@ static int omap_hsmmc_probe(struct platform_device *pdev) omap_hsmmc_disable_irq(host); - pinctrl = devm_pinctrl_get_select_default(&pdev->dev); - if (IS_ERR(pinctrl)) - dev_warn(&pdev->dev, - "pins are not configured from the driver\n"); + ret = omap_hsmmc_pin_init(host); + if (ret) + goto err_pinctrl_state; + + if (mmc_slot(host).gpio_cirq != -EINVAL) { + ret = gpio_to_irq(mmc_slot(host).gpio_cirq); + if (ret < 0) + goto err_irq_sdio; + host->gpio_sdio_irq = ret; + + /* prevent auto-enabling of IRQ */ + irq_set_status_flags(host->gpio_sdio_irq, IRQ_NOAUTOEN); + ret = request_irq(host->gpio_sdio_irq, omap_hsmmc_cirq, + IRQF_TRIGGER_LOW | IRQF_ONESHOT, + mmc_hostname(mmc), host); + if (ret) { + dev_dbg(mmc_dev(host->mmc), + "Unable to grab MMC SDIO IRQ\n"); + goto err_irq_sdio; + } + } /* * For now, only support SDIO interrupt if we are booted with @@ -2084,8 +2200,14 @@ static int omap_hsmmc_probe(struct platform_device *pdev) mmc->caps |= MMC_CAP_SDIO_IRQ; if (of_find_property(host->dev->of_node, "ti,quirk-swakeup-missing", NULL)) { - /* no wakeup from deeper power states, use polling */ - mmc->caps &= ~MMC_CAP_SDIO_IRQ; + /* use GPIO to wakeup from deeper power states */ + if (!host->idle || !host->gpio_sdio_irq) { + dev_err(mmc_dev(host->mmc), + "Missing GPIO config or pinctrl idle state\n"); + goto err_irq_sdio; + } + + host->flags |= HSMMC_SWAKEUP_QUIRK; } } @@ -2113,7 +2235,13 @@ static int omap_hsmmc_probe(struct platform_device *pdev) err_slot_name: mmc_remove_host(mmc); - free_irq(mmc_slot(host).card_detect_irq, host); +err_irq_sdio: + if (host->gpio_sdio_irq) + free_irq(host->gpio_sdio_irq, host); +err_pinctrl_state: + devm_pinctrl_put(host->pinctrl); + if ((mmc_slot(host).card_detect_irq)) + free_irq(mmc_slot(host).card_detect_irq, host); err_irq_cd: if (host->use_reg) omap_hsmmc_reg_put(host); @@ -2139,7 +2267,7 @@ err1: mmc_free_host(mmc); err_alloc: omap_hsmmc_gpio_free(pdata); -err: +err_gpio: res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (res) release_mem_region(res->start, resource_size(res)); @@ -2158,13 +2286,15 @@ static int omap_hsmmc_remove(struct platform_device *pdev) if (host->pdata->cleanup) host->pdata->cleanup(&pdev->dev); free_irq(host->irq, host); + if ((host->gpio_sdio_irq)) + free_irq(host->gpio_sdio_irq, host); if (mmc_slot(host).card_detect_irq) free_irq(mmc_slot(host).card_detect_irq, host); - if (host->tx_chan) dma_release_channel(host->tx_chan); if (host->rx_chan) dma_release_channel(host->rx_chan); + devm_pinctrl_put(host->pinctrl); pm_runtime_put_sync(host->dev); pm_runtime_disable(host->dev); @@ -2231,6 +2361,9 @@ static int omap_hsmmc_suspend(struct device *dev) OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP); } + if (host->flags & HSMMC_SWAKEUP_QUIRK) + disable_irq(host->gpio_sdio_irq); + if (host->dbclk) clk_disable_unprepare(host->dbclk); @@ -2268,6 +2401,9 @@ static int omap_hsmmc_resume(struct device *dev) if (ret == 0) host->suspended = 0; + if (host->flags & HSMMC_SWAKEUP_QUIRK) + enable_irq(host->gpio_sdio_irq); + pm_runtime_mark_last_busy(host->dev); pm_runtime_put_autosuspend(host->dev); @@ -2285,23 +2421,61 @@ static int omap_hsmmc_resume(struct device *dev) static int omap_hsmmc_runtime_suspend(struct device *dev) { struct omap_hsmmc_host *host; + unsigned long flags; + int ret = 0; host = platform_get_drvdata(to_platform_device(dev)); omap_hsmmc_context_save(host); dev_dbg(dev, "disabled\n"); - return 0; + if (host->flags & HSMMC_SWAKEUP_QUIRK) { + OMAP_HSMMC_WRITE(host->base, ISE, 0); + OMAP_HSMMC_WRITE(host->base, IE, 0); + OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR); + + ret = pinctrl_select_state(host->pinctrl, host->idle); + if (ret < 0) + dev_warn(mmc_dev(host->mmc), "Unable to select idle pinmux\n"); + + spin_lock_irqsave(&host->irq_lock, flags); + if (host->flags & HSMMC_SDIO_IRQ_ENABLED) { + enable_irq(host->gpio_sdio_irq); + host->flags |= HSMMC_CIRQ_GPIO_ENABLED; + } + spin_unlock_irqrestore(&host->irq_lock, flags); + } + + return ret; } static int omap_hsmmc_runtime_resume(struct device *dev) { struct omap_hsmmc_host *host; + unsigned long flags; + int ret = 0; host = platform_get_drvdata(to_platform_device(dev)); omap_hsmmc_context_restore(host); dev_dbg(dev, "enabled\n"); - return 0; + if (host->flags & HSMMC_SWAKEUP_QUIRK) { + + spin_lock_irqsave(&host->irq_lock, flags); + if (host->flags & HSMMC_CIRQ_GPIO_ENABLED) { + disable_irq_nosync(host->gpio_sdio_irq); + host->flags &= ~HSMMC_CIRQ_GPIO_ENABLED; + } + spin_unlock_irqrestore(&host->irq_lock, flags); + + ret = pinctrl_select_state(host->pinctrl, host->active); + if (ret < 0) + dev_warn(mmc_dev(host->mmc), "Unable to select active pinmux\n"); + + OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR); + OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN); + OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN); + } + return ret; } static struct dev_pm_ops omap_hsmmc_dev_pm_ops = { diff --git a/include/linux/platform_data/mmc-omap.h b/include/linux/platform_data/mmc-omap.h index 2bf1b30..dc8337f 100644 --- a/include/linux/platform_data/mmc-omap.h +++ b/include/linux/platform_data/mmc-omap.h @@ -115,6 +115,7 @@ struct omap_mmc_platform_data { int switch_pin; /* gpio (card detect) */ int gpio_wp; /* gpio (write protect) */ + int gpio_cirq; /* gpio (card irq) */ int (*set_bus_mode)(struct device *dev, int slot, int bus_mode); int (*set_power)(struct device *dev, int slot,
The am335x can't detect pending cirq in PM runtime suspend. This patch reconfigures dat1 as a GPIO before going to suspend. SDIO interrupts are detected with the GPIO, the GPIO will only wake the module from suspend, SDIO irq detection will still happen through the IP block. Idea of remuxing the pins by Tony Lindgren as well as the implementation of omap_hsmmc_pin_init. Signed-off-by: Andreas Fenkart <afenkart@gmail.com> --- .../devicetree/bindings/mmc/ti-omap-hsmmc.txt | 28 ++- drivers/mmc/host/omap_hsmmc.c | 202 ++++++++++++++++++-- include/linux/platform_data/mmc-omap.h | 1 + 3 files changed, 215 insertions(+), 16 deletions(-)