-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtsxvar.h
86 lines (71 loc) · 2.8 KB
/
rtsxvar.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* $OpenBSD: rtsxvar.h,v 1.6 2017/10/09 16:12:20 stsp Exp $ */
/*
* Copyright (c) 2006 Uwe Stuehler <[email protected]>
* Copyright (c) 2012 Stefan Sperling <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _RTSXVAR_H_
#define _RTSXVAR_H_
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/bus.h>
#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/module.h>
#include <sys/mutex.h>
#include <sys/rman.h>
#include <sys/sysctl.h>
#include <sys/taskqueue.h>
#include <machine/bus.h>
#include <dev/mmc/bridge.h>
#include <dev/mmc/mmcreg.h>
#include <dev/sdhci/sdhci.h>
#include "mmcbr_if.h"
#include "sdhci_if.h"
//#include <machine/bus.h>
/* Number of registers to save for suspend/resume in terms of their ranges. */
#define RTSX_NREG ((0XFDAE - 0XFDA0) + (0xFD69 - 0xFD32) + (0xFE34 - 0xFE20))
struct rtsx_softc {
// struct sc_dev;
device_t sc_dev;
struct resource *sdmmc; /* generic SD/MMC device */
bus_space_tag_t iot; /* host register set tag */
bus_space_handle_t ioh; /* host register set handle */
bus_dma_tag_t dmat; /* DMA tag from attachment driver */
bus_dmamap_t dmap_cmd; /* DMA map for command transfer */
bus_dmamap_t dmap_data; /* DMA map for data transfer */
bus_dmamap_t dmap_adma; /* DMA map for ADMA SG descriptors */
void * admabuf; /* buffer for ADMA SG descriptors */
// caddr_t is said to be legacy not POSIX approved stuff.
// caddr_t admabuf; /* buffer for ADMA SG descriptors */
bus_dma_segment_t adma_segs[1]; /* segments for ADMA SG buffer */
int flags;
u_int32_t intr_status; /* soft interrupt status */
u_int8_t regs[RTSX_NREG];/* host controller state */
u_int32_t regs4[6]; /* host controller state */
};
/* Host controller functions called by the attachment driver. */
int rtsx_attach(struct rtsx_softc *, bus_space_tag_t,
bus_space_handle_t, bus_size_t, bus_dma_tag_t, int);
int rtsx_activate(struct device *, int);
int rtsx_intr(void *);
/* flag values */
#define RTSX_F_CARD_PRESENT 0x01
#define RTSX_F_SDIO_SUPPORT 0x02
#define RTSX_F_5209 0x04
#define RTSX_F_5229 0x08
#define RTSX_F_5229_TYPE_C 0x10
#define RTSX_F_525A 0x20
#endif