blob: da6a96c39776e022726dd01810bf3787d489db6c [file] [log] [blame]
Pierre Ossmane29a7d72007-05-26 13:48:18 +02001/*
2 * include/linux/mmc/sdio_func.h
3 *
4 * Copyright 2007 Pierre Ossman
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
10 */
11
12#ifndef MMC_SDIO_FUNC_H
13#define MMC_SDIO_FUNC_H
14
Pierre Ossman3b38bea2007-06-16 15:54:55 +020015#include <linux/device.h>
16#include <linux/mod_devicetable.h>
17
Pierre Ossmane29a7d72007-05-26 13:48:18 +020018struct mmc_card;
Nicolas Pitred1496c32007-06-30 16:29:41 +020019struct sdio_func;
20
21typedef void (sdio_irq_handler_t)(struct sdio_func *);
Pierre Ossmane29a7d72007-05-26 13:48:18 +020022
23/*
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040024 * SDIO function CIS tuple (unknown to the core)
25 */
26struct sdio_func_tuple {
27 struct sdio_func_tuple *next;
28 unsigned char code;
29 unsigned char size;
30 unsigned char data[0];
31};
32
33/*
Pierre Ossmane29a7d72007-05-26 13:48:18 +020034 * SDIO function devices
35 */
36struct sdio_func {
37 struct mmc_card *card; /* the card this device belongs to */
38 struct device dev; /* the device */
Nicolas Pitred1496c32007-06-30 16:29:41 +020039 sdio_irq_handler_t *irq_handler; /* IRQ callback */
Pierre Ossmane29a7d72007-05-26 13:48:18 +020040 unsigned int num; /* function number */
Pierre Ossman05970072007-06-11 21:01:00 +020041
42 unsigned char class; /* standard interface class */
43 unsigned short vendor; /* vendor id */
44 unsigned short device; /* device id */
45
David Vrabel9a08f822007-08-08 14:23:48 +010046 unsigned max_blksize; /* maximum block size */
47 unsigned cur_blksize; /* current block size */
Pierre Ossman1a632f82007-07-30 15:15:30 +020048
Pierre Ossmane29a7d72007-05-26 13:48:18 +020049 unsigned int state; /* function state */
50#define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040051
Pierre Ossman112c9db2007-07-06 13:35:01 +020052 u8 tmpbuf[4]; /* DMA:able scratch buffer */
53
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040054 struct sdio_func_tuple *tuples;
Pierre Ossmane29a7d72007-05-26 13:48:18 +020055};
56
57#define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
58
59#define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
60
61#define sdio_func_id(f) ((f)->dev.bus_id)
62
Pierre Ossmanf76c8512007-05-27 12:00:02 +020063#define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
64#define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
65
66/*
67 * SDIO function device driver
68 */
69struct sdio_driver {
70 char *name;
Pierre Ossman3b38bea2007-06-16 15:54:55 +020071 const struct sdio_device_id *id_table;
Pierre Ossmanf76c8512007-05-27 12:00:02 +020072
Pierre Ossman3b38bea2007-06-16 15:54:55 +020073 int (*probe)(struct sdio_func *, const struct sdio_device_id *);
Pierre Ossmanf76c8512007-05-27 12:00:02 +020074 void (*remove)(struct sdio_func *);
75
76 struct device_driver drv;
77};
78
Pierre Ossman3b38bea2007-06-16 15:54:55 +020079/**
80 * SDIO_DEVICE - macro used to describe a specific SDIO device
81 * @vend: the 16 bit manufacturer code
82 * @dev: the 16 bit function id
83 *
84 * This macro is used to create a struct sdio_device_id that matches a
85 * specific device. The class field will be set to SDIO_ANY_ID.
86 */
87#define SDIO_DEVICE(vend,dev) \
88 .class = SDIO_ANY_ID, \
89 .vendor = (vend), .device = (dev)
90
91/**
92 * SDIO_DEVICE_CLASS - macro used to describe a specific SDIO device class
93 * @dev_class: the 8 bit standard interface code
94 *
95 * This macro is used to create a struct sdio_device_id that matches a
96 * specific standard SDIO function type. The vendor and device fields will
97 * be set to SDIO_ANY_ID.
98 */
99#define SDIO_DEVICE_CLASS(dev_class) \
100 .class = (dev_class), \
101 .vendor = SDIO_ANY_ID, .device = SDIO_ANY_ID
102
Pierre Ossmanf76c8512007-05-27 12:00:02 +0200103extern int sdio_register_driver(struct sdio_driver *);
104extern void sdio_unregister_driver(struct sdio_driver *);
105
Pierre Ossman46f555f2007-05-27 12:57:15 +0200106/*
107 * SDIO I/O operations
108 */
109extern void sdio_claim_host(struct sdio_func *func);
110extern void sdio_release_host(struct sdio_func *func);
111
Pierre Ossmanfa64efa2007-05-27 14:22:37 +0200112extern int sdio_enable_func(struct sdio_func *func);
113extern int sdio_disable_func(struct sdio_func *func);
114
David Vrabel9a08f822007-08-08 14:23:48 +0100115extern int sdio_set_block_size(struct sdio_func *func, unsigned blksz);
116
Nicolas Pitred1496c32007-06-30 16:29:41 +0200117extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler);
118extern int sdio_release_irq(struct sdio_func *func);
119
Pierre Ossman46f555f2007-05-27 12:57:15 +0200120extern unsigned char sdio_readb(struct sdio_func *func,
121 unsigned int addr, int *err_ret);
Pierre Ossman112c9db2007-07-06 13:35:01 +0200122extern unsigned short sdio_readw(struct sdio_func *func,
123 unsigned int addr, int *err_ret);
124extern unsigned long sdio_readl(struct sdio_func *func,
125 unsigned int addr, int *err_ret);
126
127extern int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
128 unsigned int addr, int count);
129extern int sdio_readsb(struct sdio_func *func, void *dst,
130 unsigned int addr, int count);
Pierre Ossman46f555f2007-05-27 12:57:15 +0200131
132extern void sdio_writeb(struct sdio_func *func, unsigned char b,
133 unsigned int addr, int *err_ret);
Pierre Ossman112c9db2007-07-06 13:35:01 +0200134extern void sdio_writew(struct sdio_func *func, unsigned short b,
135 unsigned int addr, int *err_ret);
136extern void sdio_writel(struct sdio_func *func, unsigned long b,
137 unsigned int addr, int *err_ret);
138
139extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
140 void *src, int count);
141extern int sdio_writesb(struct sdio_func *func, unsigned int addr,
142 void *src, int count);
Pierre Ossman46f555f2007-05-27 12:57:15 +0200143
David Vrabel7806cdb2007-08-10 13:29:46 +0100144extern unsigned char sdio_f0_readb(struct sdio_func *func,
145 unsigned int addr, int *err_ret);
146extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b,
147 unsigned int addr, int *err_ret);
148
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200149#endif
150