blob: dc680c4b50d46240a1bd611bb524edbbac6576b0 [file] [log] [blame]
Pierre Ossmane29a7d72007-05-26 13:48:18 +02001/*
2 * include/linux/mmc/sdio_func.h
3 *
Pierre Ossmanad3868b2008-06-28 12:52:45 +02004 * Copyright 2007-2008 Pierre Ossman
Pierre Ossmane29a7d72007-05-26 13:48:18 +02005 *
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
Robert P. J. Day100e9182011-05-27 16:04:03 -040012#ifndef LINUX_MMC_SDIO_FUNC_H
13#define LINUX_MMC_SDIO_FUNC_H
Pierre Ossmane29a7d72007-05-26 13:48:18 +020014
Pierre Ossman3b38bea2007-06-16 15:54:55 +020015#include <linux/device.h>
16#include <linux/mod_devicetable.h>
17
Nicolas Pitreda68c4e2010-03-05 13:43:31 -080018#include <linux/mmc/pm.h>
19
Pierre Ossmane29a7d72007-05-26 13:48:18 +020020struct mmc_card;
Nicolas Pitred1496c32007-06-30 16:29:41 +020021struct sdio_func;
22
23typedef void (sdio_irq_handler_t)(struct sdio_func *);
Pierre Ossmane29a7d72007-05-26 13:48:18 +020024
25/*
San Mehate01587a2008-04-14 15:22:49 -070026 * Structure used to hold embedded SDIO device data from platform layer
27 */
28struct sdio_embedded_func {
29 uint8_t f_class;
30 uint32_t f_maxblksize;
31};
32
33/*
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040034 * SDIO function CIS tuple (unknown to the core)
35 */
36struct sdio_func_tuple {
37 struct sdio_func_tuple *next;
38 unsigned char code;
39 unsigned char size;
40 unsigned char data[0];
41};
42
43/*
Pierre Ossmane29a7d72007-05-26 13:48:18 +020044 * SDIO function devices
45 */
46struct sdio_func {
47 struct mmc_card *card; /* the card this device belongs to */
48 struct device dev; /* the device */
Nicolas Pitred1496c32007-06-30 16:29:41 +020049 sdio_irq_handler_t *irq_handler; /* IRQ callback */
Pierre Ossmane29a7d72007-05-26 13:48:18 +020050 unsigned int num; /* function number */
Pierre Ossman05970072007-06-11 21:01:00 +020051
52 unsigned char class; /* standard interface class */
53 unsigned short vendor; /* vendor id */
54 unsigned short device; /* device id */
55
David Vrabel9a08f822007-08-08 14:23:48 +010056 unsigned max_blksize; /* maximum block size */
57 unsigned cur_blksize; /* current block size */
Pierre Ossman1a632f82007-07-30 15:15:30 +020058
Benzi Zbit62a75732008-07-10 02:41:43 +030059 unsigned enable_timeout; /* max enable timeout in msec */
60
Pierre Ossmane29a7d72007-05-26 13:48:18 +020061 unsigned int state; /* function state */
62#define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040063
Pierre Ossman112c9db2007-07-06 13:35:01 +020064 u8 tmpbuf[4]; /* DMA:able scratch buffer */
65
Pierre Ossman759bdc72007-09-19 18:42:16 +020066 unsigned num_info; /* number of info strings */
67 const char **info; /* info strings */
68
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040069 struct sdio_func_tuple *tuples;
Pierre Ossmane29a7d72007-05-26 13:48:18 +020070};
71
72#define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
73
74#define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
75
Kay Sieversd1b26862008-11-08 21:37:46 +010076#define sdio_func_id(f) (dev_name(&(f)->dev))
Pierre Ossmane29a7d72007-05-26 13:48:18 +020077
Pierre Ossmanf76c8512007-05-27 12:00:02 +020078#define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
79#define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
Nicolas Pitre996ad562009-09-22 16:45:30 -070080#define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
Pierre Ossmanf76c8512007-05-27 12:00:02 +020081
82/*
83 * SDIO function device driver
84 */
85struct sdio_driver {
86 char *name;
Pierre Ossman3b38bea2007-06-16 15:54:55 +020087 const struct sdio_device_id *id_table;
Pierre Ossmanf76c8512007-05-27 12:00:02 +020088
Pierre Ossman3b38bea2007-06-16 15:54:55 +020089 int (*probe)(struct sdio_func *, const struct sdio_device_id *);
Pierre Ossmanf76c8512007-05-27 12:00:02 +020090 void (*remove)(struct sdio_func *);
91
92 struct device_driver drv;
93};
94
Nicolas Pitre996ad562009-09-22 16:45:30 -070095#define to_sdio_driver(d) container_of(d, struct sdio_driver, drv)
96
Pierre Ossman3b38bea2007-06-16 15:54:55 +020097/**
98 * SDIO_DEVICE - macro used to describe a specific SDIO device
99 * @vend: the 16 bit manufacturer code
100 * @dev: the 16 bit function id
101 *
102 * This macro is used to create a struct sdio_device_id that matches a
103 * specific device. The class field will be set to SDIO_ANY_ID.
104 */
105#define SDIO_DEVICE(vend,dev) \
106 .class = SDIO_ANY_ID, \
107 .vendor = (vend), .device = (dev)
108
109/**
110 * SDIO_DEVICE_CLASS - macro used to describe a specific SDIO device class
111 * @dev_class: the 8 bit standard interface code
112 *
113 * This macro is used to create a struct sdio_device_id that matches a
114 * specific standard SDIO function type. The vendor and device fields will
115 * be set to SDIO_ANY_ID.
116 */
117#define SDIO_DEVICE_CLASS(dev_class) \
118 .class = (dev_class), \
119 .vendor = SDIO_ANY_ID, .device = SDIO_ANY_ID
120
Pierre Ossmanf76c8512007-05-27 12:00:02 +0200121extern int sdio_register_driver(struct sdio_driver *);
122extern void sdio_unregister_driver(struct sdio_driver *);
123
Pierre Ossman46f555f2007-05-27 12:57:15 +0200124/*
125 * SDIO I/O operations
126 */
127extern void sdio_claim_host(struct sdio_func *func);
128extern void sdio_release_host(struct sdio_func *func);
129
Pierre Ossmanfa64efa2007-05-27 14:22:37 +0200130extern int sdio_enable_func(struct sdio_func *func);
131extern int sdio_disable_func(struct sdio_func *func);
132
David Vrabel9a08f822007-08-08 14:23:48 +0100133extern int sdio_set_block_size(struct sdio_func *func, unsigned blksz);
134
Nicolas Pitred1496c32007-06-30 16:29:41 +0200135extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler);
136extern int sdio_release_irq(struct sdio_func *func);
137
Pierre Ossmanad3868b2008-06-28 12:52:45 +0200138extern unsigned int sdio_align_size(struct sdio_func *func, unsigned int sz);
139
Tomas Winkler6d373332008-06-30 10:50:24 +0300140extern u8 sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret);
Dmitry Shmidt4748cba2008-11-11 11:22:38 -0800141extern u8 sdio_readb_ext(struct sdio_func *func, unsigned int addr, int *err_ret,
142 unsigned in);
Tomas Winkler6d373332008-06-30 10:50:24 +0300143extern u16 sdio_readw(struct sdio_func *func, unsigned int addr, int *err_ret);
144extern u32 sdio_readl(struct sdio_func *func, unsigned int addr, int *err_ret);
Pierre Ossman112c9db2007-07-06 13:35:01 +0200145
146extern int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
147 unsigned int addr, int count);
148extern int sdio_readsb(struct sdio_func *func, void *dst,
149 unsigned int addr, int count);
Pierre Ossman46f555f2007-05-27 12:57:15 +0200150
Tomas Winkler6d373332008-06-30 10:50:24 +0300151extern void sdio_writeb(struct sdio_func *func, u8 b,
Pierre Ossman46f555f2007-05-27 12:57:15 +0200152 unsigned int addr, int *err_ret);
Tomas Winkler6d373332008-06-30 10:50:24 +0300153extern void sdio_writew(struct sdio_func *func, u16 b,
Pierre Ossman112c9db2007-07-06 13:35:01 +0200154 unsigned int addr, int *err_ret);
Tomas Winkler6d373332008-06-30 10:50:24 +0300155extern void sdio_writel(struct sdio_func *func, u32 b,
Pierre Ossman112c9db2007-07-06 13:35:01 +0200156 unsigned int addr, int *err_ret);
157
Grazvydas Ignotas6c1f7162010-05-26 14:42:09 -0700158extern u8 sdio_writeb_readb(struct sdio_func *func, u8 write_byte,
159 unsigned int addr, int *err_ret);
160
Pierre Ossman112c9db2007-07-06 13:35:01 +0200161extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
162 void *src, int count);
163extern int sdio_writesb(struct sdio_func *func, unsigned int addr,
164 void *src, int count);
Pierre Ossman46f555f2007-05-27 12:57:15 +0200165
David Vrabel7806cdb2007-08-10 13:29:46 +0100166extern unsigned char sdio_f0_readb(struct sdio_func *func,
167 unsigned int addr, int *err_ret);
168extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b,
169 unsigned int addr, int *err_ret);
170
Nicolas Pitreda68c4e2010-03-05 13:43:31 -0800171extern mmc_pm_flag_t sdio_get_host_pm_caps(struct sdio_func *func);
172extern int sdio_set_host_pm_flags(struct sdio_func *func, mmc_pm_flag_t flags);
173
Robert P. J. Day100e9182011-05-27 16:04:03 -0400174#endif /* LINUX_MMC_SDIO_FUNC_H */