1a94a63f0SWarner Losh /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3f24882ecSPedro F. Giffuni * 4a94a63f0SWarner Losh * Copyright (c) 2014-2016 Ilya Bakulin. All rights reserved. 5a94a63f0SWarner Losh * 6a94a63f0SWarner Losh * Redistribution and use in source and binary forms, with or without 7a94a63f0SWarner Losh * modification, are permitted provided that the following conditions 8a94a63f0SWarner Losh * are met: 9a94a63f0SWarner Losh * 1. Redistributions of source code must retain the above copyright 10a94a63f0SWarner Losh * notice, this list of conditions and the following disclaimer. 11a94a63f0SWarner Losh * 2. Redistributions in binary form must reproduce the above copyright 12a94a63f0SWarner Losh * notice, this list of conditions and the following disclaimer in the 13a94a63f0SWarner Losh * documentation and/or other materials provided with the distribution. 14a94a63f0SWarner Losh * 15a94a63f0SWarner Losh * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16a94a63f0SWarner Losh * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17a94a63f0SWarner Losh * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18a94a63f0SWarner Losh * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19a94a63f0SWarner Losh * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20a94a63f0SWarner Losh * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21a94a63f0SWarner Losh * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22a94a63f0SWarner Losh * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23a94a63f0SWarner Losh * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24a94a63f0SWarner Losh * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25a94a63f0SWarner Losh * 26a94a63f0SWarner Losh * Portions of this software may have been developed with reference to 27a94a63f0SWarner Losh * the SD Simplified Specification. The following disclaimer may apply: 28a94a63f0SWarner Losh * 29a94a63f0SWarner Losh * The following conditions apply to the release of the simplified 30a94a63f0SWarner Losh * specification ("Simplified Specification") by the SD Card Association and 31a94a63f0SWarner Losh * the SD Group. The Simplified Specification is a subset of the complete SD 32a94a63f0SWarner Losh * Specification which is owned by the SD Card Association and the SD 33a94a63f0SWarner Losh * Group. This Simplified Specification is provided on a non-confidential 34a94a63f0SWarner Losh * basis subject to the disclaimers below. Any implementation of the 35a94a63f0SWarner Losh * Simplified Specification may require a license from the SD Card 36a94a63f0SWarner Losh * Association, SD Group, SD-3C LLC or other third parties. 37a94a63f0SWarner Losh * 38a94a63f0SWarner Losh * Disclaimers: 39a94a63f0SWarner Losh * 40a94a63f0SWarner Losh * The information contained in the Simplified Specification is presented only 41a94a63f0SWarner Losh * as a standard specification for SD Cards and SD Host/Ancillary products and 42a94a63f0SWarner Losh * is provided "AS-IS" without any representations or warranties of any 43a94a63f0SWarner Losh * kind. No responsibility is assumed by the SD Group, SD-3C LLC or the SD 44a94a63f0SWarner Losh * Card Association for any damages, any infringements of patents or other 45a94a63f0SWarner Losh * right of the SD Group, SD-3C LLC, the SD Card Association or any third 46a94a63f0SWarner Losh * parties, which may result from its use. No license is granted by 47a94a63f0SWarner Losh * implication, estoppel or otherwise under any patent or other rights of the 48a94a63f0SWarner Losh * SD Group, SD-3C LLC, the SD Card Association or any third party. Nothing 49a94a63f0SWarner Losh * herein shall be construed as an obligation by the SD Group, the SD-3C LLC 50a94a63f0SWarner Losh * or the SD Card Association to disclose or distribute any technical 51a94a63f0SWarner Losh * information, know-how or other confidential information to any third party. 52a94a63f0SWarner Losh */ 53a94a63f0SWarner Losh 54a94a63f0SWarner Losh /* 55a94a63f0SWarner Losh * MMC function that should be visible to the CAM subsystem 56a94a63f0SWarner Losh * and are somehow useful should be declared here 57a94a63f0SWarner Losh * 58a94a63f0SWarner Losh * Like in other *_all.h, it's also a nice place to include 59a94a63f0SWarner Losh * some other transport-specific headers. 60a94a63f0SWarner Losh */ 61a94a63f0SWarner Losh 62a94a63f0SWarner Losh #ifndef CAM_MMC_ALL_H 63a94a63f0SWarner Losh #define CAM_MMC_ALL_H 64a94a63f0SWarner Losh 65c7a49948SEmmanuel Vadot #include <cam/cam_sim.h> 66a94a63f0SWarner Losh #include <cam/mmc/mmc.h> 67a94a63f0SWarner Losh #include <dev/mmc/mmcreg.h> 68a94a63f0SWarner Losh 698c7cd14aSWarner Losh struct ccb_pathinq; 708c7cd14aSWarner Losh struct cam_sim; 718c7cd14aSWarner Losh void mmc_path_inq(struct ccb_pathinq *cpi, const char *hba, 728c7cd14aSWarner Losh const struct cam_sim *sim, size_t maxio); 73c7a49948SEmmanuel Vadot void mmccam_start_discovery(struct cam_sim *sim); 74a94a63f0SWarner Losh 75a94a63f0SWarner Losh #endif 76