1114b4164SWarner Losh#- 2*f86e6000SWarner Losh# Copyright (c) 2006 M. Warner Losh <imp@FreeBSD.org> 3114b4164SWarner Losh# 4114b4164SWarner Losh# Redistribution and use in source and binary forms, with or without 5114b4164SWarner Losh# modification, are permitted provided that the following conditions 6114b4164SWarner Losh# are met: 7114b4164SWarner Losh# 1. Redistributions of source code must retain the above copyright 8114b4164SWarner Losh# notice, this list of conditions and the following disclaimer. 9114b4164SWarner Losh# 2. Redistributions in binary form must reproduce the above copyright 10114b4164SWarner Losh# notice, this list of conditions and the following disclaimer in the 11114b4164SWarner Losh# documentation and/or other materials provided with the distribution. 12114b4164SWarner Losh# 13114b4164SWarner Losh# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14114b4164SWarner Losh# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15114b4164SWarner Losh# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16114b4164SWarner Losh# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 17114b4164SWarner Losh# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18114b4164SWarner Losh# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19114b4164SWarner Losh# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20114b4164SWarner Losh# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21114b4164SWarner Losh# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22114b4164SWarner Losh# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23114b4164SWarner Losh# SUCH DAMAGE. 24114b4164SWarner Losh# 2514eced72SWarner Losh# Portions of this software may have been developed with reference to 2614eced72SWarner Losh# the SD Simplified Specification. The following disclaimer may apply: 2714eced72SWarner Losh# 2814eced72SWarner Losh# The following conditions apply to the release of the simplified 2914eced72SWarner Losh# specification ("Simplified Specification") by the SD Card Association and 3014eced72SWarner Losh# the SD Group. The Simplified Specification is a subset of the complete SD 3114eced72SWarner Losh# Specification which is owned by the SD Card Association and the SD 3214eced72SWarner Losh# Group. This Simplified Specification is provided on a non-confidential 3314eced72SWarner Losh# basis subject to the disclaimers below. Any implementation of the 3414eced72SWarner Losh# Simplified Specification may require a license from the SD Card 3514eced72SWarner Losh# Association, SD Group, SD-3C LLC or other third parties. 3614eced72SWarner Losh# 3714eced72SWarner Losh# Disclaimers: 3814eced72SWarner Losh# 3914eced72SWarner Losh# The information contained in the Simplified Specification is presented only 4014eced72SWarner Losh# as a standard specification for SD Cards and SD Host/Ancillary products and 4114eced72SWarner Losh# is provided "AS-IS" without any representations or warranties of any 4214eced72SWarner Losh# kind. No responsibility is assumed by the SD Group, SD-3C LLC or the SD 4314eced72SWarner Losh# Card Association for any damages, any infringements of patents or other 4414eced72SWarner Losh# right of the SD Group, SD-3C LLC, the SD Card Association or any third 4514eced72SWarner Losh# parties, which may result from its use. No license is granted by 4614eced72SWarner Losh# implication, estoppel or otherwise under any patent or other rights of the 4714eced72SWarner Losh# SD Group, SD-3C LLC, the SD Card Association or any third party. Nothing 4814eced72SWarner Losh# herein shall be construed as an obligation by the SD Group, the SD-3C LLC 4914eced72SWarner Losh# or the SD Card Association to disclose or distribute any technical 5014eced72SWarner Losh# information, know-how or other confidential information to any third party. 5114eced72SWarner Losh# 52114b4164SWarner Losh# 53114b4164SWarner Losh 54aca38eabSMarius Strobl#include <sys/types.h> 55114b4164SWarner Losh#include <dev/mmc/mmcreg.h> 56114b4164SWarner Losh 57114b4164SWarner Losh# 58aca38eabSMarius Strobl# This is the set of callbacks that the MMC subroutines and the mmc/sd card 59aca38eabSMarius Strobl# driver call into the bus to make requests. 60114b4164SWarner Losh# 61114b4164SWarner Losh 62114b4164SWarner LoshINTERFACE mmcbus; 63114b4164SWarner Losh 64114b4164SWarner Losh# 65aca38eabSMarius Strobl# Pause re-tuning, optionally with triggering re-tuning up-front. Requires 66aca38eabSMarius Strobl# the bus to be claimed. 67aca38eabSMarius Strobl# 68aca38eabSMarius StroblMETHOD void retune_pause { 69cd85acbaSMarius Strobl device_t busdev; 70aca38eabSMarius Strobl device_t reqdev; 71aca38eabSMarius Strobl bool retune; 72aca38eabSMarius Strobl}; 73aca38eabSMarius Strobl 74aca38eabSMarius Strobl# 75aca38eabSMarius Strobl# Unpause re-tuning. Requires the bus to be claimed. 76aca38eabSMarius Strobl# 77aca38eabSMarius StroblMETHOD void retune_unpause { 78cd85acbaSMarius Strobl device_t busdev; 79aca38eabSMarius Strobl device_t reqdev; 80aca38eabSMarius Strobl}; 81aca38eabSMarius Strobl 82aca38eabSMarius Strobl# 83aca38eabSMarius Strobl# Queue and wait for a request. Requires the bus to be claimed. 84114b4164SWarner Losh# 85114b4164SWarner LoshMETHOD int wait_for_request { 86cd85acbaSMarius Strobl device_t busdev; 87114b4164SWarner Losh device_t reqdev; 88114b4164SWarner Losh struct mmc_request *req; 89114b4164SWarner Losh}; 90114b4164SWarner Losh 91114b4164SWarner Losh# 92aca38eabSMarius Strobl# Claim the current bus, blocking the current thread until the host is no 93aca38eabSMarius Strobl# longer busy. 94114b4164SWarner Losh# 95114b4164SWarner LoshMETHOD int acquire_bus { 96cd85acbaSMarius Strobl device_t busdev; 97114b4164SWarner Losh device_t reqdev; 98aca38eabSMarius Strobl}; 99114b4164SWarner Losh 100114b4164SWarner Losh# 101aca38eabSMarius Strobl# Release the current bus. 102114b4164SWarner Losh# 103114b4164SWarner LoshMETHOD int release_bus { 104cd85acbaSMarius Strobl device_t busdev; 105114b4164SWarner Losh device_t reqdev; 106aca38eabSMarius Strobl}; 107