2011-12-26 04:36:02 +08:00
|
|
|
/*
|
|
|
|
* Generic GPIO card-detect helper header
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
2012-05-01 05:31:57 +08:00
|
|
|
#ifndef MMC_SLOT_GPIO_H
|
|
|
|
#define MMC_SLOT_GPIO_H
|
2011-12-26 04:36:02 +08:00
|
|
|
|
2017-01-13 21:14:06 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/irqreturn.h>
|
|
|
|
|
2011-12-26 04:36:02 +08:00
|
|
|
struct mmc_host;
|
2012-05-01 22:27:25 +08:00
|
|
|
|
2012-05-01 22:59:38 +08:00
|
|
|
int mmc_gpio_get_ro(struct mmc_host *host);
|
2012-05-01 22:27:25 +08:00
|
|
|
int mmc_gpio_get_cd(struct mmc_host *host);
|
2014-03-10 21:02:41 +08:00
|
|
|
int mmc_gpiod_request_cd(struct mmc_host *host, const char *con_id,
|
|
|
|
unsigned int idx, bool override_active_level,
|
2014-10-02 15:08:46 +08:00
|
|
|
unsigned int debounce, bool *gpio_invert);
|
2014-08-27 19:00:51 +08:00
|
|
|
int mmc_gpiod_request_ro(struct mmc_host *host, const char *con_id,
|
2019-02-05 17:30:22 +08:00
|
|
|
unsigned int idx,
|
2014-10-02 15:08:46 +08:00
|
|
|
unsigned int debounce, bool *gpio_invert);
|
2015-01-13 03:23:18 +08:00
|
|
|
void mmc_gpio_set_cd_isr(struct mmc_host *host,
|
|
|
|
irqreturn_t (*isr)(int irq, void *dev_id));
|
2018-02-27 20:51:25 +08:00
|
|
|
int mmc_gpio_set_cd_wake(struct mmc_host *host, bool on);
|
2014-03-10 21:02:41 +08:00
|
|
|
void mmc_gpiod_request_cd_irq(struct mmc_host *host);
|
2016-10-12 10:50:37 +08:00
|
|
|
bool mmc_can_gpio_cd(struct mmc_host *host);
|
2018-01-18 00:28:05 +08:00
|
|
|
bool mmc_can_gpio_ro(struct mmc_host *host);
|
2014-03-10 21:02:41 +08:00
|
|
|
|
2011-12-26 04:36:02 +08:00
|
|
|
#endif
|