xref: /freebsd/sys/dev/mmc/mmcbr_if.m (revision 031beb4e239bfce798af17f5fe8dba8bcaf13d99)
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
54114b4164SWarner Losh#include <sys/types.h>
55114b4164SWarner Losh#include <dev/mmc/mmcreg.h>
56114b4164SWarner Losh
57114b4164SWarner Losh#
58114b4164SWarner Losh# This is the interface that a mmc bridge chip gives to the mmc bus
59114b4164SWarner Losh# that attaches to the mmc bridge.
60114b4164SWarner Losh#
61114b4164SWarner Losh
62114b4164SWarner LoshINTERFACE mmcbr;
63114b4164SWarner Losh
64114b4164SWarner Losh#
650f34084fSMarius Strobl# Default implementations of some methods.
660f34084fSMarius Strobl#
670f34084fSMarius StroblCODE {
680f34084fSMarius Strobl	static int
690f34084fSMarius Strobl	null_switch_vccq(device_t brdev __unused, device_t reqdev __unused)
700f34084fSMarius Strobl	{
710f34084fSMarius Strobl
720f34084fSMarius Strobl		return (0);
730f34084fSMarius Strobl	}
74aca38eabSMarius Strobl
75aca38eabSMarius Strobl	static int
76aca38eabSMarius Strobl	null_retune(device_t brdev __unused, device_t reqdev __unused,
77aca38eabSMarius Strobl	    bool reset __unused)
78aca38eabSMarius Strobl	{
79aca38eabSMarius Strobl
80aca38eabSMarius Strobl		return (0);
81aca38eabSMarius Strobl	}
82aca38eabSMarius Strobl
83aca38eabSMarius Strobl	static int
84aca38eabSMarius Strobl	null_tune(device_t brdev __unused, device_t reqdev __unused,
85aca38eabSMarius Strobl	    bool hs400 __unused)
86aca38eabSMarius Strobl	{
87aca38eabSMarius Strobl
88aca38eabSMarius Strobl		return (0);
89aca38eabSMarius Strobl	}
900f34084fSMarius Strobl};
910f34084fSMarius Strobl
920f34084fSMarius Strobl#
93c11bbc7dSMarius Strobl# Called by the mmcbus to set up the IO pins correctly, the common/core
94c11bbc7dSMarius Strobl# supply voltage (VDD/VCC) to use for the device, the clock frequency, the
95c11bbc7dSMarius Strobl# type of SPI chip select, power mode and bus width.
96114b4164SWarner Losh#
97114b4164SWarner LoshMETHOD int update_ios {
98114b4164SWarner Losh	device_t	brdev;
99114b4164SWarner Losh	device_t	reqdev;
100114b4164SWarner Losh};
101114b4164SWarner Losh
102114b4164SWarner Losh#
1030f34084fSMarius Strobl# Called by the mmcbus to switch the signaling voltage (VCCQ).
1040f34084fSMarius Strobl#
1050f34084fSMarius StroblMETHOD int switch_vccq {
1060f34084fSMarius Strobl	device_t	brdev;
1070f34084fSMarius Strobl	device_t	reqdev;
1080f34084fSMarius Strobl} DEFAULT null_switch_vccq;
1090f34084fSMarius Strobl
1100f34084fSMarius Strobl#
111aca38eabSMarius Strobl# Called by the mmcbus with the bridge claimed to execute initial tuning.
112aca38eabSMarius Strobl#
113aca38eabSMarius StroblMETHOD int tune {
114aca38eabSMarius Strobl	device_t	brdev;
115aca38eabSMarius Strobl	device_t	reqdev;
116aca38eabSMarius Strobl	bool		hs400;
117aca38eabSMarius Strobl} DEFAULT null_tune;
118aca38eabSMarius Strobl
119aca38eabSMarius Strobl#
120aca38eabSMarius Strobl# Called by the mmcbus with the bridge claimed to execute re-tuning.
121aca38eabSMarius Strobl#
122aca38eabSMarius StroblMETHOD int retune {
123aca38eabSMarius Strobl	device_t	brdev;
124aca38eabSMarius Strobl	device_t	reqdev;
125aca38eabSMarius Strobl	bool		reset;
126aca38eabSMarius Strobl} DEFAULT null_retune;
127aca38eabSMarius Strobl
128aca38eabSMarius Strobl#
129114b4164SWarner Losh# Called by the mmcbus or its children to schedule a mmc request.  These
130114b4164SWarner Losh# requests are queued.  Time passes.  The bridge then gets notification
131c11bbc7dSMarius Strobl# of the status of the request, who then notifies the requesting device
132c11bbc7dSMarius Strobl# by calling the completion function supplied as part of the request.
133aca38eabSMarius Strobl# Requires the bridge to be claimed.
134114b4164SWarner Losh#
135114b4164SWarner LoshMETHOD int request {
136114b4164SWarner Losh	device_t	brdev;
137114b4164SWarner Losh	device_t	reqdev;
138114b4164SWarner Losh	struct mmc_request *req;
139114b4164SWarner Losh};
140114b4164SWarner Losh
141114b4164SWarner Losh#
142114b4164SWarner Losh# Called by mmcbus to get the read only status bits.
143114b4164SWarner Losh#
144114b4164SWarner LoshMETHOD int get_ro {
145114b4164SWarner Losh	device_t	brdev;
146114b4164SWarner Losh	device_t	reqdev;
147114b4164SWarner Losh};
148114b4164SWarner Losh
149114b4164SWarner Losh#
150114b4164SWarner Losh# Claim the current bridge, blocking the current thread until the host
151114b4164SWarner Losh# is no longer busy.
152114b4164SWarner Losh#
153114b4164SWarner LoshMETHOD int acquire_host {
154114b4164SWarner Losh	device_t	brdev;
155114b4164SWarner Losh	device_t	reqdev;
156aca38eabSMarius Strobl};
157114b4164SWarner Losh
158114b4164SWarner Losh#
159114b4164SWarner Losh# Release the current bridge.
160114b4164SWarner Losh#
161114b4164SWarner LoshMETHOD int release_host {
162114b4164SWarner Losh	device_t	brdev;
163114b4164SWarner Losh	device_t	reqdev;
164aca38eabSMarius Strobl};
165