/* $NetBSD: imx6_sdhc.c,v 1.1 2019/07/24 13:12:33 hkenken Exp $ */ /*- * Copyright (c) 2019 Genetec Corporation. All rights reserved. * Written by Hashimoto Kenichi for Genetec Corporation. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include __KERNEL_RCSID(0, "$NetBSD: imx6_sdhc.c,v 1.1 2019/07/24 13:12:33 hkenken Exp $"); #include "opt_fdt.h" #include #include #include #include #include #include #include #include #include #include #include #include #include static int imx6_sdhc_match(device_t, cfdata_t, void *); static void imx6_sdhc_attach(device_t, device_t, void *); static int imx6_sdhc_card_detect(struct sdhc_softc *); struct imx6_sdhc_softc { struct sdhc_softc sc_sdhc; bus_space_tag_t sc_bst; bus_space_handle_t sc_bsh; bus_size_t sc_bsz; struct sdhc_host *sc_host; void *sc_ih; struct clk *sc_clk_per; struct fdtbus_gpio_pin *sc_pin_cd; }; CFATTACH_DECL_NEW(imx6_sdhc, sizeof(struct imx6_sdhc_softc), imx6_sdhc_match, imx6_sdhc_attach, NULL, NULL); static const char * const compatible[] = { "fsl,imx6q-usdhc", NULL }; static int imx6_sdhc_match(device_t parent, cfdata_t cf, void *aux) { struct fdt_attach_args * const faa = aux; return of_match_compatible(faa->faa_phandle, compatible); } static void imx6_sdhc_attach(device_t parent, device_t self, void *aux) { struct imx6_sdhc_softc * const sc = device_private(self); struct fdt_attach_args * const faa = aux; char intrstr[128]; bus_addr_t addr; bus_size_t size; u_int bus_width; int error; if (fdtbus_get_reg(faa->faa_phandle, 0, &addr, &size) != 0) { aprint_error(": couldn't get registers\n"); return; } if (of_getprop_uint32(faa->faa_phandle, "bus-width", &bus_width)) bus_width = 4; sc->sc_clk_per = fdtbus_clock_get(faa->faa_phandle, "per"); if (sc->sc_clk_per == NULL) { aprint_error(": couldn't get clock\n"); return; } sc->sc_sdhc.sc_dev = self; sc->sc_sdhc.sc_dmat = faa->faa_dmat; sc->sc_sdhc.sc_clkbase = clk_get_rate(sc->sc_clk_per) / 1000; sc->sc_sdhc.sc_flags = SDHC_FLAG_USE_DMA | SDHC_FLAG_NO_PWR0 | SDHC_FLAG_HAVE_DVS | SDHC_FLAG_32BIT_ACCESS | SDHC_FLAG_8BIT_MODE | SDHC_FLAG_USE_ADMA2 | SDHC_FLAG_USDHC; if (bus_width == 8) { sc->sc_sdhc.sc_flags |= SDHC_FLAG_8BIT_MODE; } sc->sc_sdhc.sc_host = &sc->sc_host; sc->sc_bst = faa->faa_bst; error = bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh); if (error) { aprint_error(": couldn't map %#llx: %d", (uint64_t)addr, error); return; } sc->sc_bsz = size; sc->sc_pin_cd = fdtbus_gpio_acquire(faa->faa_phandle, "cd-gpios", GPIO_PIN_INPUT); if (sc->sc_pin_cd) { sc->sc_sdhc.sc_vendor_card_detect = imx6_sdhc_card_detect; sc->sc_sdhc.sc_flags |= SDHC_FLAG_POLL_CARD_DET; } error = clk_enable(sc->sc_clk_per); if (error) { aprint_error(": couldn't enable clock: %d\n", error); return; } aprint_naive("\n"); aprint_normal(": SDMMC (%u kHz)\n", sc->sc_sdhc.sc_clkbase); if (sc->sc_sdhc.sc_clkbase == 0) { aprint_error_dev(self, "couldn't determine frequency\n"); return; } if (!fdtbus_intr_str(faa->faa_phandle, 0, intrstr, sizeof(intrstr))) { aprint_error_dev(self, "failed to decode interrupt\n"); return; } sc->sc_ih = fdtbus_intr_establish(faa->faa_phandle, 0, IPL_SDMMC, 0, sdhc_intr, &sc->sc_sdhc); if (sc->sc_ih == NULL) { aprint_error_dev(self, "couldn't establish interrupt on %s\n", intrstr); return; } aprint_normal_dev(self, "interrupting on %s\n", intrstr); error = sdhc_host_found(&sc->sc_sdhc, sc->sc_bst, sc->sc_bsh, sc->sc_bsz); if (error) { aprint_error_dev(self, "couldn't initialize host, error = %d\n", error); fdtbus_intr_disestablish(faa->faa_phandle, sc->sc_ih); sc->sc_ih = NULL; return; } } static int imx6_sdhc_card_detect(struct sdhc_softc *ssc) { struct imx6_sdhc_softc *sc = device_private(ssc->sc_dev); KASSERT(sc->sc_pin_cd != NULL); return fdtbus_gpio_read(sc->sc_pin_cd); }