mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 07:26:45 +07:00
214fc309d1
Add a debounce parameter to the mmc_gpio_request_cd() function that enables GPIO debouncing when set to a non-zero value. This can be used by MMC host drivers to enable debouncing on the card detect signal. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Chris Ball <cjb@laptop.org>
26 lines
728 B
C
26 lines
728 B
C
/*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef MMC_SLOT_GPIO_H
|
|
#define MMC_SLOT_GPIO_H
|
|
|
|
struct mmc_host;
|
|
|
|
int mmc_gpio_get_ro(struct mmc_host *host);
|
|
int mmc_gpio_request_ro(struct mmc_host *host, unsigned int gpio);
|
|
void mmc_gpio_free_ro(struct mmc_host *host);
|
|
|
|
int mmc_gpio_get_cd(struct mmc_host *host);
|
|
int mmc_gpio_request_cd(struct mmc_host *host, unsigned int gpio,
|
|
unsigned int debounce);
|
|
void mmc_gpio_free_cd(struct mmc_host *host);
|
|
|
|
#endif
|