blob: ac3ab683fec6707fec51881eb300fbe697239a3f [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
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
Benzi Zbit62a75732008-07-10 02:41:43 +030049 unsigned enable_timeout; /* max enable timeout in msec */
50
Pierre Ossmane29a7d72007-05-26 13:48:18 +020051 unsigned int state; /* function state */
52#define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040053
Pierre Ossman112c9db2007-07-06 13:35:01 +020054 u8 tmpbuf[4]; /* DMA:able scratch buffer */
55
Pierre Ossman759bdc72007-09-19 18:42:16 +020056 unsigned num_info; /* number of info strings */
57 const char **info; /* info strings */
58
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040059 struct sdio_func_tuple *tuples;
Pierre Ossmane29a7d72007-05-26 13:48:18 +020060};
61
62#define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
63
64#define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
65
Kay Sieversd1b26862008-11-08 21:37:46 +010066#define sdio_func_id(f) (dev_name(&(f)->dev))
Pierre Ossmane29a7d72007-05-26 13:48:18 +020067
Pierre Ossmanf76c8512007-05-27 12:00:02 +020068#define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
69#define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
Nicolas Pitre996ad5682009-09-22 16:45:30 -070070#define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
Pierre Ossmanf76c8512007-05-27 12:00:02 +020071
72/*
73 * SDIO function device driver
74 */
75struct sdio_driver {
76 char *name;
Pierre Ossman3b38bea2007-06-16 15:54:55 +020077 const struct sdio_device_id *id_table;
Pierre Ossmanf76c8512007-05-27 12:00:02 +020078
Pierre Ossman3b38bea2007-06-16 15:54:55 +020079 int (*probe)(struct sdio_func *, const struct sdio_device_id *);
Pierre Ossmanf76c8512007-05-27 12:00:02 +020080 void (*remove)(struct sdio_func *);
81
82 struct device_driver drv;
83};
84
Nicolas Pitre996ad5682009-09-22 16:45:30 -070085#define to_sdio_driver(d) container_of(d, struct sdio_driver, drv)
86
Pierre Ossman3b38bea2007-06-16 15:54:55 +020087/**
88 * SDIO_DEVICE - macro used to describe a specific SDIO device
89 * @vend: the 16 bit manufacturer code
90 * @dev: the 16 bit function id
91 *
92 * This macro is used to create a struct sdio_device_id that matches a
93 * specific device. The class field will be set to SDIO_ANY_ID.
94 */
95#define SDIO_DEVICE(vend,dev) \
96 .class = SDIO_ANY_ID, \
97 .vendor = (vend), .device = (dev)
98
99/**
100 * SDIO_DEVICE_CLASS - macro used to describe a specific SDIO device class
101 * @dev_class: the 8 bit standard interface code
102 *
103 * This macro is used to create a struct sdio_device_id that matches a
104 * specific standard SDIO function type. The vendor and device fields will
105 * be set to SDIO_ANY_ID.
106 */
107#define SDIO_DEVICE_CLASS(dev_class) \
108 .class = (dev_class), \
109 .vendor = SDIO_ANY_ID, .device = SDIO_ANY_ID
110
Pierre Ossmanf76c8512007-05-27 12:00:02 +0200111extern int sdio_register_driver(struct sdio_driver *);
112extern void sdio_unregister_driver(struct sdio_driver *);
113
Pierre Ossman46f555f2007-05-27 12:57:15 +0200114/*
115 * SDIO I/O operations
116 */
117extern void sdio_claim_host(struct sdio_func *func);
118extern void sdio_release_host(struct sdio_func *func);
119
Pierre Ossmanfa64efa2007-05-27 14:22:37 +0200120extern int sdio_enable_func(struct sdio_func *func);
121extern int sdio_disable_func(struct sdio_func *func);
122
David Vrabel9a08f822007-08-08 14:23:48 +0100123extern int sdio_set_block_size(struct sdio_func *func, unsigned blksz);
124
Nicolas Pitred1496c32007-06-30 16:29:41 +0200125extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler);
126extern int sdio_release_irq(struct sdio_func *func);
127
Pierre Ossmanad3868b2008-06-28 12:52:45 +0200128extern unsigned int sdio_align_size(struct sdio_func *func, unsigned int sz);
129
Tomas Winkler6d373332008-06-30 10:50:24 +0300130extern u8 sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret);
131extern u16 sdio_readw(struct sdio_func *func, unsigned int addr, int *err_ret);
132extern u32 sdio_readl(struct sdio_func *func, unsigned int addr, int *err_ret);
Pierre Ossman112c9db2007-07-06 13:35:01 +0200133
134extern int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
135 unsigned int addr, int count);
136extern int sdio_readsb(struct sdio_func *func, void *dst,
137 unsigned int addr, int count);
Pierre Ossman46f555f2007-05-27 12:57:15 +0200138
Tomas Winkler6d373332008-06-30 10:50:24 +0300139extern void sdio_writeb(struct sdio_func *func, u8 b,
Pierre Ossman46f555f2007-05-27 12:57:15 +0200140 unsigned int addr, int *err_ret);
Tomas Winkler6d373332008-06-30 10:50:24 +0300141extern void sdio_writew(struct sdio_func *func, u16 b,
Pierre Ossman112c9db2007-07-06 13:35:01 +0200142 unsigned int addr, int *err_ret);
Tomas Winkler6d373332008-06-30 10:50:24 +0300143extern void sdio_writel(struct sdio_func *func, u32 b,
Pierre Ossman112c9db2007-07-06 13:35:01 +0200144 unsigned int addr, int *err_ret);
145
146extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
147 void *src, int count);
148extern int sdio_writesb(struct sdio_func *func, unsigned int addr,
149 void *src, int count);
Pierre Ossman46f555f2007-05-27 12:57:15 +0200150
David Vrabel7806cdb2007-08-10 13:29:46 +0100151extern unsigned char sdio_f0_readb(struct sdio_func *func,
152 unsigned int addr, int *err_ret);
153extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b,
154 unsigned int addr, int *err_ret);
155
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200156#endif
157