xref: /freebsd/sys/dev/sdhci/sdhci_pci.c (revision d6b92ffa)
1 /*-
2  * Copyright (c) 2008 Alexander Motin <mav@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 
26 #include <sys/cdefs.h>
27 __FBSDID("$FreeBSD$");
28 
29 #include "opt_mmccam.h"
30 
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/bus.h>
34 #include <sys/kernel.h>
35 #include <sys/lock.h>
36 #include <sys/module.h>
37 #include <sys/mutex.h>
38 #include <sys/resource.h>
39 #include <sys/rman.h>
40 #include <sys/sysctl.h>
41 #include <sys/taskqueue.h>
42 
43 #include <dev/pci/pcireg.h>
44 #include <dev/pci/pcivar.h>
45 
46 #include <machine/bus.h>
47 #include <machine/resource.h>
48 
49 #include <dev/mmc/bridge.h>
50 
51 #include <dev/sdhci/sdhci.h>
52 
53 #include "mmcbr_if.h"
54 #include "sdhci_if.h"
55 
56 /*
57  * PCI registers
58  */
59 #define	PCI_SDHCI_IFPIO			0x00
60 #define	PCI_SDHCI_IFDMA			0x01
61 #define	PCI_SDHCI_IFVENDOR		0x02
62 
63 #define	PCI_SLOT_INFO			0x40	/* 8 bits */
64 #define	PCI_SLOT_INFO_SLOTS(x)		(((x >> 4) & 7) + 1)
65 #define	PCI_SLOT_INFO_FIRST_BAR(x)	((x) & 7)
66 
67 /*
68  * RICOH specific PCI registers
69  */
70 #define	SDHC_PCI_MODE_KEY		0xf9
71 #define	SDHC_PCI_MODE			0x150
72 #define	SDHC_PCI_MODE_SD20		0x10
73 #define	SDHC_PCI_BASE_FREQ_KEY		0xfc
74 #define	SDHC_PCI_BASE_FREQ		0xe1
75 
76 static const struct sdhci_device {
77 	uint32_t	model;
78 	uint16_t	subvendor;
79 	const char	*desc;
80 	u_int		quirks;
81 } sdhci_devices[] = {
82 	{ 0x08221180,	0xffff,	"RICOH R5C822 SD",
83 	    SDHCI_QUIRK_FORCE_DMA },
84 	{ 0xe8221180,	0xffff,	"RICOH R5CE822 SD",
85 	    SDHCI_QUIRK_FORCE_DMA |
86 	    SDHCI_QUIRK_LOWER_FREQUENCY },
87 	{ 0xe8231180,	0xffff,	"RICOH R5CE823 SD",
88 	    SDHCI_QUIRK_LOWER_FREQUENCY },
89 	{ 0x8034104c,	0xffff, "TI XX21/XX11 SD",
90 	    SDHCI_QUIRK_FORCE_DMA },
91 	{ 0x05501524,	0xffff, "ENE CB712 SD",
92 	    SDHCI_QUIRK_BROKEN_TIMINGS },
93 	{ 0x05511524,	0xffff, "ENE CB712 SD 2",
94 	    SDHCI_QUIRK_BROKEN_TIMINGS },
95 	{ 0x07501524,	0xffff, "ENE CB714 SD",
96 	    SDHCI_QUIRK_RESET_ON_IOS |
97 	    SDHCI_QUIRK_BROKEN_TIMINGS },
98 	{ 0x07511524,	0xffff, "ENE CB714 SD 2",
99 	    SDHCI_QUIRK_RESET_ON_IOS |
100 	    SDHCI_QUIRK_BROKEN_TIMINGS },
101 	{ 0x410111ab,	0xffff, "Marvell CaFe SD",
102 	    SDHCI_QUIRK_INCR_TIMEOUT_CONTROL },
103 	{ 0x2381197B,	0xffff,	"JMicron JMB38X SD",
104 	    SDHCI_QUIRK_32BIT_DMA_SIZE |
105 	    SDHCI_QUIRK_RESET_AFTER_REQUEST },
106 	{ 0x16bc14e4,	0xffff,	"Broadcom BCM577xx SDXC/MMC Card Reader",
107 	    SDHCI_QUIRK_BCM577XX_400KHZ_CLKSRC },
108 	{ 0x0f148086,	0xffff,	"Intel Bay Trail eMMC 4.5 Controller",
109 	    SDHCI_QUIRK_ALL_SLOTS_NON_REMOVABLE |
110 	    SDHCI_QUIRK_INTEL_POWER_UP_RESET |
111 	    SDHCI_QUIRK_WAIT_WHILE_BUSY |
112 	    SDHCI_QUIRK_MMC_DDR52 |
113 	    SDHCI_QUIRK_CAPS_BIT63_FOR_MMC_HS400 |
114 	    SDHCI_QUIRK_PRESET_VALUE_BROKEN},
115 	{ 0x0f158086,	0xffff,	"Intel Bay Trail SDXC Controller",
116 	    SDHCI_QUIRK_WAIT_WHILE_BUSY |
117 	    SDHCI_QUIRK_PRESET_VALUE_BROKEN },
118 	{ 0x0f508086,	0xffff,	"Intel Bay Trail eMMC 4.5 Controller",
119 	    SDHCI_QUIRK_ALL_SLOTS_NON_REMOVABLE |
120 	    SDHCI_QUIRK_INTEL_POWER_UP_RESET |
121 	    SDHCI_QUIRK_WAIT_WHILE_BUSY |
122 	    SDHCI_QUIRK_MMC_DDR52 |
123 	    SDHCI_QUIRK_CAPS_BIT63_FOR_MMC_HS400 |
124 	    SDHCI_QUIRK_PRESET_VALUE_BROKEN },
125 	{ 0x22948086,	0xffff,	"Intel Braswell eMMC 4.5.1 Controller",
126 	    SDHCI_QUIRK_ALL_SLOTS_NON_REMOVABLE |
127 	    SDHCI_QUIRK_DATA_TIMEOUT_1MHZ |
128 	    SDHCI_QUIRK_INTEL_POWER_UP_RESET |
129 	    SDHCI_QUIRK_WAIT_WHILE_BUSY |
130 	    SDHCI_QUIRK_MMC_DDR52 |
131 	    SDHCI_QUIRK_CAPS_BIT63_FOR_MMC_HS400 |
132 	    SDHCI_QUIRK_PRESET_VALUE_BROKEN },
133 	{ 0x22968086,	0xffff,	"Intel Braswell SDXC Controller",
134 	    SDHCI_QUIRK_WAIT_WHILE_BUSY |
135 	    SDHCI_QUIRK_PRESET_VALUE_BROKEN },
136 	{ 0x5aca8086,	0xffff,	"Intel Apollo Lake SDXC Controller",
137 	    SDHCI_QUIRK_BROKEN_DMA |	/* APL18 erratum */
138 	    SDHCI_QUIRK_WAIT_WHILE_BUSY |
139 	    SDHCI_QUIRK_PRESET_VALUE_BROKEN },
140 	{ 0x5acc8086,	0xffff,	"Intel Apollo Lake eMMC 5.0 Controller",
141 	    SDHCI_QUIRK_BROKEN_DMA |	/* APL18 erratum */
142 	    SDHCI_QUIRK_ALL_SLOTS_NON_REMOVABLE |
143 	    SDHCI_QUIRK_INTEL_POWER_UP_RESET |
144 	    SDHCI_QUIRK_WAIT_WHILE_BUSY |
145 	    SDHCI_QUIRK_MMC_DDR52 |
146 	    SDHCI_QUIRK_CAPS_BIT63_FOR_MMC_HS400 |
147 	    SDHCI_QUIRK_PRESET_VALUE_BROKEN },
148 	{ 0,		0xffff,	NULL,
149 	    0 }
150 };
151 
152 struct sdhci_pci_softc {
153 	u_int		quirks;		/* Chip specific quirks */
154 	struct resource *irq_res;	/* IRQ resource */
155 	void		*intrhand;	/* Interrupt handle */
156 
157 	int		num_slots;	/* Number of slots on this controller */
158 	struct sdhci_slot slots[6];
159 	struct resource	*mem_res[6];	/* Memory resource */
160 	uint8_t		cfg_freq;	/* Saved frequency */
161 	uint8_t		cfg_mode;	/* Saved mode */
162 };
163 
164 static int sdhci_enable_msi = 1;
165 SYSCTL_INT(_hw_sdhci, OID_AUTO, enable_msi, CTLFLAG_RDTUN, &sdhci_enable_msi,
166     0, "Enable MSI interrupts");
167 
168 static uint8_t
169 sdhci_pci_read_1(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off)
170 {
171 	struct sdhci_pci_softc *sc = device_get_softc(dev);
172 
173 	bus_barrier(sc->mem_res[slot->num], 0, 0xFF,
174 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
175 	return bus_read_1(sc->mem_res[slot->num], off);
176 }
177 
178 static void
179 sdhci_pci_write_1(device_t dev, struct sdhci_slot *slot __unused,
180     bus_size_t off, uint8_t val)
181 {
182 	struct sdhci_pci_softc *sc = device_get_softc(dev);
183 
184 	bus_barrier(sc->mem_res[slot->num], 0, 0xFF,
185 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
186 	bus_write_1(sc->mem_res[slot->num], off, val);
187 }
188 
189 static uint16_t
190 sdhci_pci_read_2(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off)
191 {
192 	struct sdhci_pci_softc *sc = device_get_softc(dev);
193 
194 	bus_barrier(sc->mem_res[slot->num], 0, 0xFF,
195 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
196 	return bus_read_2(sc->mem_res[slot->num], off);
197 }
198 
199 static void
200 sdhci_pci_write_2(device_t dev, struct sdhci_slot *slot __unused,
201     bus_size_t off, uint16_t val)
202 {
203 	struct sdhci_pci_softc *sc = device_get_softc(dev);
204 
205 	bus_barrier(sc->mem_res[slot->num], 0, 0xFF,
206 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
207 	bus_write_2(sc->mem_res[slot->num], off, val);
208 }
209 
210 static uint32_t
211 sdhci_pci_read_4(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off)
212 {
213 	struct sdhci_pci_softc *sc = device_get_softc(dev);
214 
215 	bus_barrier(sc->mem_res[slot->num], 0, 0xFF,
216 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
217 	return bus_read_4(sc->mem_res[slot->num], off);
218 }
219 
220 static void
221 sdhci_pci_write_4(device_t dev, struct sdhci_slot *slot __unused,
222     bus_size_t off, uint32_t val)
223 {
224 	struct sdhci_pci_softc *sc = device_get_softc(dev);
225 
226 	bus_barrier(sc->mem_res[slot->num], 0, 0xFF,
227 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
228 	bus_write_4(sc->mem_res[slot->num], off, val);
229 }
230 
231 static void
232 sdhci_pci_read_multi_4(device_t dev, struct sdhci_slot *slot __unused,
233     bus_size_t off, uint32_t *data, bus_size_t count)
234 {
235 	struct sdhci_pci_softc *sc = device_get_softc(dev);
236 
237 	bus_read_multi_stream_4(sc->mem_res[slot->num], off, data, count);
238 }
239 
240 static void
241 sdhci_pci_write_multi_4(device_t dev, struct sdhci_slot *slot __unused,
242     bus_size_t off, uint32_t *data, bus_size_t count)
243 {
244 	struct sdhci_pci_softc *sc = device_get_softc(dev);
245 
246 	bus_write_multi_stream_4(sc->mem_res[slot->num], off, data, count);
247 }
248 
249 static void sdhci_pci_intr(void *arg);
250 
251 static void
252 sdhci_lower_frequency(device_t dev)
253 {
254 	struct sdhci_pci_softc *sc = device_get_softc(dev);
255 
256 	/*
257 	 * Enable SD2.0 mode.
258 	 * NB: for RICOH R5CE823, this changes the PCI device ID to 0xe822.
259 	 */
260 	pci_write_config(dev, SDHC_PCI_MODE_KEY, 0xfc, 1);
261 	sc->cfg_mode = pci_read_config(dev, SDHC_PCI_MODE, 1);
262 	pci_write_config(dev, SDHC_PCI_MODE, SDHC_PCI_MODE_SD20, 1);
263 	pci_write_config(dev, SDHC_PCI_MODE_KEY, 0x00, 1);
264 
265 	/*
266 	 * Some SD/MMC cards don't work with the default base
267 	 * clock frequency of 200 MHz.  Lower it to 50 MHz.
268 	 */
269 	pci_write_config(dev, SDHC_PCI_BASE_FREQ_KEY, 0x01, 1);
270 	sc->cfg_freq = pci_read_config(dev, SDHC_PCI_BASE_FREQ, 1);
271 	pci_write_config(dev, SDHC_PCI_BASE_FREQ, 50, 1);
272 	pci_write_config(dev, SDHC_PCI_BASE_FREQ_KEY, 0x00, 1);
273 }
274 
275 static void
276 sdhci_restore_frequency(device_t dev)
277 {
278 	struct sdhci_pci_softc *sc = device_get_softc(dev);
279 
280 	/* Restore mode. */
281 	pci_write_config(dev, SDHC_PCI_MODE_KEY, 0xfc, 1);
282 	pci_write_config(dev, SDHC_PCI_MODE, sc->cfg_mode, 1);
283 	pci_write_config(dev, SDHC_PCI_MODE_KEY, 0x00, 1);
284 
285 	/* Restore frequency. */
286 	pci_write_config(dev, SDHC_PCI_BASE_FREQ_KEY, 0x01, 1);
287 	pci_write_config(dev, SDHC_PCI_BASE_FREQ, sc->cfg_freq, 1);
288 	pci_write_config(dev, SDHC_PCI_BASE_FREQ_KEY, 0x00, 1);
289 }
290 
291 static int
292 sdhci_pci_probe(device_t dev)
293 {
294 	uint32_t model;
295 	uint16_t subvendor;
296 	uint8_t class, subclass;
297 	int i, result;
298 
299 	model = (uint32_t)pci_get_device(dev) << 16;
300 	model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff;
301 	subvendor = pci_get_subvendor(dev);
302 	class = pci_get_class(dev);
303 	subclass = pci_get_subclass(dev);
304 
305 	result = ENXIO;
306 	for (i = 0; sdhci_devices[i].model != 0; i++) {
307 		if (sdhci_devices[i].model == model &&
308 		    (sdhci_devices[i].subvendor == 0xffff ||
309 		    sdhci_devices[i].subvendor == subvendor)) {
310 			device_set_desc(dev, sdhci_devices[i].desc);
311 			result = BUS_PROBE_DEFAULT;
312 			break;
313 		}
314 	}
315 	if (result == ENXIO && class == PCIC_BASEPERIPH &&
316 	    subclass == PCIS_BASEPERIPH_SDHC) {
317 		device_set_desc(dev, "Generic SD HCI");
318 		result = BUS_PROBE_GENERIC;
319 	}
320 
321 	return (result);
322 }
323 
324 static int
325 sdhci_pci_attach(device_t dev)
326 {
327 	struct sdhci_pci_softc *sc = device_get_softc(dev);
328 	struct sdhci_slot *slot;
329 	uint32_t model;
330 	uint16_t subvendor;
331 	int bar, err, rid, slots, i;
332 
333 	model = (uint32_t)pci_get_device(dev) << 16;
334 	model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff;
335 	subvendor = pci_get_subvendor(dev);
336 	/* Apply chip specific quirks. */
337 	for (i = 0; sdhci_devices[i].model != 0; i++) {
338 		if (sdhci_devices[i].model == model &&
339 		    (sdhci_devices[i].subvendor == 0xffff ||
340 		    sdhci_devices[i].subvendor == subvendor)) {
341 			sc->quirks = sdhci_devices[i].quirks;
342 			break;
343 		}
344 	}
345 	sc->quirks &= ~sdhci_quirk_clear;
346 	sc->quirks |= sdhci_quirk_set;
347 
348 	/* Some controllers need to be bumped into the right mode. */
349 	if (sc->quirks & SDHCI_QUIRK_LOWER_FREQUENCY)
350 		sdhci_lower_frequency(dev);
351 	/* Read slots info from PCI registers. */
352 	slots = pci_read_config(dev, PCI_SLOT_INFO, 1);
353 	bar = PCI_SLOT_INFO_FIRST_BAR(slots);
354 	slots = PCI_SLOT_INFO_SLOTS(slots);
355 	if (slots > 6 || bar > 5) {
356 		device_printf(dev, "Incorrect slots information (%d, %d).\n",
357 		    slots, bar);
358 		return (EINVAL);
359 	}
360 	/* Allocate IRQ. */
361 	i = 1;
362 	rid = 0;
363 	if (sdhci_enable_msi != 0 && pci_alloc_msi(dev, &i) == 0)
364 		rid = 1;
365 	sc->irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
366 		RF_ACTIVE | (rid != 0 ? 0 : RF_SHAREABLE));
367 	if (sc->irq_res == NULL) {
368 		device_printf(dev, "Can't allocate IRQ\n");
369 		pci_release_msi(dev);
370 		return (ENOMEM);
371 	}
372 	/* Scan all slots. */
373 	for (i = 0; i < slots; i++) {
374 		slot = &sc->slots[sc->num_slots];
375 
376 		/* Allocate memory. */
377 		rid = PCIR_BAR(bar + i);
378 		sc->mem_res[i] = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
379 		    &rid, RF_ACTIVE);
380 		if (sc->mem_res[i] == NULL) {
381 			device_printf(dev,
382 			    "Can't allocate memory for slot %d\n", i);
383 			continue;
384 		}
385 
386 		slot->quirks = sc->quirks;
387 
388 		if (sdhci_init_slot(dev, slot, i) != 0)
389 			continue;
390 
391 		sc->num_slots++;
392 	}
393 	device_printf(dev, "%d slot(s) allocated\n", sc->num_slots);
394 	/* Activate the interrupt */
395 	err = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_MISC | INTR_MPSAFE,
396 	    NULL, sdhci_pci_intr, sc, &sc->intrhand);
397 	if (err)
398 		device_printf(dev, "Can't setup IRQ\n");
399 	pci_enable_busmaster(dev);
400 	/* Process cards detection. */
401 	for (i = 0; i < sc->num_slots; i++) {
402 #ifdef MMCCAM
403 		sdhci_cam_start_slot(&sc->slots[i]);
404 #else
405 		sdhci_start_slot(&sc->slots[i]);
406 #endif
407 	}
408 
409 	return (0);
410 }
411 
412 static int
413 sdhci_pci_detach(device_t dev)
414 {
415 	struct sdhci_pci_softc *sc = device_get_softc(dev);
416 	int i;
417 
418 	bus_teardown_intr(dev, sc->irq_res, sc->intrhand);
419 	bus_release_resource(dev, SYS_RES_IRQ,
420 	    rman_get_rid(sc->irq_res), sc->irq_res);
421 	pci_release_msi(dev);
422 
423 	for (i = 0; i < sc->num_slots; i++) {
424 		sdhci_cleanup_slot(&sc->slots[i]);
425 		bus_release_resource(dev, SYS_RES_MEMORY,
426 		    rman_get_rid(sc->mem_res[i]), sc->mem_res[i]);
427 	}
428 	if (sc->quirks & SDHCI_QUIRK_LOWER_FREQUENCY)
429 		sdhci_restore_frequency(dev);
430 	return (0);
431 }
432 
433 static int
434 sdhci_pci_shutdown(device_t dev)
435 {
436 	struct sdhci_pci_softc *sc = device_get_softc(dev);
437 
438 	if (sc->quirks & SDHCI_QUIRK_LOWER_FREQUENCY)
439 		sdhci_restore_frequency(dev);
440 	return (0);
441 }
442 
443 static int
444 sdhci_pci_suspend(device_t dev)
445 {
446 	struct sdhci_pci_softc *sc = device_get_softc(dev);
447 	int i, err;
448 
449 	err = bus_generic_suspend(dev);
450 	if (err)
451 		return (err);
452 	for (i = 0; i < sc->num_slots; i++)
453 		sdhci_generic_suspend(&sc->slots[i]);
454 	return (0);
455 }
456 
457 static int
458 sdhci_pci_resume(device_t dev)
459 {
460 	struct sdhci_pci_softc *sc = device_get_softc(dev);
461 	int i, err;
462 
463 	for (i = 0; i < sc->num_slots; i++)
464 		sdhci_generic_resume(&sc->slots[i]);
465 	err = bus_generic_resume(dev);
466 	if (err)
467 		return (err);
468 	if (sc->quirks & SDHCI_QUIRK_LOWER_FREQUENCY)
469 		sdhci_lower_frequency(dev);
470 	return (0);
471 }
472 
473 static void
474 sdhci_pci_intr(void *arg)
475 {
476 	struct sdhci_pci_softc *sc = (struct sdhci_pci_softc *)arg;
477 	int i;
478 
479 	for (i = 0; i < sc->num_slots; i++)
480 		sdhci_generic_intr(&sc->slots[i]);
481 }
482 
483 static device_method_t sdhci_methods[] = {
484 	/* device_if */
485 	DEVMETHOD(device_probe,		sdhci_pci_probe),
486 	DEVMETHOD(device_attach,	sdhci_pci_attach),
487 	DEVMETHOD(device_detach,	sdhci_pci_detach),
488 	DEVMETHOD(device_shutdown,	sdhci_pci_shutdown),
489 	DEVMETHOD(device_suspend,	sdhci_pci_suspend),
490 	DEVMETHOD(device_resume,	sdhci_pci_resume),
491 
492 	/* Bus interface */
493 	DEVMETHOD(bus_read_ivar,	sdhci_generic_read_ivar),
494 	DEVMETHOD(bus_write_ivar,	sdhci_generic_write_ivar),
495 
496 	/* mmcbr_if */
497 	DEVMETHOD(mmcbr_update_ios,	sdhci_generic_update_ios),
498 	DEVMETHOD(mmcbr_switch_vccq,	sdhci_generic_switch_vccq),
499 	DEVMETHOD(mmcbr_request,	sdhci_generic_request),
500 	DEVMETHOD(mmcbr_get_ro,		sdhci_generic_get_ro),
501 	DEVMETHOD(mmcbr_acquire_host,   sdhci_generic_acquire_host),
502 	DEVMETHOD(mmcbr_release_host,   sdhci_generic_release_host),
503 
504 	/* SDHCI accessors */
505 	DEVMETHOD(sdhci_read_1,		sdhci_pci_read_1),
506 	DEVMETHOD(sdhci_read_2,		sdhci_pci_read_2),
507 	DEVMETHOD(sdhci_read_4,		sdhci_pci_read_4),
508 	DEVMETHOD(sdhci_read_multi_4,	sdhci_pci_read_multi_4),
509 	DEVMETHOD(sdhci_write_1,	sdhci_pci_write_1),
510 	DEVMETHOD(sdhci_write_2,	sdhci_pci_write_2),
511 	DEVMETHOD(sdhci_write_4,	sdhci_pci_write_4),
512 	DEVMETHOD(sdhci_write_multi_4,	sdhci_pci_write_multi_4),
513 	DEVMETHOD(sdhci_set_uhs_timing,	sdhci_generic_set_uhs_timing),
514 
515 	DEVMETHOD_END
516 };
517 
518 static driver_t sdhci_pci_driver = {
519 	"sdhci_pci",
520 	sdhci_methods,
521 	sizeof(struct sdhci_pci_softc),
522 };
523 static devclass_t sdhci_pci_devclass;
524 
525 DRIVER_MODULE(sdhci_pci, pci, sdhci_pci_driver, sdhci_pci_devclass, NULL,
526     NULL);
527 MODULE_DEPEND(sdhci_pci, sdhci, 1, 1, 1);
528 
529 #ifndef MMCCAM
530 MMC_DECLARE_BRIDGE(sdhci_pci);
531 #endif
532